aicrew-agent-kit (Codex)
Use when: you want a single source of truth for Cursor .mdc rules shared across multiple repos via symlinks.
Equivalent actions
| Method | Command |
|---|---|
| CLI | aicrew agent-kit init [path] |
| Codex skill | aicrew-agent-kit (this skill) |
| Claude Code slash | /agent-kit |
Default output
Caveman/lean style. See ~/Agents/agents/caveman.md.
What it does
Scaffolds a standalone agent-kit/ directory (default: ./agent-kit) containing:
- A central
cursor-rules/folder with.mdcrule files - A
setup.shthat symlinks these rules into each repo's.cursor/rules/ - A
README.mdwith usage instructions
Once set up, run setup.sh from any repo to get the latest rules without copying files.
Steps (when running in Codex)
- Decide the target path (e.g.,
~/agent-kitfor cross-repo sharing or./agent-kitfor project-local) - Run:
npx aicrew agent-kit init ~/agent-kit - Edit
~/agent-kit/cursor-rules/with your.mdcrules - In each repo:
bash ~/agent-kit/setup.sh
After scaffold
# Symlink rules into a repo
cd /path/to/your/repo
bash ~/agent-kit/setup.sh
Your .cursor/rules/ will contain symlinks to ~/agent-kit/cursor-rules/*.mdc.
Edit once in ~/agent-kit/, all repos pick it up instantly.