SkillsCenter wizardSkillsCenter.dev
[SIGN_IN]

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/cli

Or run without installing (always uses latest version):

$ npx @skillscenter/cli@latest scan

02.QUICK_START

  1. 01

    AUTHENTICATE

    $ skillscenter auth set-token <your-token>
  2. 02

    SCAN_YOUR_AGENTS

    $ skillscenter scan
  3. 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.

OptionDescription
--dry-runPrint detected agents without saving anything
--quietSuppress informational output

Example

$ skillscenter scan --dry-run
skillscenter push [options]

Push your scanned agent inventory to the SkillsCenter dashboard. Requires an API token.

OptionDescription
--token <token>Override the stored API token for this push
--dry-runValidate the payload without sending it

Example

$ skillscenter push --dry-run
skillscenter install <slug> --to <agent>

Copy a single skill (by slug) into the skills directory of another agent.

OptionDescription
--to <agent>Target agent type. One of: claude-code, codex-cli, gemini-cli, copilot-cli, opencode, cursor

Example

$ skillscenter install commit --to codex-cli
skillscenter 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.

OptionDescription
--from <agent>Source agent type
--to <agent>Target agent type

Example

$ skillscenter install-all --from claude-code --to codex-cli
skillscenter 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_abc123
skillscenter 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-code
skillscenter hook uninstall

Remove the installed hook.

$ skillscenter hook uninstall
skillscenter hook status

Show whether the hook is installed and for which agent.

$ skillscenter hook status
skillscenter hook run

Manually trigger the hook (scan + push) without waiting for the agent.

$ skillscenter hook run

04.SUPPORTED_AGENTS

The CLI automatically detects the following AI coding agents:

AgentSkills path
claude-code~/.claude/skills/
codex-cli~/.codex/skills/
gemini-cli~/.gemini/skills/
copilot-cli~/.copilot/skills/
opencode~/.opencode/skills/
cursor~/.cursor/skills/