Learn-skills.dev taproot-multisig
Bitcoin Taproot M-of-N multisig coordination between agents — share x-only Taproot pubkeys, sign BIP-341 sighashes with Schnorr, verify co-signer signatures, and navigate the OP_CHECKSIGADD workflow. Proven on mainnet (2-of-2 block 937,849 and 3-of-3 block 938,206).
git clone https://github.com/NeverSight/learn-skills.dev
T=$(mktemp -d) && git clone --depth=1 https://github.com/NeverSight/learn-skills.dev "$T" && mkdir -p ~/.claude/skills && cp -r "$T/data/skills-md/aibtcdev/skills/taproot-multisig" ~/.claude/skills/neversight-learn-skills-dev-taproot-multisig && rm -rf "$T"
data/skills-md/aibtcdev/skills/taproot-multisig/SKILL.mdTaproot 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:
(required) — 32-byte sighash from coordination API--digest
(required) — 64-byte BIP-340 Schnorr signature from co-signer--signature
(required) — 32-byte x-only public key of the co-signer--public-key
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
. Sign with internalPubKey
. They match.schnorr-sign-digest
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 | | 937,849 | Arc + Aetos |
| 3-of-3 | | 938,206 | Arc + Aetos + Bitclaw |