cli-plugins-skills
The cli-plugins-skills command provides a CLI interface for the OmniRoute platform, enabling users to manage Omni Skills through operations like listing, installing, testing, and removing them. It also handles plugin creation and configuration, manages persistent memory with search and storage capabilities, and accesses a marketplace to discover and install additional skills. Use this skill when you need programmatic control over skill lifecycle management, plugin development, or memory persistence from the command line.
git clone --depth 1 https://github.com/diegosouzapw/OmniRoute /tmp/cli-plugins-skills && cp -r /tmp/cli-plugins-skills/skills/cli-plugins-skills ~/.claude/skills/cli-plugins-skillsSKILL.md
<!-- generated by src/lib/agentSkills/generator.ts; manual edits will be overwritten --> ## Overview Manage Omni Skills (list, install, test, remove), plugins (create, configure), and persistent memory (search, add, clear) from the CLI. ## Quick install ```bash npm install -g omniroute # or: npx omniroute omniroute --version ``` ## Subcommands ### `memory` **Example:** ```bash omniroute memory ``` ### `memory search <query>` **Flags:** - `--type <type>` - `--limit <n>` - `--api-key <key>` - `--token-budget <n>` **Example:** ```bash omniroute memory search <query> ``` ### `memory add` **Flags:** - `--content <text>` - `--file <path>` - `--type <type>` - `--metadata <json>` - `--api-key <key>` **Example:** ```bash omniroute memory add ``` ### `memory clear` **Flags:** - `--type <type>` - `--older-than <duration>` - `--api-key <key>` - `--yes` **Example:** ```bash omniroute memory clear ``` ### `memory list` **Flags:** - `--type <type>` - `--limit <n>` - `--api-key <key>` **Example:** ```bash omniroute memory list ``` ### `memory get <id>` **Example:** ```bash omniroute memory get <id> ``` ### `memory delete <id>` **Flags:** - `--yes` **Example:** ```bash omniroute memory delete <id> ``` ### `memory health` **Example:** ```bash omniroute memory health ``` ### `PLUGIN_NAME` **Example:** ```bash omniroute PLUGIN_NAME ``` ### `plugin plugin` **Example:** ```bash omniroute plugin plugin ``` ### `plugin list` **Example:** ```bash omniroute plugin list ``` ### `plugin install <name>` **Flags:** - `-y, --yes` **Example:** ```bash omniroute plugin install <name> ``` ### `plugin remove <name>` **Flags:** - `-y, --yes` **Example:** ```bash omniroute plugin remove <name> ``` ### `plugin info <name>` **Example:** ```bash omniroute plugin info <name> ``` ### `plugin search [query]` **Example:** ```bash omniroute plugin search [query] ``` ### `plugin update [name]` **Example:** ```bash omniroute plugin update [name] ``` ### `plugin scaffold <name>` **Example:** ```bash omniroute plugin scaffold <name> ``` ### `marketplace` **Example:** ```bash omniroute marketplace ``` ### `skills search [query]` **Flags:** - `--category <c>` - `--tag <t>` - `--limit <n>` - `--sort <s>` **Example:** ```bash omniroute skills search [query] ``` ### `skills info <packageId>` **Example:** ```bash omniroute skills info <packageId> ``` ### `skills install <packageId>` **Flags:** - `--version <v>` - `--enable` - `--yes` **Example:** ```bash omniroute skills install <packageId> ``` ### `skills categories` **Example:** ```bash omniroute skills categories ``` ### `skills featured` **Example:** ```bash omniroute skills featured ``` ### `skills skills` **Example:** ```bash omniroute skills skills ``` ### `skills list` **Flags:** - `--type <type>` - `--enabled` - `--disabled` - `--api-key <key>` **Example:** ```bash omniroute skills list ``` ### `skills get <id>` **Example:** ```bash omniroute skills get <id> ``` ### `skills install` **Flags:** - `--from-file <path>` - `--from-url <url>` - `--type <type>` - `--enable` **Example:** ```bash omniroute skills install ``` ### `skills enable <id>` **Example:** ```bash omniroute skills enable <id> ``` ### `skills disable <id>` **Flags:** - `--yes` **Example:** ```bash omniroute skills disable <id> ``` ### `skills delete <id>` **Flags:** - `--yes` **Example:** ```bash omniroute skills delete <id> ``` ### `skills execute <id>` **Flags:** - `--input <json>` - `--input-file <path>` - `--timeout <ms>` **Example:** ```bash omniroute skills execute <id> ``` ### `skills executions` **Flags:** - `--skill <id>` - `--limit <n>` - `--status <s>` **Example:** ```bash omniroute skills executions ``` ### `skills skillssh` **Example:** ```bash omniroute skills skillssh ``` ### `skills list` **Example:** ```bash omniroute skills list ``` ### `skills install <url>` **Example:** ```bash omniroute skills install <url> ```
Interact with the OmniRoute A2A server from the CLI. Send tasks, inspect skill execution history, and test the JSON-RPC 2.0 agent-to-agent protocol interactively.
Backup and restore OmniRoute data from the CLI. Trigger incremental snapshots, sync to cloud storage, manage backup schedules, and restore from archive files.
Submit and monitor batch inference jobs from the CLI. Upload and manage files for batch processing, retrieve results, and integrate batch pipelines with CI/CD workflows.
Send chat completions, stream responses, and start an interactive REPL session from the CLI. Supports all OmniRoute providers, combo routing, and system prompt configuration.
Configure and test prompt compression from the CLI. Manage RTK filters, Caveman rules, stacked compression modes, and preview compression output with real prompts.
Manage context engineering configurations, RTK filter sets, and conversation sessions from the CLI. Apply context-relay settings and inspect active context pipelines.
View cost breakdowns, token usage, and call logs from the CLI. Filter by provider, model, or date range. Export usage reports and inspect per-connection spending.
Create and run evaluation suites, watch live benchmark progress, view scorecards, compare model performance, and integrate eval runs with CI workflows from the CLI.