What problem does it solve? Agent-facing CLI tools often fail in predictable ways — missing identity headers, wrong exit codes, ANSI color codes, or interactive prompts that hang agents. This Skill automates the mechanical half of the AXI conformance checklist so these failures are caught before a tool is shipped or merged. ## Core Features & Use Cases - Automated conformance checks: Runs 15 checks against a real binary covering --help, --version, home view identity headers (bin:/description:), structured errors on stdout, exit code 2 for unknown commands and flags, and no ANSI output. - Per-command flag validation: With --command, verifies that subcommands handle --help and unknown flags correctly, listing valid flags in errors. - CI integration: Exits 0 on pass, 1 on failure, and 2 on usage errors, with grep-friendly output (search for ",fail,") for pipelines. - Use Case: After building a new agent-facing CLI, run the checker against the compiled binary before marking the task complete, and add it to CI to prevent regressions. ## Quick Start Ask the agent to run axi-check against your built CLI binary, passing --command for each subcommand, and report any failing checks.