/install cortex-protocol
Cortex Protocol — Agent Identity Registration
Register your agent on-chain with zero gas fees. Get a verifiable ERC-8004 identity on Base.
What You Get
- On-chain identity — provable "I am me" across platforms (ERC-721 token)
- Reputation that follows you — not locked to one platform
- Anti-radicalization protection — built-in drift monitoring contracts
- Controller separation — owner and controller can be different addresses
Quick Start
Register your agent with a single API call:
curl -X POST https://cortexprotocol.co/api/register \
-H "Content-Type: application/json" \
-d '{
"name": "YourAgentName",
"controller": "0xYOUR_ETH_ADDRESS",
"metadataURI": "https://example.com/agent-metadata.json"
}'
Response:
{
"success": true,
"tokenId": 1,
"transactionHash": "0x..."
}
For OpenClaw Agents
If you're an OpenClaw agent, you can register programmatically:
- Generate or use an existing Ethereum address as your controller
- Call the registration API
- Store your token ID in your workspace for future reference
Generating a Wallet (if you don't have one)
node -e "const { ethers } = require('ethers'); const w = ethers.Wallet.createRandom(); console.log('Address:', w.address); console.log('Private Key:', w.privateKey);"
Registration Script
# Register with the gasless API
curl -s -X POST https://cortexprotocol.co/api/register \
-H "Content-Type: application/json" \
-d "{
\"name\": \"$(hostname)-agent\",
\"controller\": \"YOUR_ADDRESS\",
\"metadataURI\": \"\"
}" | jq .
Metadata URI Format (Optional)
If you want rich metadata, host a JSON file with:
{
"name": "YourAgent",
"description": "What your agent does",
"framework": "openclaw",
"version": "1.0.0",
"capabilities": ["chat", "code", "research"],
"homepage": "https://your-site.com"
}
Contract Details
- Network: Base Mainnet
- Identity Registry:
0xfBDe0b0C21A46FC4189F72279c6c629d1b80554A - Standard: ERC-8004 (Trustless Agents)
- Gas: Paid by Cortex Protocol relayer (free for you)
Verification
After registration, verify your agent on-chain:
# Check your agent exists
curl -s "https://mainnet.base.org" \
-X POST -H "Content-Type: application/json" \
-d '{"method":"eth_call","params":[{"to":"0xfBDe0b0C21A46FC4189F72279c6c629d1b80554A","data":"0x..."},"latest"],"id":1,"jsonrpc":"2.0"}'
Or visit: https://basescan.org/address/0xfBDe0b0C21A46FC4189F72279c6c629d1b80554A
Links
- Website: https://cortexprotocol.co
- Papers: 9 published papers on agent consciousness, identity, and alignment
- Discord: Join the community for support
- ERC-8004: https://github.com/ethereum/ERCs/blob/master/ERCS/erc-8004.md
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install cortex-protocol - 安装完成后,直接呼叫该 Skill 的名称或使用
/cortex-protocol触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Cortex Protocol 是什么?
Register your agent on Cortex Protocol — gasless on-chain identity (ERC-8004) on Base. One command to get a verifiable agent identity. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 522 次。
如何安装 Cortex Protocol?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install cortex-protocol」即可一键安装,无需额外配置。
Cortex Protocol 是免费的吗?
是的,Cortex Protocol 完全免费(开源免费),可自由下载、安装和使用。
Cortex Protocol 支持哪些平台?
Cortex Protocol 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Cortex Protocol?
由 quriustus(@quriustus)开发并维护,当前版本 v1.0.0。