bitcoin-hardware-multi-vendor-multisig
Multi-vendor multisig: combining HW wallets from different vendors (Trezor + Ledger + Coldcard) for diversification. Coordinator-mediated setup, descriptor sharing, threat model. USE WHEN: designing multi-vendor custody, implementing 2-of-3 multisig with diverse hardware.
What this skill does
# Multi-Vendor Multisig
Using HW wallets from **different manufacturers** for the same
multisig. Defense against single-vendor compromise (firmware bug,
supply chain).
## Why multi-vendor
If all 3 keys are on Ledger devices and Ledger has a critical bug:
- All 3 keys potentially compromised.
- 2-of-3 = full theft.
Multi-vendor 2-of-3 (e.g., Trezor + Coldcard + Ledger):
- One vendor's vulnerability doesn't compromise majority.
- Need 2 simultaneous vulnerabilities + access.
- Substantially harder to attack.
## Trade-offs
- **Multi-vendor signing UX harder**: each vendor has different
flows.
- **Coordinator complexity**: must speak multiple HW protocols.
- **Recovery complicated**: must remember which vendor goes where.
## Setup
1. Generate seeds on each device independently.
2. Get xpubs at standard multisig path (e.g., `m/48'/0'/0'/2'` for
P2WSH; `m/48'/0'/0'/2'` for Tapscript variant).
3. Use coordinator (Sparrow / Specter / Caravan) to:
- Combine xpubs into descriptor.
- Generate addresses.
- Verify each device shows the same multisig address.
4. Register wallet policy on each device (Ledger especially needs
this).
5. Test with small amount before full deposit.
## Common configurations
**2-of-3 with Trezor + Ledger + Coldcard**:
- Trezor: hot signer (everyday use).
- Ledger: secondary signer.
- Coldcard: deep cold (airgapped, signed only for large txs).
**3-of-5 with diverse vendors**:
- Trezor + Ledger + Coldcard + BitBox02 + Jade.
- Higher availability + diversification.
## Descriptor format
```
wsh(sortedmulti(2,
[trezor_fp/48h/0h/0h/2h]xpub_trezor.../<0;1>/*,
[ledger_fp/48h/0h/0h/2h]xpub_ledger.../<0;1>/*,
[coldcard_fp/48h/0h/0h/2h]xpub_coldcard.../<0;1>/*
))#chk
```
Or Taproot-multisig:
```
tr(KEY_AGGREGATE,
multi_a(2,
[fp1/86h/0h/0h]xpub1.../<0;1>/*,
[fp2/86h/0h/0h]xpub2.../<0;1>/*,
[fp3/86h/0h/0h]xpub3.../<0;1>/*))#chk
```
For Taproot, key-path can be a MuSig2 of all three (cooperative
spend). Less HW support currently.
## Coordinator wallets
| Coordinator | Strengths |
|-------------|-----------|
| **Sparrow Desktop** | Cleanest cross-vendor; native PSBT |
| **Specter Desktop** | Web UI; multi-device flow |
| **Caravan** | Web-based, no install |
| **Bitcoin Core + HWI** | Most flexible, scriptable |
## Recovery
- **Backup descriptor** along with seeds. Without descriptor, can't
reconstruct addresses without all 3 xpubs.
- **Recovery contact info**: where each backup lives.
- **Document vendor + path** explicitly.
## Threat model considerations
- **Common-mode failure**: even multi-vendor doesn't help against
attacks on the **wallet UX** (e.g., compromised desktop coordinator
showing wrong address).
- **Address verification on device** is critical: each HW wallet
must independently confirm the full multisig address before
funds deposit.
## Common pitfalls
- **Coordinator-only address generation** without verifying on each
device → all devices lie about their actual key contribution.
- **Path mismatch**: BIP48 path used inconsistently across devices.
- **Wallet policy missing on Ledger** → signing fails.
- **Forgetting xpub backup** → can't reconstruct without all 3
devices.
## See also
- [hwi/SKILL.md](../hwi/SKILL.md)
- [psbt-flows/SKILL.md](../psbt-flows/SKILL.md)
- [../wallets/vaults/SKILL.md](../../wallets/vaults/SKILL.md)
- [../infrastructure/sparrow/SKILL.md](../../infrastructure/sparrow/SKILL.md)
- [../infrastructure/specter-desktop/SKILL.md](../../infrastructure/specter-desktop/SKILL.md)
- [../infrastructure/caravan/SKILL.md](../../infrastructure/caravan/SKILL.md)
Related in Security
mac-ops
IncludedComprehensive macOS workstation operations — diagnose kernel panics, identify failing drives, audit launchd startup items, decode wake reasons, triage TCC permission denials, manage APFS snapshots, recover from no-boot. Use for: Mac is slow, slow bootup, won't boot, kernel panic, kernel_task hot, mds_stores CPU, photoanalysisd, cloudd, login loop, gray screen, sleep wake failure, drive failing, IO errors, APFS snapshots eating space, Time Machine local snapshots, Spotlight indexing, launchd, LaunchAgent, LaunchDaemon, login items, TCC permissions, Full Disk Access, Screen Recording denied, Gatekeeper, quarantine, com.apple.quarantine, app is damaged, helper tool, /Library/PrivilegedHelperTools, pmset, wake reasons, dark wake, sysdiagnose, panic.ips, DiagnosticReports, configuration profile, MDM profile, remote diagnostics over SSH.
a11y-audit
IncludedRun accessibility audits on web projects combining automated scanning (axe-core, Lighthouse) with WCAG 2.1 AA compliance mapping, manual check guidance, and structured reporting. Output is configurable: markdown report only, markdown plus machine-readable JSON, or markdown plus issue tracker integration. Use this skill whenever the user mentions "accessibility audit", "a11y audit", "WCAG audit", "accessibility check", "compliance scan", or asks to check a web project for accessibility issues. Also trigger when the user wants to verify WCAG conformance or map findings to a specific standard (CAN-ASC-6.2, EN 301 549, ADA/AODA).
erpclaw
IncludedAI-native ERP system with self-extending OS. Full accounting, invoicing, inventory, purchasing, tax, billing, HR, payroll, advanced accounting (ASC 606/842, intercompany, consolidation), and financial reporting. 413 actions across 14 domains, 43 expansion modules. Constitutional guardrails, adversarial audit, schema migration. Double-entry GL, immutable audit trail, US GAAP.
assess
IncludedAssesses and rates quality 0-10 across multiple dimensions (correctness, maintainability, security, performance, testability, simplicity) with pros/cons analysis. Compares against project conventions and prior decisions from memory. Produces structured evaluation reports with actionable improvement suggestions. Use when evaluating code, designs, architectures, or comparing alternative approaches.
spring-boot-security-jwt
IncludedProvides JWT authentication and authorization patterns for Spring Boot 3.5.x covering token generation with JJWT, Bearer/cookie authentication, database/OAuth2 integration, and RBAC/permission-based access control using Spring Security 6.x. Use when implementing authentication or authorization in Spring Boot applications.
code-hardcode-audit
IncludedDetect hardcoded values, magic numbers, and leaked secrets. TRIGGERS - hardcode audit, magic numbers, PLR2004, secret scanning.