aider-coder
- Repo stars 0
- Author updated Live
- Author repo skills-registry
- Domain
- Engineering
- Compatible agents
-
- Claude Code
- Cursor
- Cline
- Codex
- Windsurf
- Gemini CLI
- +20
- Trust score
- 88 / 100 · community maintained
- Author / version / license
- @tomevault-io · no license declared
- Token usage
- Lean
- Setup complexity
- Guided setup
- External API key
- Required · OpenAI / Anthropic
- Operating systems
- macOS · Linux · Windows
- Runtime requirements
- No special requirements
- Permissions
-
- Read-only
- Write / modify
- Env read
- Network behavior
- External requests
- Install commands
- 26 variants
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
---
name: aider-coder
description: Terminal pair programming with Aider, the AI pair programmer that edits Use when this capability…
category: engineering
runtime: no special runtime
---
# aider-coder output preview
## PART A: Task fit
- Use case: Terminal pair programming with Aider, the AI pair programmer that edits Use when this capability is needed. python3 aider_coder.py init [--dir /path/to/project] Detects or creates a git repo, generates .aider.conf.yml with sensible defaults, and shows project status. requires OpenAI / Anthropic API key. Works with Claude Code, Cursor, Cline and 23 more..
- Inputs: target material, constraints, expected output, and acceptance criteria.
- Evidence boundary: follow “Commands / Initialize a project / Run a coding task” and do not present inference as author intent.
## PART B: Execution result
- **01** The card summarizes the use case; runtime output centers on “Terminal pair programming with Aider, the AI pair programmer that edits Use when this capability is needed. python3 aider_coder.py init [--dir /path/to/project] Detects or creates a git repo, generates .aider.conf.yml with sensible defaults, and shows project status. requires OpenAI / Anthropic API key. Works with Claude Code, Cursor, Cline and 23 more.”.
- **02** When the source has headings, the agent prioritizes “Commands / Initialize a project / Run a coding task” so the result follows the author’s structure.
- **03** Typical output includes task judgment, concrete steps, required commands or file edits, validation, and follow-up options.
- **04** Risk context follows the fingerprint: read files, write/modify files, read environment variables; may access external network resources; requires OpenAI / Anthropic API keys.
## Running Rules
- read files, write/modify files, read environment variables; may access external network resources; requires OpenAI / Anthropic API keys.
- Validate with a small sample before expanding scope.
- Return the result, validation criteria, and next iteration options. The source mentions slash commands such as `/path`; use them first when your agent supports command triggers.
Name target files or source material, expected output, forbidden changes, and whether network or shell access is allowed. Permission fingerprint: read files, write/modify files, read environment variables.
Start with a small task and check whether the result follows “Commands / Initialize a project / Run a coding task”. Inspect diffs, logs, previews, or tests before expanding scope.
Confirm the final output includes a concrete result, evidence, and next action. If it stays generic, tighten inputs, boundaries, and acceptance criteria.
---
name: aider-coder
description: Terminal pair programming with Aider, the AI pair programmer that edits Use when this capability…
category: engineering
source: tomevault-io/skills-registry
---
# aider-coder
## When to use
- Terminal pair programming with Aider, the AI pair programmer that edits Use when this capability is needed. python3 ai…
- Use it when the task has clear inputs, repeatable steps, and validation criteria.
## What to provide
- Target material, scope, expected result, and forbidden changes.
- Whether network, commands, file writes, or external services are allowed.
## Execution rules
- Organize steps around “Commands / Initialize a project / Run a coding task” and keep inference separate from source facts.
- read files, write/modify files, read environment variables; may access external network resources; requires OpenAI / Anthropic API keys.
- Validate with a small sample before expanding the task.
## Output requirements
- Return the deliverable, key evidence, validation method, and next action.
- Mark missing information as unknown; do not invent commands, platforms, or dependencies. The author source anchors workflow facts; repository files anchor sources and commands; Fluxly only adds fit, limitations, and quality judgment.
skill "aider-coder" {
input -> user goal + target files + boundaries + acceptance criteria
context -> Commands / Initialize a project / Run a coding task
rules -> SKILL.md triggers / order / output contract
runtime -> no special runtime | read files, write/modify files, read environment variables | may access external network resources
guardrails -> requires OpenAI / Anthropic API keys + small-sample validation + diff/log review
output -> copyable result + checklist + next iteration
} Aider Coder
Terminal pair programming with Aider — an AI pair programmer that directly edits files in your local git repository.
Commands
Initialize a project
python3 aider_coder.py init [--dir /path/to/project]
Detects or creates a git repo, generates .aider.conf.yml with sensible defaults, and shows project status.
Run a coding task
python3 aider_coder.py code "Add error handling to the login function" --files src/auth.py src/utils.py
python3 aider_coder.py code "Refactor the database layer to use connection pooling" --files db/*.py
python3 aider_coder.py code "Fix the bug where null values crash the parser" --all
Runs aider with your natural language request against specified files. Use --files for specific files or --all to let aider auto-detect relevant files.
Show diffs
python3 aider_coder.py diff
python3 aider_coder.py diff --staged
python3 aider_coder.py diff --file src/auth.py
Shows git diff of changes made by aider (or any changes in the working tree).
Undo last aider commit
python3 aider_coder.py undo
Reverts the last commit made by aider (aider commits each change set). Useful when a change introduces regressions.
List / switch models
python3 aider_coder.py models
python3 aider_coder.py models --set gpt-4o
python3 aider_coder.py models --set claude-sonnet-4-20250514
Lists available models or switches the default model in .aider.conf.yml.
Run tests
python3 aider_coder.py test
python3 aider_coder.py test --cmd "pytest tests/ -x"
python3 aider_coder.py test --cmd "npm test"
Runs the project test suite. Auto-detects test runner (pytest, npm test, go test, cargo test, etc.) or uses a custom command.
Run linting
python3 aider_coder.py lint
python3 aider_coder.py lint --files src/auth.py
python3 aider_coder.py lint --fix
Runs linting on changed files. Auto-detects linter (ruff, flake8, eslint, golangci-lint, etc.) or uses project config.
Workflow
Quick coding session
- Navigate to your project:
cd /path/to/project - Init:
python3 aider_coder.py init - Code:
python3 aider_coder.py code "implement feature X" --files relevant.py - Review:
python3 aider_coder.py diff - Test:
python3 aider_coder.py test - If broken:
python3 aider_coder.py undo
Model configuration
Aider supports many models. Set your API keys as environment variables:
ANTHROPIC_API_KEYfor Claude modelsOPENAI_API_KEYfor GPT modelsOPENROUTER_API_KEYfor OpenRouter models
Notes
- Aider makes real file edits and git commits — always review diffs before pushing
- Aider respects
.gitignoreand won't edit ignored files by default - Use
--no-auto-commitsflag to stage changes without committing - The
.aider.conf.ymlfile persists your model and settings preferences
Source: Danielhogben/hermes-skills — distributed by TomeVault.
Decide Fit First
Design Intent
How To Use It
Boundaries And Review