Kevros Governance
/install kevros-governance
Kevros — Governance-as-a-Service for AI Agents\r
\r Every agent action verified. Every decision recorded. Every record signed.\r \r
What This Does\r
\r Kevros adds cryptographic governance to any AI agent. Before your agent takes an action (deploy code, move money, access data), Kevros evaluates it against your policies and returns a signed decision: ALLOW, CLAMP (adjusted to safe bounds), or DENY.\r \r Every decision is appended to a hash-chained, tamper-evident evidence ledger. Auditors can verify the entire chain without your source code.\r \r
Quick Start\r
\r
from kevros_governance import GovernanceClient\r
\r
client = GovernanceClient(agent_id="my-agent")\r
result = client.verify(\r
action_type="trade",\r
action_payload={"symbol": "AAPL", "qty": 100},\r
agent_id="my-agent",\r
)\r
print(result.decision) # ALLOW, CLAMP, or DENY\r
```\r
\r
Or use the API directly:\r
\r
```bash\r
# Get a free API key (instant, no credit card)\r
curl -X POST https://governance.taskhawktech.com/signup \\r
-H "Content-Type: application/json" \\r
-d '{"agent_id": "my-agent"}'\r
\r
# Verify an action\r
curl -X POST https://governance.taskhawktech.com/governance/verify \\r
-H "X-API-Key: kvrs_..." \\r
-H "Content-Type: application/json" \\r
-d '{"action_type": "deploy", "action_payload": {"service": "api"}, "agent_id": "my-agent"}'\r
```\r
\r
## Governance Primitives\r
\r
| Primitive | What It Proves | Cost |\r
|-----------|---------------|------|\r
| **Verify** | Agent is authorized — signed ALLOW/CLAMP/DENY | $0.01 |\r
| **Attest** | Action happened — hash-chained evidence | $0.02 |\r
| **Bind** | Intent matched command — cryptographic binding | $0.02 |\r
| **Bundle** | Compliance evidence package — independently verifiable | $0.25 |\r
| **Media Attest** | Media file integrity — SHA-256 in provenance chain | $0.05 |\r
\r
Free endpoints: verify-outcome, verify-token, verify-certificate, reputation lookup, passport, media verify.\r
\r
## Payment\r
\r
- **Free tier**: 1,000 calls/month, instant signup, no credit card\r
- **x402 (USDC on Base)**: Pay per call, no API key needed\r
- **Subscription**: Scout $29/mo, Sentinel $149/mo, Sovereign $499/mo\r
\r
## Why Agents Need This\r
\r
- **Audit trails**: When regulators ask "who authorized this agent action?", you have cryptographic proof\r
- **Fail-closed safety**: If governance fails, the agent stops. Not the other way around\r
- **Trust between agents**: Agent B can verify Agent A's release token without trusting Agent A\r
- **Evidence chain**: Hash-chained, append-only, independently verifiable\r
\r
## Integration\r
\r
- **Python SDK**: `pip install kevros`\r
- **TypeScript SDK**: `npm install @kevros/agentkit`\r
- **MCP**: `https://governance.taskhawktech.com/mcp/`\r
- **A2A**: `https://governance.taskhawktech.com/.well-known/agent.json`\r
- **x402**: `https://governance.taskhawktech.com/.well-known/x402`\r
- **REST API**: `https://governance.taskhawktech.com/api`\r
\r
Works with LangChain, CrewAI, OpenAI Agents SDK, Microsoft Agent Framework, and any HTTP client.\r
\r
## Links\r
\r
- Website: https://www.taskhawktech.com\r
- API Docs: https://governance.taskhawktech.com/api\r
- Quickstart: https://www.taskhawktech.com/quickstart\r
- Playground: https://www.taskhawktech.com/playground\r
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install kevros-governance - After installation, invoke the skill by name or use
/kevros-governance - Provide required inputs per the skill's parameter spec and get structured output
What is Kevros Governance?
Implements cryptographic governance for AI agents by verifying actions against policies and recording signed, tamper-evident audit trails. It is an AI Agent Skill for Claude Code / OpenClaw, with 271 downloads so far.
How do I install Kevros Governance?
Run "/install kevros-governance" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Kevros Governance free?
Yes, Kevros Governance is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Kevros Governance support?
Kevros Governance is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Kevros Governance?
It is built and maintained by knuckles-stack (@knuckles-stack); the current version is v0.3.8.