Skip to content

Install the Plugin

Plugin

The plugin runs inside your coding agent (Claude Code, Cursor, or Codex CLI). It invokes archcore from your PATH — so install the CLI first (see the CLI install guide: one curl line on macOS/Linux, one PowerShell line on Windows), then install the plugin.

For Cursor, you additionally register MCP yourself — see the Cursor tab below.

From your shell:

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

Or, from within Claude Code:

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

Open your project and run /archcore:help — the plugin spawns archcore mcp from your PATH, and initializes .archcore/ on the first MCP call if missing.

If archcore isn’t on PATH, the session-start hook prints install instructions and links to the CLI install guide.

The plugin always runs whichever archcore is on your shell’s PATH. For offline or air-gapped environments, install the CLI via any supported method (curl, PowerShell, build from source) — see the CLI install guide — and ensure it’s on PATH before launching your coding agent.

To pin a specific binary, install it to a directory you control and put that directory first on PATH.

VariableEffect
ARCHCORE_DISABLE_INJECTION=1 turns off the pre-edit context injection hook globally.
  1. Restart your coding agent so the session-start hook can run.

  2. In a fresh conversation, run:

    /archcore:help

    You should see a list of available skills and intent commands.

  3. Try an intent command on a real decision:

    /archcore:decide use PostgreSQL as the primary database

    The agent picks the right document type (an ADR), creates a draft in .archcore/ via MCP — not via direct file writes — and offers a rule + guide follow-up.

If /archcore:* commands don’t appear, check Troubleshooting.

Claude Code:

Terminal window
/plugin uninstall archcore@archcore-plugins

Cursor: remove Archcore from plugin settings, and remove the archcore entry from your Cursor MCP config.

Codex CLI:

Terminal window
codex plugin uninstall archcore

The archcore CLI is a separate install — uninstall via the same script that installed it, if desired.