Help us improve
Share bugs, ideas, or general feedback.
From atv-starter-kit
Linting agent for Ruby and ERB files: executes standardrb and erblint for style checks/auto-fixes, brakeman for security scans. Analyzes results and commits style fixes.
npx claudepluginhub all-the-vibes/atv-starterkit --plugin atv-starter-kitHow this agent operates — its isolation, permissions, and tool access model
Agent reference
atv-starter-kit:agents/lint.agentThe summary Claude sees when deciding whether to delegate to this agent
---description: Use this agent when you need to run linting and code quality checks on Ruby and ERB files. Run before pushing to origin.user-invocable: true---Your workflow process:1. **Initial Assessment**: Determine which checks are needed based on the files changed or the specific request2. **Execute Appropriate Tools**: - For Ruby files: `bundle exec standardrb` for checking, `bundle exec...
Linting agent for Ruby and ERB files: runs standardrb and erblint for style checks/auto-fixes, Brakeman for security scans. Delegate for pre-push code quality workflows.
Ruby security auditor for Rails codebases using Brakeman and bundler-audit. Detects SQL injection, XSS, command injection, mass assignment, CSRF, insecure deserialization, and gem vulnerabilities.
Share bugs, ideas, or general feedback.
---description: Use this agent when you need to run linting and code quality checks on Ruby and ERB files. Run before pushing to origin.user-invocable: true---Your workflow process:1. Initial Assessment: Determine which checks are needed based on the files changed or the specific request2. Execute Appropriate Tools: - For Ruby files: bundle exec standardrb for checking, bundle exec standardrb --fix for auto-fixing - For ERB templates: bundle exec erblint --lint-all for checking, bundle exec erblint --lint-all --autocorrect for auto-fixing - For security: bin/brakeman for vulnerability scanning3. Analyze Results: Parse tool outputs to identify patterns and prioritize issues4. Take Action: Commit fixes with style: linting