What problem does it solve? Developers reading or modifying the Zeus wallet codebase often know React Native but not Lightning protocol theory (or vice versa), making funds-touching code hard to understand and risky to change. This Skill maps each protocol concept to the exact Zeus file that implements it, including Zeus-specific quirks and verified constants. ## Core Features & Use Cases - Protocol-to-code mapping: Covers BOLT11 invoice decoding, MPP/AMP/keysend payments, LNURL flows, ZEUS Pay/Zaplocker, LSP integrations (Flow 2.0, LSPS0/1/7), Cashu ecash, Nostr Wallet Connect, Boltz swaps, and on-chain operations, each tied to concrete files like utils/Bolt11Utils.ts and stores/LSPStore.ts. - Zeus-specific gotchas: Documents load-bearing details such as the Bolt11 LRU cache with lazy secp256k1 getters, the max_parts default discrepancy, the CPFP output-index flip retry, and the merchant QR 500-character regex cap. - Input router documentation: Explains the detector ordering in utils/handleAnything.ts and the rules for safely adding new detectors. - Use Case: When reviewing a pull request that touches payment sending, load this Skill to understand why sendPaymentInternal defaults max_parts to '1' while the PaymentRequest screen passes '16', avoiding an accidental behavior change. ## Quick Start Ask the AI to explain how Zeus handles BOLT11 invoice decoding and what pitfalls to avoid when working with decoded invoice objects.