Plugin Quick Start
Get the full Archcore experience inside Claude Code or Cursor. Skills, tracks, built-in agents, and guardrails — all on top of your repo.
1. Install the CLI
Section titled “1. Install the CLI”The plugin reuses the MCP server provided by the CLI. Install it first:
curl -fsSL https://archcore.ai/install.sh | bashirm https://archcore.ai/install.ps1 | iexVerify:
archcore --versionSee the full CLI install guide if you hit any issues.
2. Initialize your project
Section titled “2. Initialize your project”cd your-projectarchcore initThis creates .archcore/ and wires MCP configs and session hooks for every agent it detects.
3. Install the plugin
Section titled “3. Install the plugin”claude plugin marketplace add archcore-ai/archcore-pluginclaude plugin install archcore@archcore-pluginsOr from within Claude Code:
/plugin marketplace add archcore-ai/archcore-plugin/plugin install archcore@archcore-pluginsInstall from the Cursor plugin marketplace, or locally:
cursor --plugin-dir ./archcore-pluginRestart your host so the session-start hook can run.
4. Verify
Section titled “4. Verify”Open a fresh conversation and run:
/archcore:helpYou should see a list of available skills grouped by family (intent commands, document types, tracks). If not, see plugin troubleshooting.
5. Create your first decision
Section titled “5. Create your first decision”Use the intent command to record a real decision:
/archcore:decide use PostgreSQL as our primary databaseThe plugin routes to the adr skill, creates a draft ADR through MCP, and offers a rule + guide follow-up. Accept it:
/archcore:standard migration formatThis triggers the standard-track: adr → rule → guide, with relations wired automatically.
Check the result:
ls .archcore/archcore statusYou should see three linked documents, all validated.
6. Try a multi-step track
Section titled “6. Try a multi-step track”For something bigger:
/archcore:architecture-track event-driven ordersThe plugin walks you through an ADR, a spec, and a plan — one document per step, with the right relations between them. You review each step before the next.
What you get
Section titled “What you get”- Skills — 32 slash commands covering 18 document types, 8 intent commands, and 6 tracks.
- Built-in agents —
archcore-assistantfor multi-document flows,archcore-auditorfor reviews. - Guardrails — direct
.archcore/*.mdwrites are blocked; every mutation is validated; cascade staleness is flagged.
Next steps
Section titled “Next steps”- Plugin overview — what ships in the box.
- Intent commands — the 8 routing commands.
- Tracks — the 6 multi-step workflows.
- Document types — the vocabulary you’re using.