Monitor sBTC balance and auto-route excess above a reserve threshold to Zest yield
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