Install the Plugin
The plugin runs inside your coding agent (Claude Code or Cursor). It reuses the MCP server provided by the Archcore CLI, so you install the CLI first, then the plugin on top.
Prerequisite: install the CLI
Section titled “Prerequisite: install the CLI”The plugin depends on archcore mcp being on your PATH. If you don’t have the CLI yet, see the CLI install guide.
Quick check:
archcore --versionIf this prints a version, you’re good.
Install the plugin
Section titled “Install the plugin”From your shell:
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-pluginCursor support is implemented but has a slightly different hooks API — see Supported Hosts.
Clone the plugin repo and point your host at it directly:
git clone https://github.com/archcore-ai/archcore-pluginclaude --plugin-dir ./archcore-plugin # Claude Codecursor --plugin-dir ./archcore-plugin # CursorLocal mode is useful when hacking on skills or hooks.
Initialize your project
Section titled “Initialize your project”The plugin expects .archcore/ to exist. If you haven’t run archcore init yet:
cd your-projectarchcore initVerify
Section titled “Verify”-
Restart your coding agent so the session-start hook can run.
-
In a fresh conversation, run:
/archcore:helpYou should see a list of available skills and intent commands.
-
Try an intent command on a real decision:
/archcore:adr choose PostgreSQL as primary databaseThe agent should create a draft ADR in
.archcore/via MCP — not via direct file writes.
If /archcore:* commands don’t appear, check Troubleshooting.
Uninstall
Section titled “Uninstall”Claude Code:
/plugin uninstall archcore@archcore-pluginsCursor: remove Archcore from plugin settings.
Next steps
Section titled “Next steps”- Supported hosts — confirm your host supports the features you need.
- Intent commands — the 8 commands you’ll use most.
- Tracks — multi-step workflows for product, architecture, standards.