Integrations
Integrations are optional rules that help AIOS cooperate with external tools. They are rules-first: AIOS can add local guidance without installing external software.
The current integration targets are RTK, Caveman, and Ponytail.
What Integrations Are For
Section titled “What Integrations Are For”Use integrations when a project needs consistent local instructions for an external workflow tool:
- RTK for noisy command output and summarized operational traces.
- Caveman-style brevity for short operational updates.
- Ponytail for minimal-correct-code implementation choices.
These integrations do not replace formal project documents. Do not use brevity rules or minimal-code guidance to weaken PRDs, ADRs, architecture docs, security reviews, migration plans, release artifacts, acceptance criteria, validation, security, accessibility, or needed tests.
List Supported Integrations
Section titled “List Supported Integrations”aios integration listCheck Integration Status
Section titled “Check Integration Status”aios integration statusThis prints project config, local rule state, and detected external tool state.
Add Local Integration Rules
Section titled “Add Local Integration Rules”Add RTK rules without installing the external tool:
aios integration add rtk . --dry-runaios integration add rtk .Add Ponytail rules without installing the external skill/plugin:
aios integration add ponytail . --dry-runaios integration add ponytail . --mode fullAdd all supported rules:
aios integration add all .External install actions require explicit confirmation:
aios integration add rtk . --install --yesaios integration add ponytail . --install --agents codex --yesRemove Or Repair Rules
Section titled “Remove Or Repair Rules”Remove local rules:
aios integration remove rtk . --scope projectaios integration remove ponytail . --scope projectRepair missing local rules for enabled integrations:
aios integration repairRun a broader diagnostic:
aios integration doctorSafety Boundaries
Section titled “Safety Boundaries”- Integrations are optional.
- They should not store secrets.
- They should not silently install external tools.
- They should not change application behavior.
- They should not weaken AIOS documentation and review requirements.
Use integrations only when they make the local agent workflow clearer.
Related Pages
Section titled “Related Pages”- Integrations Folder - Catalog of integration rule files
- Command Guide - Choose the right command for your situation
- CLI Reference - Full
aios integrationcommand syntax