Claude Code skill for the ScopeBlind trust stack — agent identity, MCP security, signed receipts, and offline verification.
claude plugin marketplace add tomjwxf/scopeblind-protect-skill
claude plugin install scopeblindOr manually copy SKILL.md into your project directory.
Teaches Claude Code to use the full ScopeBlind stack:
- @scopeblind/passport — create portable agent identity (Ed25519 keypairs, signed manifests, portable bundles)
- protect-mcp — wrap MCP servers with per-tool policies and signed receipts
- @veritasacta/verify — verify any receipt offline (MIT, no accounts)
- @scopeblind/red-team — benchmark policies against attack patterns
# Create an agent identity
npx @scopeblind/passport create --name "Luna" --runtime openclaw --policy shadow
# Wrap an MCP server (shadow mode — logs everything, blocks nothing)
npx protect-mcp -- node server.js
# Test a stricter policy
npx protect-mcp simulate --policy strict.json
# Verify receipts offline
npx @veritasacta/verify --self-testMIT