-
Notifications
You must be signed in to change notification settings - Fork 1
CLI Reference
flitzrrr edited this page Mar 14, 2026
·
1 revision
The Agent Skills CLI is distributed via npm and run with npx.
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:
- Clones the repository with all submodules
- Detects installed platforms (or uses the specified one)
- Creates symlinks from the skills directory to each platform's config location
- Validates the installation
npx @flitzrrr/agent-skills updatePulls the latest changes and new skills. Equivalent to git pull && git submodule update --recursive.
npx @flitzrrr/agent-skills uninstall [platform]Removes all symlinks created during installation. Does not delete the cloned repository.
npx @flitzrrr/agent-skills sync-docsRegenerates documentation files (README skill count, catalog data).
| Flag | Description |
|---|---|
--help |
Show help text |
--version |
Show package version |
| Code | Meaning |
|---|---|
| 0 | Success |
| 1 | Unknown platform or general error |
# 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