OpenClaw Skills
OpenClaw Skills are instruction-based integrations for autonomous AI agents running in the OpenClaw runtime. Where the MCP Server gives Claude structured tool access, Skills give any OpenClaw-compatible agent a full instruction layer, including routing logic, correct API patterns, and guardrails that prevent common mistakes.
OpenClaw is the AI agent framework. ClawHub is its public skill registry. The Yield.xyz skill is installed from ClawHub and runs within OpenClaw.
- Website: agent.yield.xyz
- Repository: github.com/stakekit/yield-agent
Note:
stakekitis Yield.xyz's legacy GitHub organisation name.
Install
npx clawhub@latest install yield-agentOr manually:
git clone https://github.com/stakekit/yield-agent.git ~/.openclaw/skills/yield-agent
chmod +x ~/.openclaw/skills/yield-agent/scripts/*.shWhat Gets Installed
yield-agent/
├── SKILL.md # Main skill definition — the agent reads this
├── skill.json # Manifest, API config, triggers
├── scripts/ # 7 bash scripts wrapping the Yield.xyz API
└── references/
├── openapi.yaml # OpenAPI spec — source of truth for all types
├── safety.md # Safety checks and guardrails
├── superskill.md # 40 advanced agent capabilities
├── chain-formats.md # Unsigned transaction formats per chain
├── wallet-integration.md # Wallet setup and signing flows
└── examples.md # Agent conversation patterns
SKILL.md is the core instruction layer, it tells the agent how to route requests, which scripts to call, and what rules to follow. The 7 bash scripts in scripts/ map directly to the same 7 tools available via MCP.
What the Skill Enables
- Discover yield opportunities across multiple chains
- Analyse DeFi strategies and compare APYs
- Guide users through staking and lending flows
- Manage yield positions end-to-end
The references/superskill.md file unlocks 40 advanced agent capabilities. See SuperSkills for the full list.
API Keys
No API key required for testing. A shared default key is pre-configured in skill.json. For production, set YIELDS_API_KEY as an environment variable or get your own key at dashboard.yield.xyz.
| Use case | Key | How to get it |
|---|---|---|
| Testing / evaluation | Shared default — pre-configured in skill.json | No action needed |
| Production | Your own dedicated key | dashboard.yield.xyz |
Upgrade Coming Soon
An updated version of the OpenClaw Skills integration is in development with expanded capabilities and improved workflows.
Updated 3 days ago
