Skip to content

CLI Reference

flitzrrr edited this page Mar 14, 2026 · 1 revision

CLI Reference

The Agent Skills CLI is distributed via npm and run with npx.

Commands

install

npx @flitzrrr/agent-skills install [platform]

Installs skills for the specified platform, or auto-detects all installed platforms.

Arguments:

  • platform (optional): claude, antigravity, codex, opencode, cursor, lovable

What it does:

  1. Clones the repository with all submodules
  2. Detects installed platforms (or uses the specified one)
  3. Creates symlinks from the skills directory to each platform's config location
  4. Validates the installation

update

npx @flitzrrr/agent-skills update

Pulls the latest changes and new skills. Equivalent to git pull && git submodule update --recursive.

uninstall

npx @flitzrrr/agent-skills uninstall [platform]

Removes all symlinks created during installation. Does not delete the cloned repository.

sync-docs

npx @flitzrrr/agent-skills sync-docs

Regenerates documentation files (README skill count, catalog data).

Global Options

Flag Description
--help Show help text
--version Show package version

Exit Codes

Code Meaning
0 Success
1 Unknown platform or general error

Examples

# Install for all detected platforms
npx @flitzrrr/agent-skills install

# Install only for Claude Code
npx @flitzrrr/agent-skills install claude

# Update to latest skills
npx @flitzrrr/agent-skills update

# Show version
npx @flitzrrr/agent-skills --version

Clone this wiki locally