CLI
OPEN_SOURCE_SKILL_INSTALLER
Scan your local AI agents, push your skill inventory to the SkillsCenter dashboard, and replicate skills across agents — all from the terminal.
01.INSTALLATION
Requires Node.js ≥ 20.
Install globally with npm (requires Node.js ≥ 20):
$ npm install -g @skillscenter/cliOr run without installing (always uses latest version):
$ npx @skillscenter/cli@latest scan02.QUICK_START
- 01
AUTHENTICATE
$ skillscenter auth set-token <your-token> - 02
SCAN_YOUR_AGENTS
$ skillscenter scan - 03
PUSH_INVENTORY_TO_DASHBOARD
$ skillscenter push
Get your API token from SETTINGS → API_TOKEN.
03.COMMAND_REFERENCE
skillscenter scan [options]Detect all installed AI agents on this machine and list their skills and MCP servers.
| Option | Description |
|---|---|
--dry-run | Print detected agents without saving anything |
--quiet | Suppress informational output |
Example
$ skillscenter scan --dry-runskillscenter push [options]Push your scanned agent inventory to the SkillsCenter dashboard. Requires an API token.
| Option | Description |
|---|---|
--token <token> | Override the stored API token for this push |
--dry-run | Validate the payload without sending it |
Example
$ skillscenter push --dry-runskillscenter install <slug> --to <agent>Copy a single skill (by slug) into the skills directory of another agent.
| Option | Description |
|---|---|
--to <agent> | Target agent type. One of: claude-code, codex-cli, gemini-cli, copilot-cli, opencode, cursor |
Example
$ skillscenter install commit --to codex-cliskillscenter install-all --from <agent> --to <agent>Copy every skill from one agent's skills directory into another agent's skills directory in a single command.
| Option | Description |
|---|---|
--from <agent> | Source agent type |
--to <agent> | Target agent type |
Example
$ skillscenter install-all --from claude-code --to codex-cliskillscenter auth set-token <token>Save your SkillsCenter API token locally so you don't need to pass --token on every push.
Example
$ skillscenter auth set-token sk_live_abc123skillscenter hook <subcommand>Manage post-scan hooks that automatically push your inventory whenever you run a scan.
skillscenter hook install --agent <agent>Install a post-scan hook for the given agent so inventory is pushed automatically after each scan.
$ skillscenter hook install --agent claude-codeskillscenter hook uninstallRemove the installed hook.
$ skillscenter hook uninstallskillscenter hook statusShow whether the hook is installed and for which agent.
$ skillscenter hook statusskillscenter hook runManually trigger the hook (scan + push) without waiting for the agent.
$ skillscenter hook run04.SUPPORTED_AGENTS
The CLI automatically detects the following AI coding agents:
| Agent | Skills path |
|---|---|
claude-code | ~/.claude/skills/ |
codex-cli | ~/.codex/skills/ |
gemini-cli | ~/.gemini/skills/ |
copilot-cli | ~/.copilot/skills/ |
opencode | ~/.opencode/skills/ |
cursor | ~/.cursor/skills/ |