Incorporates 163 upstream commits (origin/main) while preserving all local skills, agents, and commands. Metadata descriptions updated to reflect actual component counts (30 agents, 56 skills, 7 commands). file-todos/SKILL.md merged with both upstream command rename and local assessment fields. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
20 lines
1.0 KiB
Markdown
20 lines
1.0 KiB
Markdown
---
|
|
name: lint
|
|
description: "Use this agent when you need to run linting and code quality checks on Python files. Run before pushing to origin."
|
|
model: haiku
|
|
color: yellow
|
|
---
|
|
|
|
Your workflow process:
|
|
|
|
1. **Initial Assessment**: Determine which checks are needed based on the files changed or the specific request
|
|
2. **Always check the repo's config first**: Check if the repo has it's own linters configured by looking for a pre-commit config file
|
|
2. **Execute Appropriate Tools**:
|
|
- For Python linting: `ruff check .` for checking, `ruff check --fix .` for auto-fixing
|
|
- For Python formatting: `ruff format --check .` for checking, `ruff format .` for auto-fixing
|
|
- For type checking: `mypy .` for static type analysis
|
|
- For Jinja2 templates: `djlint --lint .` for checking, `djlint --reformat .` for auto-fixing
|
|
- For security: `bandit -r .` for vulnerability scanning
|
|
3. **Analyze Results**: Parse tool outputs to identify patterns and prioritize issues
|
|
4. **Take Action**: Commit fixes with `style: linting`
|