add-command
Installation
SKILL.md
/add-command
Add a new command to the nucleo CLI framework.
Instructions
- Ask for the command name and what it should do
- Create
src/commands/<name>.rsfollowing the pattern insrc/commands/ping.rs(for GET) orsrc/commands/echo.rs(for POST) - Register in
src/commands/mod.rs - Add to the
Commandenum and dispatch insrc/main.rs - Run
cargo checkandcargo test - Optionally add a corresponding MCP tool in
src/mcp/tools.rs