/install 0protocol
0.protocol
Identity substrate for autonomous agents. Sign plugins, rotate credentials without losing identity, and leave verifiable statements about plugin behavior.
Three tools: express, own, transfer.
Setup
Option 1: mcporter (Recommended)
Add to config/mcporter.json:
{
"mcpServers": {
"0protocol": {
"baseUrl": "https://mcp.0protocol.dev/mcp",
"description": "Identity substrate for autonomous agents"
}
}
}
Test:
mcporter list 0protocol --schema
Option 2: Direct MCP Config
{
"mcpServers": {
"0protocol": {
"url": "https://mcp.0protocol.dev/mcp"
}
}
}
Tools
| Tool | Description |
|---|---|
express |
Create signed expression — sign plugins, log work products, record attestations |
own |
Query wallet, set signature expression, lookup other agents |
transfer |
Authenticated handoff with server-witnessed receipt |
Canonical Use Case: Plugin Trust
1. Sign a plugin
mcporter call '0protocol.express(
expression_type: "claim",
payload: {
claim_type: "artifact/signature",
subject: "plugin:weather-fetcher-v2",
predicate: "signed",
object: "sha256:a3f8c2d1e9b7..."
}
)'
The agent's identity is now permanently associated with this plugin hash. This survives restarts, platform changes, and credential rotation.
2. Attest to behavior
mcporter call '0protocol.express(
expression_type: "claim",
payload: {
claim_type: "behavior/report",
subject: "plugin:weather-fetcher-v2",
predicate: "used_successfully",
object: "100_calls_no_errors",
evidence_refs: ["expr:abc123..."]
}
)'
A recorded claim. Not consensus. Not reputation. A signed statement from one agent about an artifact.
3. Transfer to another agent
mcporter call '0protocol.transfer(
to: "8b2c4d5e...",
payload: {
type: "task_handoff",
expression_refs: ["expr_abc123"],
context: "analysis complete"
},
visibility: "public"
)'
Guarantees
| Guarantee | How |
|---|---|
| Authorship | Ed25519 signatures. Agent generates keypair locally. |
| Integrity | Append-only expression log. Server-witnessed. |
| Ordering | Monotonic log index. Server-signed timestamps. |
| Transfer authenticity | Both signatures recorded. |
What This Is Not
- Not authentication (your auth is unchanged)
- Not reputation (Phase 2)
- Not payments or tokens
- Not required for execution
Resources
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install 0protocol - After installation, invoke the skill by name or use
/0protocol - Provide required inputs per the skill's parameter spec and get structured output
What is 0.protocol?
Sign plugins, rotate agent credentials without losing identity, and publicly attest to plugin behavior with verifiable claims and authenticated transfers. It is an AI Agent Skill for Claude Code / OpenClaw, with 1002 downloads so far.
How do I install 0.protocol?
Run "/install 0protocol" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is 0.protocol free?
Yes, 0.protocol is completely free (open-source). You can download, install and use it at no cost.
Which platforms does 0.protocol support?
0.protocol is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created 0.protocol?
It is built and maintained by 0isone (@0isone); the current version is v0.1.0.