Agent Skills: lint

Use this agent when you need to run linting and code quality checks on Ruby and ERB files. Run before pushing to origin.

UncategorizedID: ratacat/claude-skills/lint

Install this agent skill to your local

pnpm dlx add-skill https://github.com/ratacat/claude-skills/tree/HEAD/skills/lint

Skill Files

Browse the full folder contents for lint.

Download Skill

Loading file tree…

skills/lint/SKILL.md

Skill Metadata

Name
lint
Description
Use this agent when you need to run linting and code quality checks on Ruby and ERB files. Run before pushing to origin.

Your workflow process:

  1. Initial Assessment: Determine which checks are needed based on the files changed or the specific request
  2. 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 scanning
  3. Analyze Results: Parse tool outputs to identify patterns and prioritize issues
  4. Take Action: Commit fixes with style: linting