This repository includes local agent guidance in .agents/skills/.
- Root guide:
AGENTS.md - Skills directory:
.agents/skills/ - Skill directories:
.agents/skills/test-driven-development/SKILL.md.agents/skills/incremental-implementation/SKILL.md.agents/skills/code-review-and-quality/SKILL.md.agents/skills/ci-cd-and-automation/SKILL.md.agents/skills/debugging-and-error-recovery/SKILL.md.agents/skills/learning-opportunities/SKILL.md
- Load relevant skill(s) before making edits.
- Prefer small changes with frequent validation.
- Keep work aligned with this project's
pyproject.toml, CI workflows, and pre-commit hooks.
- Apply
test-driven-developmentwhen behavior changes. - Apply
incremental-implementationfor multi-file or higher-risk changes. - Apply
code-review-and-qualityas the final quality gate before completion. - Apply
ci-cd-and-automationwhen changing checks, tasks, or pipelines. - Apply
debugging-and-error-recoverywhen tests, CI, or runtime behavior fails unexpectedly. - Optionally apply
learning-opportunitiesfor 10-15 minute learning exercises after design-heavy work.
- Run tests:
uv run --frozen pytest - Run lint/format hooks:
pre-commit run --all-files - Run type checks via pre-commit hook:
pre-commit run ty --all-files - Run full local pipeline:
uv run --frozen poe pipeline
- These instructions are project-local.
- If team standards evolve, update these files in-place.