create-scopeblind-agent
v0.2.0
Published
Scaffold a governed AI agent with protect-mcp policies, Ed25519 signing, and verification in 30 seconds
Downloads
39
Maintainers
Readme
create-scopeblind-agent
Scaffold a governed AI agent in 30 seconds.
Usage
npx create-scopeblind-agent my-agentFollow the prompts to choose TypeScript or Python, and you get a ready-to-run project with:
- protect-mcp policies controlling which tools the agent can call
- Ed25519 signing for cryptographic receipts on every tool call
- Verification to prove the agent followed its policy
What you get
my-agent/
src/agent.ts # Agent entry point (or agent.py for Python)
src/tools.ts # Example tools: read_file, write_file, search_web
policy.json # Per-tool rules: allow, block, require_approval
scopeblind.config.json
.env.example
README.mdQuick start after scaffolding
cd my-agent
npm install # or: pip install -e .
cp .env.example .env
npm start # runs agent through protect-mcp
npm run verify # checks all receipt signatures
npm run trace # bundles receipts for DAG visualizationYour agent comes pre-configured with protect-mcp policies, Ed25519 signing, and verification.
License
MIT
