Generate, verify, and maintain AI agent guidance (skills, plugins, AGENTS.md) for Claude Code, Cursor, Codex, Copilot, and 10+ AI coding ecosystems — one command turns any CLI or library into an agent-discoverable skill pack.
// Sample C# CLI for skillpack integration testing.
// Prints a --help message so the verify CLI-invocation check passes.
usingSystem;usingSystem.Linq;if(args.Contains("--help")){Console.WriteLine("Usage: sample-csharp [--new <entry>] [--verbose]");return0;}Console.WriteLine("sample-csharp");return0;