namespace AnchorCli.Commands; public interface ICommand { string Name { get; } string Description { get; } Task ExecuteAsync(string[] args, CancellationToken ct); }