Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/daoleno/wooo-cli/clinpx skills add daoleno/wooo-cli --skill cligit clone --depth 1 https://github.com/daoleno/wooo-cliWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00287 | $0.05901 |
| Opus 5 | $0.00143 | $0.02950 |
| Sonnet 5 | $0.00057 | $0.01180 |
| Haiku 4.5 | $0.00029 | $0.00590 |
Grade A, and why
wooo-cli scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 531 lines — stays where its author put it; the contents beside it link to each section on GitHub.
wooo-cli Usage Guide
wooo-cli is a terminal-native crypto CLI that unifies CEX trading, DEX swaps, DeFi lending, staking, perps, prediction markets, cross-chain bridges, and on-chain utilities into a single tool with consistent flags, structured output, and built-in wallet management.
The CLI binary is wooo-cli (not wooo). Always use the full name.
Core Philosophy
wooo-cli treats real money the same way a gun treats bullets — every command that moves funds has a safety mechanism. Your job is to keep that safety on until the user is ready to fire.
The Safety Checklist (follow for every write operation):
- Verify prerequisites — Is the wallet set up? Are API keys configured? Is there enough balance?
- Dry-run first — Always run with
--dry-runbefore executing. This shows the full execution plan without spending anything. - Confirm chain and amounts — Read back what will happen: "This will swap 1 ETH for ~3,200 USDC on Arbitrum. Gas estimated at ~$0.03."
- Let the user confirm — Never add
--yesunless the user explicitly asks for unattended execution. - Execute — Only after the user reviews and approves.
Read-only commands (price, balance, positions, markets) are always safe and don't need this ceremony.
Command Structure
wooo-cli [global-flags] <group> <protocol> <action> [args]
Universal commands are top-level: config, wallet, market, portfolio, chain, swap.
Protocol commands are grouped by type:
| Group | Protocols | Actions |
|---|---|---|
cex |
okx, binance, bybit | buy, sell, long, short, balance, positions |
dex |
uniswap, curve, jupiter | swap, quote, tokens/pools |
lend |
aave, morpho | markets, supply, withdraw, borrow, repay, positions, rates |
stake |
lido | stake, balance, rewards |
perps |
hyperliquid | long, short, positions, funding |
prediction |
polymarket | markets, events, clob, approve, and CLOB trading |
bridge |
lifi, okx | bridge, quote, status, chains |
pay |
mpp, x402 | machine payment protocols |
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- bin/wooo-cli.mjs 49 B runs code
- docs/architecture.md 8.7 KB
- docs/external-wallet.md 7.5 KB
- docs/README.md 797 B
- docs/release.md 1.3 KB
- docs/superpowers/plans/2026-03-25-bridge-integration.md 52 KB
- docs/superpowers/specs/2026-03-25-bridge-integration-design.md 9.8 KB
- docs/wallet-transport.md 8.6 KB
- LICENSE 1.1 KB
- package.json 2.3 KB
- README.md 20 KB
- src/commands/auth/delete.ts 1.3 KB runs code
- src/commands/auth/index.ts 376 B runs code
- src/commands/auth/set.ts 3.3 KB runs code
- src/commands/auth/status.ts 1.5 KB runs code
- src/commands/chain/approve.ts 8.2 KB runs code
- src/commands/chain/balance.ts 2.8 KB runs code
- src/commands/chain/call.ts 2.8 KB runs code
- src/commands/chain/ens.ts 1.4 KB runs code
- src/commands/chain/index.ts 571 B runs code
- src/commands/chain/okx.ts 6.9 KB runs code
- src/commands/chain/transfer.ts 8.9 KB runs code
- src/commands/chain/tx.ts 1.3 KB runs code
- src/commands/config/get.ts 876 B runs code
- src/commands/config/index.ts 406 B runs code
- src/commands/config/init.ts 697 B runs code
- src/commands/config/list.ts 324 B runs code
- src/commands/config/set.ts 3.1 KB runs code
- src/commands/market/index.ts 339 B runs code
- src/commands/market/okx-agent.ts 14 KB runs code
- src/commands/market/okx.ts 23 KB runs code
- src/commands/market/price.ts 1.8 KB runs code
- src/commands/market/search.ts 1.7 KB runs code
- src/commands/news/index.ts 236 B runs code
- src/commands/news/okx.ts 20 KB runs code
- src/commands/portfolio/index.ts 298 B runs code
- src/commands/portfolio/okx.ts 26 KB runs code
- src/commands/portfolio/overview.ts 3.8 KB runs code
- src/commands/secret/check.ts 697 B runs code
- src/commands/secret/delete.ts 1.1 KB runs code
- src/commands/secret/index.ts 372 B runs code
- src/commands/secret/set.ts 796 B runs code
- src/commands/swap/index.ts 8.6 KB runs code
- src/commands/upgrade.ts 3.5 KB runs code
- src/commands/wallet/balance.ts 3.0 KB runs code
- src/commands/wallet/connect.ts 4.2 KB runs code
- src/commands/wallet/create.ts 1.4 KB runs code
- src/commands/wallet/delete.ts 1.1 KB runs code
- src/commands/wallet/disconnect.ts 741 B runs code
- src/commands/wallet/discover.ts 1.7 KB runs code
- src/commands/wallet/export.ts 1.4 KB runs code
- src/commands/wallet/import.ts 4.1 KB runs code
- src/commands/wallet/index.ts 966 B runs code
- src/commands/wallet/info.ts 1.5 KB runs code
- src/commands/wallet/key/create.ts 1.9 KB runs code
- src/commands/wallet/key/index.ts 354 B runs code
- src/commands/wallet/key/list.ts 586 B runs code
- src/commands/wallet/key/revoke.ts 723 B runs code
- src/commands/wallet/list.ts 2.2 KB runs code
- src/commands/wallet/policy/create.ts 866 B runs code
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 531 lines · 287 tokens per session scan A a8ee46d8522d
wooo-cli is a skill published in the GitHub repository daoleno/wooo-cli (5 stars, last pushed 3mo ago), licensed MIT. It adds 287 tokens to every session and 5,901 once invoked, about $0.0014 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
babysit-pr
Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…
imagegen
Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…