Skills commands
Reference for the `revenexx skills` commands — every subcommand with a runnable example.
Auto-generated. This page is generated from the revenexx CLI by
tools/sync-cli-reference.mjs. Don't edit it by hand — your changes will be overwritten.
Every revenexx skills subcommand is listed below with its usage and the flags it accepts, with a ✓ marking required flags. Run revenexx skills <command> --help for the live options.
The skills commands come from a CLI plugin, so they are present only when the CLI is built with that plugin — see the Skills guide for setup and the full walkthrough.
list
List skills visible to your organisation
Bash
revenexx skills list
| Flag | Required | Description |
|---|---|---|
--search <query> | Filter by name, title, description or tags | |
--category <category> | Filter by category | |
--tag <tag> | Filter by tag (repeatable; skills carrying any given tag match) | |
--agent <agent> | Agent whose install directory the 'Installed' column reflects: ${Object.keys(AGENT_TARGETS).join(", ")} | |
--global | Reflect the agent's global (~/) skill directory instead of the project one | |
--skills-endpoint <url> | Override the Skill Registry base URL |
show
Show details for a single skill.
Bash
revenexx skills show [repo] [name]
| Argument | Description |
|---|---|
[repo] | — |
[name] | — |
| Flag | Required | Description |
|---|---|---|
--readme | Also print the skill's README | |
--agent <agent> | Agent whose install directory the 'Installed' line reflects: ${Object.keys(AGENT_TARGETS).join(", ")} | |
--global | Reflect the agent's global (~/) skill directory instead of the project one | |
--skills-endpoint <url> | Override the Skill Registry base URL |
add
Install (or update) a skill into an agent's skill directory.
Bash
revenexx skills add <repo> <name>
| Argument | Description |
|---|---|
<repo> | — |
<name> | — |
| Flag | Required | Description |
|---|---|---|
--agent <agent> | Target agent: ${Object.keys(AGENT_TARGETS).join(", ")} | |
--version <version> | Skill version to install (defaults to latest) | |
--global | Install into the agent's global (~/) skill directory instead of the project | |
--skills-endpoint <url> | Override the Skill Registry base URL |