Agent skill
Aider
Tool: AI pair programming in terminal (`pip install aider-chat`)
Install this agent skill to your Project
npx add-skill https://github.com/hivellm/rulebook/tree/main/templates/skills/cli/aider
SKILL.md
Aider CLI Rules
Tool: AI pair programming in terminal (pip install aider-chat)
Quick Start
# Always include AGENTS.md
aider AGENTS.md src/feature.ts tests/feature.test.ts
# In chat:
"Follow AGENTS.md standards. Implement [feature] with tests first."
Essential Commands
/add file.ts # Add files to context
/drop file.ts # Remove from context
/run npm test # Run command
/commit "message" # Commit changes
/undo # Undo last change
/diff # Review changes
Configuration (.aider.conf.yml)
model: gpt-4
read: [AGENTS.md]
lint: true
lint-cmd: "npm run lint"
test-cmd: "npm test"
auto-commits: true
commit-prompt: true
Workflow
- Start session with
aider AGENTS.md [files] - Request: "Follow AGENTS.md. Implement [feature] with tests first (95%+ coverage)"
- Review diffs with
/diff - Test with
/run npm test - Commit with
/commit "feat: description"
Critical: Always reference AGENTS.md in your requests for consistent standards.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
DAG Workflow
Maintain a clean dependency graph (DAG) to prevent circular dependencies and ensure maintainable architecture.
Documentation Rules
All documentation in English. Root README concise, detailed docs in `/docs`.
Quality Enforcement
These rules are NON-NEGOTIABLE and MUST be followed without exception.
Rulebook Task Management
Spec-driven task management for features and breaking changes with OpenSpec-compatible format
Agent Automation
Mandatory workflow that AI agents MUST execute after EVERY implementation.
C
Execute these commands after EVERY implementation (see AGENT_AUTOMATION module for full workflow).
Didn't find tool you were looking for?