What problem does it solve? Scripting against the Wavelength wallet daemon requires knowing wavecli's commands, flags, JSON output mode, and exit codes, and guessing from memory leads to broken automation. This Skill grounds every command in the official CLI documentation so shell scripts and automation behave predictably. ## Core Features & Use Cases - Scripted wallet operations: Build shell automation against waved using wavecli with correct flags and subcommands pulled from the docs. - Reliable parsing and error handling: Use JSON output mode instead of scraping human-readable tables, and handle the full documented set of exit codes rather than assuming 0 or 1. - MCP server exposure: Run wavecli mcp serve to expose the daemon's RPCs as tools over stdio for local MCP clients. - Use Case: You need a cron job that pays invoices through your wallet daemon. Use this Skill to fetch the correct wavecli send flags, parse the JSON response, and branch on documented exit codes. ## Quick Start Use the wavelength-cli skill to write a shell script that sends a payment with wavecli and parses the JSON output.