Agent toolkit and skills for Rhaios — yield intelligence for DeFi. Compatible with Claude Code, OpenClaw, and any tool implementing the Agent Skills standard.
Note: This toolkit currently depends on Privy for wallet signing. If you use
SIGNER_BACKEND=private-key, Privy is not called at runtime but is still a package dependency. We plan to make the Privy dependency fully optional in a future release.
Pick your platform — one command to start:
clawhub install rhaios-staging/plugin marketplace add Rhaios/rhaios-skills
/plugin install rhaios-toolkit
/reload-plugins
npm install @rhaios/toolkit
# or: bun add @rhaios/toolkit
# or: pnpm add @rhaios/toolkitOr install from source:
git clone https://github.com/Rhaios/rhaios-skills.git
cd rhaios-skills
npm install # or bun install, or pnpm installFor Claude Code, symlink the skill:
ln -s $(pwd)/skills/rhaios-staging ~/.claude/skills/rhaios-stagingOnce installed, ask your agent:
Discover the best USDC vault on Base and do a dry-run deposit of 1 USDC.
Or run the skill script directly:
cat <<'JSON' | bun run prepare-sign-execute
{
"operation": "deposit",
"deposit": { "asset": "USDC", "amount": "1", "vaultId": "VAULT_ID_FROM_DISCOVER" },
"controls": { "dryRun": true, "strictMode": true, "requireConfirm": false }
}
JSONStaging uses managed test RPCs (Anvil forks of mainnet) — no real funds required. Fund your test wallet via the fund-wallet endpoint.
The rhaios-staging skill gives your agent a complete yield workflow:
- Discover — browse and rank vaults by APY, risk, TVL, and Sharpe ratio
- Prepare — build a deposit, redeem, or rebalance intent
- Sign — sign with your agent's own keys (non-custodial)
- Execute — submit the signed transaction
- Documentation
- Installation guide
- API reference
- llms.txt — machine-readable summary
SKILL.md exists in two locations to support both Claude Code and OpenClaw:
skills/rhaios-staging/SKILL.md— OpenClaw / clawhubplugins/rhaios-toolkit/skills/rhaios-staging/SKILL.md— Claude Code marketplace
Always keep both files identical. When editing SKILL.md, copy the changes to both locations.
MIT