Agent Skills: verify

Run code quality checks (ruff, black, mypy, pytest)

UncategorizedID: c-daly/agent-swarm/verify

Install this agent skill to your local

pnpm dlx add-skill https://github.com/c-daly/agent-swarm/tree/HEAD/skills/verify

Skill Files

Browse the full folder contents for verify.

Download Skill

Loading file tree…

skills/verify/SKILL.md

Skill Metadata

Name
verify
Description
Run code quality checks (ruff, black, mypy, pytest)

Usage

/verify              # Run all checks
/verify --fix        # Auto-fix where possible
/verify lint|format|types|tests   # Run specific check

Tools

| Tool | Purpose | Auto-fix | |------|---------|----------| | ruff | Lint + imports | Yes (--fix) | | black | Formatting | Yes | | mypy | Type checking | No | | pytest | Tests | No |

CLI

python3 ~/.claude/plugins/agent-swarm/scripts/verify.py [args]

Output: [VERIFY] tests: X | types: X | lint: X | format: X Verify flag resets on any file edit. Run before committing.