What problem does it solve?
Zig CLI projects quickly become hard to bootstrap, extend, and keep consistent—especially when you need cross-compilation and a typed OpenAPI client without external dependencies.
Core Features & Use Cases
- Scaffold a Zig CLI from scratch: Generates a production-ready project skeleton with command routing, help system, installers, and release-friendly build setup.
- Regenerate an OpenAPI client: Rebuilds
src/generated.zig from an OpenAPI spec and applies Zig 0.15.2-specific fixes so it can compile.
- Extend with new subcommands: Adds routing and AI-readable help entries alongside a new command implementation stub.
- Cross-compile releases: Builds binaries for macOS (arm64/amd64), Linux (amd64/arm64), and Windows (amd64/arm64), and produces checksums.
Quick Start
Ask the AI to run zig-cli bootstrap to scaffold a new Zig CLI project named my-tool with initial subcommands sync and status.