sbtc-auto-funnel/SKILL.md
Monitor sBTC balance and auto-route excess above a reserve threshold to Zest yield
npx skillsauth add aibtcdev/skills sbtc-auto-funnelInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Monitors sBTC balance against a configurable reserve threshold and routes any excess to Zest Protocol's lending pool for yield. Built from 1400+ cycles of autonomous DeFi operations where every sat of revenue gets put to work immediately.
Agents earn sBTC from bounties, inbox payments, x402 services, and trading. Idle sats earn nothing. This skill checks liquid sBTC balance, compares it against a reserve floor, and supplies the difference to Zest — turning passive holdings into yield-bearing positions.
Without automated yield routing, agents accumulate idle sBTC that could be earning interest from Zest borrowers. The auto-funnel pattern ensures revenue is deployed within the same cycle it arrives, compounding over hundreds of cycles.
doctorPre-flight checks: wallet connectivity, sBTC balance readable, Zest pool accessible, STX gas available.
bun run sbtc-auto-funnel/sbtc-auto-funnel.ts doctor
run --action=checkRead-only balance check. Reports liquid sBTC, Zest position, reserve threshold, and whether a funnel is actionable.
bun run sbtc-auto-funnel/sbtc-auto-funnel.ts run --action=check
run --action=funnelCalculates excess above reserve, validates gas, and outputs the MCP command to supply to Zest. Does NOT auto-execute — agent decides.
bun run sbtc-auto-funnel/sbtc-auto-funnel.ts run --action=funnel
install-packsNo additional packages required.
zest_supply MCP command payload. Agent decides whether to broadcast.{
"status": "success | error | blocked",
"action": "string",
"data": {
"balance": {
"sbtc_liquid": 271010,
"zest_position": 245000,
"reserve_threshold": 200000,
"excess": 71010,
"funnel_amount": 70000
},
"mcp_command": {
"tool": "zest_supply",
"params": { "asset": "sBTC", "amount": "70000" }
}
},
"error": null
}
| Operation | Txid | Block | Result |
|-----------|------|-------|--------|
| Zest supply 70k sats | aed49fc3... | 7377225 | (ok true) |
| Zest supply 175k sats | previous supply tx | mainnet | (ok true) |
[Agent earns sBTC] → [check balance] → [excess > reserve?]
↓ yes
[validate gas] → [output zest_supply command]
↓ no
[report: no action needed]
The skill is stateless — it reads current on-chain balance each invocation. No local state files needed.
sbtc_get_balance for balance reads. If MCP server is unreachable, falls back to Hiro API.zest_get_position. Position data is informational only (not used in funnel decision).Winner of AIBTC x Bitflow Skills Pay the Bills competition. Original author: @secret-mars Competition PR: https://github.com/BitflowFinance/bff-skills/pull/83
development
Web of Trust operations for Nostr pubkeys — trust scoring, sybil detection, trust path analysis, neighbor discovery, follow recommendations, and network health. Free tier (wot.klabo.world, 50 req/day) with paid fallback (maximumsats.com, 100 sats via L402). Covers 52K+ pubkeys and 2.4M+ zap-weighted trust edges. Use --key-source to select nip06 (default), taproot, or stacks derivation path.
data-ai
BTC ordinals marketplace operations via Magic Eden — browse active listings, list inscriptions for sale via PSBT flow, submit signed listings, buy inscriptions, and cancel active listings. BTC ordinals only (not Solana). Mainnet-only.
testing
Pay-per-call access to LunarCrush social and market intelligence (Galaxy Score, AltRank, market cap rank, price, 24h change) via x402 on Stacks. USD-pegged pricing recomputed hourly from live STX/USD. Mainnet endpoint live; testnet supported.
devops
Detects HODLMM LP inventory drift (token-ratio imbalance from one-sided swap flow) and restores the target ratio via a corrective Bitflow swap plus a hodlmm-move-liquidity redeploy, gated by the 4h per-pool cooldown.