Skip to content

Plugin Quick Start

Plugin

Get the full Archcore experience inside Claude Code or Cursor. Skills, tracks, built-in agents, and guardrails — all on top of your repo.

The plugin reuses the MCP server provided by the CLI. Install it first:

Terminal window
curl -fsSL https://archcore.ai/install.sh | bash

Verify:

Terminal window
archcore --version

See the full CLI install guide if you hit any issues.

Terminal window
cd your-project
archcore init

This creates .archcore/ and wires MCP configs and session hooks for every agent it detects.

Terminal window
claude plugin marketplace add archcore-ai/archcore-plugin
claude plugin install archcore@archcore-plugins

Or from within Claude Code:

/plugin marketplace add archcore-ai/archcore-plugin
/plugin install archcore@archcore-plugins

Restart your host so the session-start hook can run.

Open a fresh conversation and run:

/archcore:help

You should see a list of available skills grouped by family (intent commands, document types, tracks). If not, see plugin troubleshooting.

Use the intent command to record a real decision:

/archcore:decide use PostgreSQL as our primary database

The plugin routes to the adr skill, creates a draft ADR through MCP, and offers a rule + guide follow-up. Accept it:

/archcore:standard migration format

This triggers the standard-track: adrruleguide, with relations wired automatically.

Check the result:

Terminal window
ls .archcore/
archcore status

You should see three linked documents, all validated.

For something bigger:

/archcore:architecture-track event-driven orders

The 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.

  • Skills — 32 slash commands covering 18 document types, 8 intent commands, and 6 tracks.
  • Built-in agentsarchcore-assistant for multi-document flows, archcore-auditor for reviews.
  • Guardrails — direct .archcore/*.md writes are blocked; every mutation is validated; cascade staleness is flagged.