What problem does it solve?
This skill helps software engineers create command-line interfaces in .NET using the Albatross.CommandLine library, reducing boilerplate and guiding proper patterns for verbs, options, arguments, and handlers.
Core Features & Use Cases
- Roslyn-based source generator integration that wires up [Verb] declarations with their handlers, enabling automatic command registration and execution.
- Pre-built packaging patterns and bootstrap guidance for common CLI apps, including Program.cs wiring, dependency injection, and optional defaults.
- Enforced best practices: namespaces for all types, consistent naming conventions, and support for subcommands, reusable option/argument classes, and validation hooks.
Quick Start
Create a new console app targeting net10.0, install Albatross.CommandLine, define a Verb with a Params class and a Handler, then build and run the app.