
System.CommandLine CLI
OfficialFreeStreamline your .NET CLI command development.
Free · Opens the source repo
What System.CommandLine CLI does
The System.CommandLine CLI skill is designed for developers working with .NET applications that utilize the System.CommandLine library. This skill provides a comprehensive set of guidelines and best practices for creating, modifying, and reviewing command-line interface (CLI) commands. It is particularly useful for those targeting .NET 8 or later, as well as .NET Standard 2.0 implementations. By following the structured rules and patterns outlined in this skill, developers can ensure their CLI commands are well-organized and maintainable.
This skill emphasizes the importance of a project-specific command base class, which helps centralize shared behavior and conventions across commands. It also provides clear instructions on defining options and arguments, setting up command handlers, and organizing command groups. Each rule is crafted to guide developers in implementing a consistent architecture that enhances the usability and clarity of their CLI applications.
Additionally, the skill covers essential practices such as user confirmation for destructive operations and the use of dependency injection for service classes. By adhering to these principles, developers can create robust and user-friendly command-line tools that are easy to extend and maintain. This skill is particularly beneficial for .NET developers who are focused on building command-line applications and need a reliable reference to streamline their workflow.
When to use it
Use this skill when you are developing or maintaining a CLI application using the System.CommandLine library in .NET.
When not to use it
This skill is not suitable for general C# coding, web APIs, UI work, or non-CLI projects.
What you can build with it
Creating a New CLI Command
When you need to add a new command to your .NET CLI application, follow the structured guidelines to ensure it integrates seamlessly.
Modifying Existing Commands
If you need to change the behavior or options of an existing command, this skill will help you maintain consistency and best practices.
Reviewing Command Structure
Use this skill to evaluate and improve the architecture of your CLI commands, ensuring they adhere to established conventions.
How to install System.CommandLine CLI
View source1. Install with the skills CLI
npx skills add github/awesome-copilot/system-commandline-cli --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by githubSystem.CommandLine CLI Developer Skill
You are working on a .NET CLI application built with System.CommandLine v2.x.x, targeting .NET 8 or later or any .NET Standard 2.0 implementation, including .NET Framework 4.6.1 or later and .NET Core 2.0 or later. Follow these rules and patterns strictly when creating or modifying CLI commands.
Architecture Overview
<CLI Project>/
├── Program.cs # Entry point and command invocation
└── Commands/
├── CommandBase.cs # Base class for all commands
├── GlobalOptions.cs # Defines global options for the CLI
├── RootCommand.cs # Registers top-level commands
└── <Group>/ # One folder per command group
├── <Group>Command.cs # Parent command that registers its children
└── <Group><Verb>Command.cs # Leaf command with its handler
RULE 1 — Prefer a Project-Specific Command Base Class
Prefer defining a project-specific abstract CommandBase that inherits from System.CommandLine.Command. Concrete commands should inherit from this base class so shared behavior and conventions remain centralized.
internal abstract class CommandBase : Command
{
protected CommandBase(string name, string? description = null)
: base(name, description)
{
}
}
internal sealed class MyCommand : CommandBase
{
public MyCommand()
: base("command-name", "Help text shown in --help")
{
this.SetAction(CommandHandler);
}
private async Task<int> CommandHandler(
ParseResult parseResult,
CancellationToken cancellationToken)
{
// implementation
return 0;
}
}
When the project already has a command base class, preserve its established conventions. Otherwise, introduce one when commands need shared behavior; simple applications may inherit from Command directly when a base class adds no meaningful value.
RULE 2 — Options and Arguments
Defining Options
private readonly Option<string> _myOption;
// In constructor:
_myOption = new Option<string>("--my-option")
{
Description = "Clear description of what this option does",
Required = true, // or false
};
_myOption.Aliases.Add("-m"); // Add a short alias
this.Options.Add(_myOption);
Defining Arguments (positional)
private readonly Argument<string> _fileArgument;
// In constructor:
_fileArgument = new Argument<string>("file")
{
Description = "Path to the input file"
};
this.Arguments.Add(_fileArgument);
Reading Values in Handlers
// Required option/argument — use GetValue:
var value = parseResult.GetValue(_myOption);
RULE 3 — Command Handler Pattern
Handlers are async methods wired via SetAction:
this.SetAction(CommandHandler);
private async Task<int> CommandHandler(ParseResult parseResult, CancellationToken cancellationToken)
{
// 1. Read option/argument values
// 2. Load session settings (if needed)
// 3. Validate configuration early — fail fast with clear error
// 4. Execute business logic
// 5. Output results with Console
return 0; // or non-zero exit code
}
RULE 4 — Command Group (Parent with Subcommands)
A group command registers children but does not call SetAction:
internal class MyGroupCommand : CommandBase
{
public MyGroupCommand()
: base("mygroup", "Manages my-group resources")
{
this.Subcommands.Add(new MyGroupListCommand());
this.Subcommands.Add(new MyGroupCreateCommand());
this.Subcommands.Add(new MyGroupDeleteCommand());
}
}
A command may define both an action and subcommands when the direct invocation has meaningful behavior.
RULE 5 — Registration
-
Top-level commands → register in
RootCommand.cs:this.Subcommands.Add(new MyGroupCommand()); -
Subcommands → register inside the parent command's constructor:
this.Subcommands.Add(new MyGroupCreateCommand());
RULE 6 — User Confirmation for Destructive Operations
Console.WriteLine("Are you sure you want to delete X? This action cannot be undone. (yes/no)");
var confirmation = Console.ReadLine();
if (confirmation?.ToLower() != "yes" && confirmation?.ToLower() != "y")
{
Console.WriteLine("Operation cancelled.");
return 0;
}
RULE 7 — Command Logic
The logic of each command should be in one or more service classes that implement interfaces. The command receives interfaces through dependency injection (DI), not concrete implementations. The command handler should not contain business logic. The command handler should be thin, responsible only for:
- Parsing input
- Validating configuration
- Calling the service method
- Outputting results
Service class should be injected in the command constructor via DI, not instantiated directly.
RULE 8 — Dependency Injection
Services are registered in Program.cs:
serviceCollection.TryAddSingleton<IMyService, MyServiceImpl>();
Add a convenience extension in ServiceProviderExtensions.cs:
public static IMyService GetMyService(this ServiceProvider provider)
=> provider.GetRequiredService<IMyService>();
RULE 9 — Naming Conventions
| Element | Convention | Example |
|---|---|---|
| CLI command name | lowercase kebab-case | agent create, set show |
| Command class | PascalCase + Command suffix | AgentCreateCommand |
| Option field | _camelCaseOption (private readonly) | _projectNameOption |
| Option long name | --kebab-case | --project-name |
| Option short alias | -x (1-2 chars) | -p, -id, -md |
| Argument field | _camelCaseArgument | _fileArgument |
| Namespace | MyProject.Commands.<Group> | MyProject.Commands.Agent |
| Folder | Commands/<Group>/ | Commands/Agent/ |
RULE 10 — Visibility
- All command classes are
internal.
RULE 11 — Global Options and Validation
Define options shared by the entire command tree once in GlobalOptions.cs. Reuse the same
Option<T> instance when registering, validating, and reading the option.
internal static class GlobalOptions
{
public static readonly Option<string> EndpointOption = CreateEndpointOption();
private static Option<string> CreateEndpointOption()
{
var option = new Option<string>(...);
// add option description, aliases, and Required flag
// Add validation to the option's Validators collection
return option;
}
}
Using Global Options in a Command
Expose repeated parsing or conversion through protected CommandBase helpers:
/// <summary>Resolves the validated endpoint from the global option.</summary>
protected Uri GetEndpoint(ParseResult parseResult)
{
var baseUrl = parseResult.GetValue(GlobalOptions.EndpointOption)!;
return new Uri(baseUrl);
}
/// <summary>Resolves the optional key from the global option.</summary>
protected string? GetKey(ParseResult parseResult)
=> parseResult.GetValue(GlobalOptions.KeyOption);
Consume those helpers from the leaf command's handler. The command must not add the global options to its own
Options collection; recursive registration on the root already makes them available in its ParseResult.
private async Task<int> CommandHandler(
ParseResult parseResult,
CancellationToken cancellationToken)
{
var endpoint = GetEndpoint(parseResult);
var key = GetKey(parseResult);
...
return 0;
}
Read a global option directly in a leaf handler only when no shared conversion or fallback logic is needed.
Always use the static GlobalOptions symbol; never create a second Option<T> with the same aliases.
Follow these requirements:
- Set
Recursive = trueso the option is accepted for every descendant command. - Add each global option exactly once to
RootCommand.Options; do not duplicate it on leaf commands. - Read values through the shared symbol, for example
parseResult.GetValue(GlobalOptions.Endpoint), preferably behind aCommandBasehelper. - Add validation to the option's
Validatorscollection so invalid input becomes a parse error and the command handler is not invoked. Do not rely on exceptions fromnew Uri(...)or downstream services. - Validate endpoint options as nonblank absolute
httporhttpsURIs. Reject unsupported schemes, relative URIs, query strings, and fragments because appending a fixed endpoint path would change their meaning. - For optional secret options such as
--key, allow omission but reject an explicitly supplied blank or whitespace-only value. Validate the value without logging, displaying, trimming, or otherwise mutating it. - Keep validation separate from derivation.
- Use stable, actionable validation messages that name the option and the accepted format.
- Test global options through the root parser, including the default, explicit valid values, invalid values, and placement before and after a representative subcommand. Verify invalid input prevents handler execution.
RULE 12 — Checklist for New Commands
When creating a new command, verify:
- ✅ Inherits from the project’s command base class when one exists or provides meaningful shared behavior
- ✅ Constructor passes
name,descriptionto base - ✅ All options have
Description,Required - ✅ Handler wired via
this.SetAction(CommandHandler) - ✅ Handler signature:
async Task<int> CommandHandler(ParseResult, CancellationToken) - ✅ Command registered in parent (RootCommand or group command)
- ✅ Class is
internal - ✅ File placed in
Commands/<Group>/folder - ✅ Namespace matches folder:
MyProject.CLI.Commands.<Group>
Frequently asked questions about System.CommandLine CLI
Similar skills
Python PyPI Package Builder
Streamline the process of creating and publishing Python packages.
Minecraft Plugin Development
Streamline your Minecraft server plugin creation.
MCP Server Builder
Easily build .NET MCP servers with the latest standards.
CommunityToolkit.Mvvm Messenger
Decoupled communication for ViewModels in .NET applications.
MVVM Toolkit DI
Streamline ViewModel integration with Dependency Injection in .NET.
MCP Apps Builder
Essential guidelines for MCP server development.
