Skip to content

Supported Hosts

Plugin

The plugin targets AI coding agents that implement both Agent Skills and MCP as open standards. Skills, built-in agents, and MCP tools are shared across hosts. Only hooks and plugin manifests are host-specific.

HostStatusInstallHooks API
Claude CodeProductionPlugin marketplaceSessionStart, PreToolUse, PostToolUse
CursorImplementedPlugin marketplace / local dirsessionStart, preToolUse, postToolUse, afterMCPExecution
GitHub CopilotPlanned
Codex CLIPlanned

Production means the plugin is deployed and used day-to-day; bug fixes and new skills ship through the marketplace.

Implemented means every skill and agent works, and all documented hooks fire, but some host-level edge cases still surface occasionally.

The plugin keeps skills, agents, and MCP tools identical across hosts. The differences are at the edges:

AspectClaude CodeCursor
Manifest file.claude-plugin/plugin.json (minimal).cursor-plugin/plugin.json (explicit)
Field pointersConvention-basedExplicit skills, agents, hooks
AspectClaude CodeCursor
Hook filehooks/hooks.jsonhooks/cursor.hooks.json
Trigger namesSessionStart, PreToolUse, PostToolUsesessionStart, preToolUse, postToolUse, afterMCPExecution
Write matcher`WriteEdit`
Output protocolExit codes + structured JSONJSON wrapper objects

Both hook files live in the same plugin package and are selected automatically by the host.

Cursor exposes an extra afterMCPExecution trigger that fires after MCP tool calls succeed. The plugin uses it to run archcore validate and the cascade staleness check in a single hook. On Claude Code, the same work happens via PostToolUse with two matchers.

Use Claude Code if:

  • You want the most mature path — it has the deepest testing coverage.
  • You’re already invested in the Claude Code CLI workflow.

Use Cursor if:

  • You prefer a full editor over a terminal-first agent.
  • You want afterMCPExecution semantics (single post-MCP hook).

Both are first-class. Skills, tracks, agents, and guardrails behave identically.

The plugin is not available on GitHub Copilot or Codex CLI yet. Those hosts currently work with the CLI path only — you get MCP access and agent integrations, but no plugin skills or tracks.

Track planned host support in the plugin’s repository.