sorcha-cli
Installation
SKILL.md
Sorcha CLI Skill
The Sorcha CLI (sorcha) is a .NET 10 global tool for managing the Sorcha distributed ledger platform. It uses System.CommandLine 2.0.2 for command parsing, Refit for HTTP API clients, and Spectre.Console for rich terminal output.
Project Location
src/Apps/Sorcha.Cli/
├── Commands/ # Command implementations
├── Infrastructure/ # Helpers (ConsoleHelper, ExitCodes, HttpClientFactory)
├── Models/ # Request/Response DTOs for APIs
├── Services/ # Refit interfaces and service contracts
└── Program.cs # Entry point and command registration
Quick Reference
Creating a New Command
Related skills