Docs / Integrations
Agent Integrations
architect init writes skill files into the correct directory for your coding agent. After installation, open your agent and run /architect-plan to get started.
Detect the agent automatically:
architect init .
# Checks for .claude/, .cursor/, .windsurf/ directories
Or specify explicitly:
architect init . --integration claude
architect init . --integration cursor
architect init . --integration windsurf
architect init . --integration copilot
Claude Code
Files written:
.claude/
└── skills/
├── architect-plan/
│ └── SKILL.md
├── architect-refactor/
│ └── SKILL.md
└── architect-catchup/
└── SKILL.md
How to use:
- Run
architect init . --integration claudein your project directory - Open Claude Code in that directory
- Type
/architect-plan— the agent reads the skill and generates.architect/plan.md - Type
/architect-refactor— the agent executes the plan phase by phase, verifying each phase - Type
/architect-catchup— re-scans and refreshes skills after writing new code
Claude Code discovers skills in .claude/skills/<name>/SKILL.md automatically. No additional configuration needed.
Cursor
Files written:
.cursor/
└── rules/
└── architect.mdc
How to use:
- Run
architect init . --integration cursor - Open Cursor in the project directory
- In the chat panel, type
/architect-plan - Type
/architect-refactorafter reviewing the plan - Type
/architect-catchupafter writing new code to refresh skills
All three skills are bundled into a single .mdc file in Cursor's rules format.
Windsurf
Files written:
.windsurf/
└── rules/
└── architect.md
How to use:
- Run
architect init . --integration windsurf - Open Windsurf (Cascade) in the project directory
- In the Cascade panel, type
/architect-plan - Type
/architect-refactorafter reviewing the plan - Type
/architect-catchupafter writing new code to refresh skills
All three skills are bundled into a single markdown file in Windsurf's rules format.
GitHub Copilot
Files written:
.github/
└── copilot-instructions.md (Architect section appended)
How to use:
- Run
architect init . --integration copilot - Open VS Code with GitHub Copilot Chat enabled
- In the chat panel, type
/architect-plan - Type
/architect-refactorafter reviewing the plan - Type
/architect-catchupafter writing new code to refresh skills
If .github/copilot-instructions.md already exists, Architect appends the skill section rather than overwriting it. Use --update to replace the existing section.
Generic Fallback
If no agent is detected and no --integration flag is passed, Architect writes to a generic location:
.architect/
└── skills/
├── architect-plan/
│ └── SKILL.md
├── architect-refactor/
│ └── SKILL.md
└── architect-catchup/
└── SKILL.md
Copy the contents of these files into your agent's context or rules directory manually.