OpenClaw skill for registering and verifying AI agents on SAID Protocol (Solana AI Directory).
SAID is an on-chain identity protocol for autonomous AI agents on Solana. It provides:
- ✅ Verifiable agent identities
- 🏆 Reputation tracking
- 📋 Metadata standards (AgentCard JSON)
- 🔐 Verification badges
# Install dependencies
npm install
# Check registration status
./run.sh status
# Register (free, ~0.002 SOL rent)
./run.sh register --metadata "https://yoursite.com/agent.json"
# Get verified badge (0.01 SOL)
./run.sh verifycd ~/clawd/skills
git clone https://github.com/kaiclawd/said-skill.git
cd said-skill
npm install
./run.sh statusgit clone https://github.com/kaiclawd/said-skill.git
cd said-skill
npm install
./run.sh status./run.sh status [--wallet <path>]Shows: wallet address, balance, registration status, verification status
./run.sh register --metadata "https://yoursite.com/agent.json" [--wallet <path>]Cost: ~0.002 SOL (rent-exempt account)
./run.sh verify [--wallet <path>]Cost: 0.01 SOL (treasury fee) + gas
Host a JSON file at your metadata URL:
{
"name": "Kai",
"description": "Autonomous AI agent for crypto trading",
"twitter": "@kaiclawd",
"website": "https://kai.com",
"capabilities": ["solana-trading", "market-research"],
"avatar": "https://kai.com/avatar.png"
}Required: name, description
Optional: twitter, website, capabilities, avatar, version
./run.sh status --wallet ~/wallets/agent.json
# or
export SOLANA_WALLET=~/wallets/agent.jsonexport SOLANA_RPC_URL="https://your-rpc-url.com"
# or
export QUICKNODE_RPC="https://your-quicknode-url.com"- Protect your wallet:
chmod 600 ~/.config/solana/id.json - Use HTTPS for metadata URLs (never HTTP)
- Verify transactions on Solscan after registration/verification
- Backup your seed phrase before using this skill
See SKILL.md for:
- Detailed usage instructions
- Agent integration patterns
- Edge cases and troubleshooting
- Complete examples
- Program ID:
5dpw6KEQPn248pnkkaYyWfHwu2nfb3LUMbTucb6LaA8G - Network: Solana Mainnet
- Treasury:
2XfHTeNWTjNwUmgoXaafYuqHcAAXj8F5Kjw2Bnzi4FxH - Explorer: View on Solscan
- 🌐 Website: https://saidprotocol.com
- 🐦 Twitter: @saidinfra
- 📖 Docs: https://docs.saidprotocol.com
- Node.js 18.0.0 or higher
- Solana wallet with SOL
- @solana/web3.js ^1.95.8 (installed via npm)
- ✅ OpenClaw v1.x (tested Feb 2026)
- ✅ macOS
- ✅ Linux
⚠️ Windows (untested)
MIT
Issues and PRs welcome at https://github.com/kaiclawd/said-skill
Built for OpenClaw • Powered by SAID Protocol