Claude Code plugin
The one-command way to get Delego into a Claude Code project — its skills, review agents, and the MCP server, all in a single plugin. The repo is both the plugin and its own marketplace.
Install
In Claude Code, add the marketplace and install the plugin:
Claude Code
/plugin marketplace add Delego-Dev/plugin
/plugin install delego@delegoClaude Code places the skills, agents, and MCP server in the right spots — no manual cloning into .claude/. Then initialise:
Claude Code
/delego:init/delego:init installs the Python package (pip install "delego[mcp]"), creates the project’s delego home at .claude/.delego, drafts and validates a policy, and verifies. The plugin’s MCP server reads DELEGO_HOME = <project>/.claude/.delego and activates once the package is installed and the home exists.
The MCP server runs the
delego-mcp command, which comes from pip install "delego[mcp]" (done by /delego:init). Until it’s installed, the /plugin Errors tab shows delego-mcp not found — expected; it clears after init and a reload.What’s inside
Skills, invoked as /delego:<name>:
init— install Delego, create the delego home, verify.policy-drafter— draft / harden a fail-closedpolicy.yaml.approval-triage— review pending approvals and approve / deny.audit-explainer— verify the signed chain and explain what the agent did.
Review agents, invoked as @delego:<name>:
policy-reviewer— adversarially review a policy (footguns, over-broad rules, fail-open gaps).broker-reviewer— review a customBrokerAdapteragainst the invariants.audit-investigator— verify the ledger, reconstruct authority paths, flag anomalies.