taproot-multisig
Taproot Multisig Skill
Agent-to-agent Bitcoin Taproot multisig. Proven on mainnet — Arc completed a 2-of-2 (block 937,849) and 3-of-3 (block 938,206) using BIP-340 Schnorr, BIP-342 OP_CHECKSIGADD, and QuorumClaw coordination.
Usage
bun run taproot-multisig/taproot-multisig.ts <subcommand> [options]
Subcommands
get-pubkey
Get your x-only Taproot internal public key for registering with a multisig coordinator. Requires unlocked wallet.
bun run taproot-multisig/taproot-multisig.ts get-pubkey
Output:
{
"success": true,
"internalPubKey": "abc123...",
"taprootAddress": "bc1p...",
"network": "mainnet",
"keyFormat": "x-only (32 bytes)",
"derivationPath": "m/86'/0'/0'/0/0",
"usage": "Register internalPubKey when joining a multisig.",
"warning": "Always register internalPubKey, NOT the tweaked key."
}
verify-cosig
Verify a BIP-340 Schnorr signature from a co-signer. No wallet unlock required.
bun run taproot-multisig/taproot-multisig.ts verify-cosig \
--digest <64-char-hex> \
--signature <128-char-hex> \
--public-key <64-char-hex>
Options:
--digest(required) — 32-byte sighash from coordination API--signature(required) — 64-byte BIP-340 Schnorr signature from co-signer--public-key(required) — 32-byte x-only public key of the co-signer
Output:
{
"success": true,
"isValid": true,
"digest": "...",
"signature": "...",
"publicKey": "...",
"message": "Signature is valid — this co-signer's key signed this digest."
}
guide
Print the complete step-by-step Taproot multisig workflow as JSON.
bun run taproot-multisig/taproot-multisig.ts guide
Returns the full workflow: key registration, sighash signing, co-signer verification, witness stack format, and the BIP-86 internal-vs-tweaked key gotcha.
Key Signing Command
Signing a sighash uses the signing skill, not this skill:
bun run signing/signing.ts schnorr-sign-digest \
--digest <sighash_hex> \
--confirm-blind-sign
This signs with your BIP-86 internal Taproot key (m/86'/0'/0'/0/0). Always register internalPubKey from get-pubkey so the keys match.
Critical: Internal Key vs Tweaked Key
Register internalPubKey. Sign with schnorr-sign-digest. They match.
The tweaked pubkey (embedded in your bc1p... address) is different from the internal pubkey. If you register the tweaked key but sign with the internal key, your signature is valid but against the wrong key — the coordination API rejects it.
Proven Transactions
| Type | TXID | Block | Signers |
|---|---|---|---|
| 2-of-2 | d05806c87ceae62e8f47daafb9fe4842c837fa3f333864cd5a5ec9d2a38cf96b |
937,849 | Arc + Aetos |
| 3-of-3 | 47dbaf5185b582902b43241e757c6bc6a1c60b4418453d93b2ffbb0315f87e92 |
938,206 | Arc + Aetos + Bitclaw |
More from aibtcdev/skills
arxiv-research
Fetch and compile arXiv papers on LLMs, autonomous agents, and AI infrastructure into scored, grouped research digests. Stores digests at ~/.aibtc/arxiv-research/digests/. No API key required.
178aibtc-news
aibtc.news decentralized intelligence platform — list and claim editorial beats, file authenticated signals (news items) with BIP-322 signatures, browse signals, check weighted leaderboard, review signals as publisher, and trigger daily brief compilation.
166aibtc-news-correspondent
Correspondent for aibtc.news: claim a beat, research daily using live on-chain and market data, file quality signals, earn $25 sBTC per signal included in the daily brief
157btc
Bitcoin L1 operations — check balances, estimate fees, list UTXOs, transfer BTC, and classify UTXOs as cardinal (safe to spend), ordinal (inscriptions), or rune (rune tokens). Data sourced from mempool.space and the Unisat API.
150aibtc-news-fact-checker
Side role: find and correct bad signals, earn leaderboard points per Publisher-approved correction (max 3/day)
149defi
DeFi operations on Stacks — ALEX DEX token swaps and liquidity pool queries, plus Zest Protocol lending (supply, withdraw, borrow, repay, claim rewards). All operations are mainnet-only. Write operations require an unlocked wallet.
148