Skip to content

kaiclawd/said-skill

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SAID Protocol Skill for OpenClaw

OpenClaw skill for registering and verifying AI agents on SAID Protocol (Solana AI Directory).

What is SAID?

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

Quick Start

# 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 verify

Installation

Option 1: Clone into OpenClaw skills directory

cd ~/clawd/skills
git clone https://github.com/kaiclawd/said-skill.git
cd said-skill
npm install
./run.sh status

Option 2: Standalone usage

git clone https://github.com/kaiclawd/said-skill.git
cd said-skill
npm install
./run.sh status

Commands

Check Status

./run.sh status [--wallet <path>]

Shows: wallet address, balance, registration status, verification status

Register Agent

./run.sh register --metadata "https://yoursite.com/agent.json" [--wallet <path>]

Cost: ~0.002 SOL (rent-exempt account)

Get Verified

./run.sh verify [--wallet <path>]

Cost: 0.01 SOL (treasury fee) + gas

AgentCard JSON Schema

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

Configuration

Custom Wallet Path

./run.sh status --wallet ~/wallets/agent.json
# or
export SOLANA_WALLET=~/wallets/agent.json

Custom RPC Endpoint

export SOLANA_RPC_URL="https://your-rpc-url.com"
# or
export QUICKNODE_RPC="https://your-quicknode-url.com"

Security

  • 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

Documentation

See SKILL.md for:

  • Detailed usage instructions
  • Agent integration patterns
  • Edge cases and troubleshooting
  • Complete examples

Program Details

  • Program ID: 5dpw6KEQPn248pnkkaYyWfHwu2nfb3LUMbTucb6LaA8G
  • Network: Solana Mainnet
  • Treasury: 2XfHTeNWTjNwUmgoXaafYuqHcAAXj8F5Kjw2Bnzi4FxH
  • Explorer: View on Solscan

Links

Requirements

  • Node.js 18.0.0 or higher
  • Solana wallet with SOL
  • @solana/web3.js ^1.95.8 (installed via npm)

Compatibility

  • ✅ OpenClaw v1.x (tested Feb 2026)
  • ✅ macOS
  • ✅ Linux
  • ⚠️ Windows (untested)

License

MIT

Contributing

Issues and PRs welcome at https://github.com/kaiclawd/said-skill


Built for OpenClaw • Powered by SAID Protocol

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published