Quick Start
Get Started
Section titled “Get Started”Install the CLI and create your first agent identity:
# Install the CLIcargo install idprova-cli
# Generate an Ed25519 keypairidprova keygen --output operator.key
# Create an Agent Identity Documentidprova aid create \ --id "did:aid:example.com:my-agent" \ --name "My Agent" \ --controller "did:aid:example.com:operator" \ --key operator.key
# Issue a scoped delegation token (read-only, 24h expiry)idprova dat issue \ --issuer "did:aid:example.com:operator" \ --subject "did:aid:example.com:my-agent" \ --scope "mcp:tool:filesystem:read" \ --expires-in 24h \ --key operator.keyNext Steps
Section titled “Next Steps”- Concepts: Identity — Understand Agent Identity Documents
- Concepts: Delegation — Learn about DAT scoping and chains
- CLI Guide — Full CLI reference
- Python SDK — Python integration guide
- TypeScript SDK — TypeScript integration guide
- GitHub — Source code and issues