Find an operation
Describe the result you want. Uni-CLI searches its local catalog and returns the closest commands with their interface, effect, and target.
bash
unicli search "top Hacker News stories"A result includes a command you can run directly:
text
hackernews top Hacker News top stories
unicli hackernews topInspect the command
Use describe to see arguments, authentication, execution surface, and examples.
bash
unicli describe hackernews topAdd --full when you need the complete operation contract.
bash
unicli describe hackernews top --full -f jsonRun it
bash
unicli hackernews top --limit 5 -f jsonOutput is Markdown in a terminal or pipe. Use -f json, yaml, csv, or compact when another program will read it.
Narrow the search
Search can filter results before they reach the agent context.
bash
unicli search "send a message" --effect send_message
unicli search "inspect a desktop app" --surface desktop
unicli search "read through an API" --operator structured-apiSee the operation catalog to browse by site, command, or interface.