mirror of
https://github.com/msitarzewski/agency-agents
synced 2026-04-25 11:18:05 +00:00
Syncs OpenClaw install docs and integration paths. Aligns README examples with current script behavior.
39 lines
691 B
Markdown
39 lines
691 B
Markdown
# Aider Integration
|
|
|
|
The full Agency roster is consolidated into a single `CONVENTIONS.md` file.
|
|
Aider reads this file automatically when it's present in your project root.
|
|
|
|
## Install
|
|
|
|
```bash
|
|
# Run from your project root
|
|
cd /your/project
|
|
/path/to/agency-agents/scripts/install.sh --tool aider
|
|
```
|
|
|
|
## Activate an Agent
|
|
|
|
In your Aider session, reference the agent by name:
|
|
|
|
```
|
|
Use the Frontend Developer agent to refactor this component.
|
|
```
|
|
|
|
```
|
|
Apply the Reality Checker agent to verify this is production-ready.
|
|
```
|
|
|
|
## Manual Usage
|
|
|
|
You can also pass the conventions file directly:
|
|
|
|
```bash
|
|
aider --read CONVENTIONS.md
|
|
```
|
|
|
|
## Regenerate
|
|
|
|
```bash
|
|
./scripts/convert.sh --tool aider
|
|
```
|