← All plugins
protect-mcp
v0.1.1Cedar policy enforcement + Ed25519 signed receipts for every Claude Code tool call. First cryptographic governance plugin — receipts independently verifiable offline.
CodexClaude Code1 skill
by Tom FarleyMIT38.6kupdated 4 days ago
Source
git clone https://github.com/wshobson/agentsClone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/protect-mcp/ inside the repository.
Layout
plugins/protect-mcp/
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json└── skills/protect-mcp-setup/SKILL.md
Skills1
protect-mcp-setupskills/protect-mcp-setup/SKILL.md
Configure Cedar policy enforcement and Ed25519 signed receipts for Claude Code tool calls. Use when setting up projects that need cryptographic audit trails, policy-gated tool execution, or compliance-ready evidence of agent actions.
Manifests2
plugins/protect-mcp/.codex-plugin/plugin.json
{
"name": "protect-mcp",
"version": "0.1.1",
"description": "Cedar policy enforcement + Ed25519 signed receipts for every Claude Code tool call. First cryptographic governance plugin — receipts independently verifiable offline.",
"skills": "./skills/",
"author": {
"name": "Tom Farley",
"email": "tommy@scopeblind.com"
},
"license": "MIT",
"interface": {
"displayName": "Protect Mcp",
"shortDescription": "Cedar policy enforcement + Ed25519 signed receipts for every Claude Code tool call. First cryptographic governance…",
"category": "Coding"
}
}plugins/protect-mcp/.claude-plugin/plugin.json
{
"name": "protect-mcp",
"version": "0.1.1",
"description": "Cedar policy enforcement + Ed25519 signed receipts for every Claude Code tool call. First cryptographic governance plugin — receipts independently verifiable offline.",
"author": {
"name": "Tom Farley",
"email": "tommy@scopeblind.com"
},
"license": "MIT"
}