Problem
store info <name> is a natural first guess but doesn't exist — the command is store stats:
skygent store info arsenal-feed
# Error: Invalid subcommand for skygent
Why this matters for agents
LLM agents map natural language to CLI commands. "Info" is a more common verb than "stats" for getting details about a resource (cf. docker info, kubectl describe, npm info).
Proposed fix
Add info as an alias for store stats. Alternatively, add fuzzy subcommand suggestions to the error: "Unknown subcommand 'info'. Did you mean: stats?"
Problem
store info <name>is a natural first guess but doesn't exist — the command isstore stats:Why this matters for agents
LLM agents map natural language to CLI commands. "Info" is a more common verb than "stats" for getting details about a resource (cf.
docker info,kubectl describe,npm info).Proposed fix
Add
infoas an alias forstore stats. Alternatively, add fuzzy subcommand suggestions to the error: "Unknown subcommand 'info'. Did you mean: stats?"