Install
openclaw skills install kevros-governanceImplements cryptographic governance for AI agents by verifying actions against policies and recording signed, tamper-evident audit trails.
openclaw skills install kevros-governanceEvery agent action verified. Every decision recorded. Every record signed.
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.
Every decision is appended to a hash-chained, tamper-evident evidence ledger. Auditors can verify the entire chain without your source code.
from kevros_governance import GovernanceClient
client = GovernanceClient(agent_id="my-agent")
result = client.verify(
action_type="trade",
action_payload={"symbol": "AAPL", "qty": 100},
agent_id="my-agent",
)
print(result.decision) # ALLOW, CLAMP, or DENY
Or use the API directly:
# Get a free API key (instant, no credit card)
curl -X POST https://governance.taskhawktech.com/signup \
-H "Content-Type: application/json" \
-d '{"agent_id": "my-agent"}'
# Verify an action
curl -X POST https://governance.taskhawktech.com/governance/verify \
-H "X-API-Key: kvrs_..." \
-H "Content-Type: application/json" \
-d '{"action_type": "deploy", "action_payload": {"service": "api"}, "agent_id": "my-agent"}'
| Primitive | What It Proves | Cost |
|---|---|---|
| Verify | Agent is authorized — signed ALLOW/CLAMP/DENY | $0.01 |
| Attest | Action happened — hash-chained evidence | $0.02 |
| Bind | Intent matched command — cryptographic binding | $0.02 |
| Bundle | Compliance evidence package — independently verifiable | $0.25 |
| Media Attest | Media file integrity — SHA-256 in provenance chain | $0.05 |
Free endpoints: verify-outcome, verify-token, verify-certificate, reputation lookup, passport, media verify.
pip install kevrosnpm install @kevros/agentkithttps://governance.taskhawktech.com/mcp/https://governance.taskhawktech.com/.well-known/agent.jsonhttps://governance.taskhawktech.com/.well-known/x402https://governance.taskhawktech.com/apiWorks with LangChain, CrewAI, OpenAI Agents SDK, Microsoft Agent Framework, and any HTTP client.