Skip to content

Installation

flitzrrr edited this page Mar 14, 2026 · 1 revision

Installation

One-Command Install

npx @flitzrrr/agent-skills install

The CLI automatically detects which AI platforms are installed on your system and symlinks all skills to the correct directories.

What the CLI does

  1. Detects platforms -- Scans for Claude Code, Antigravity, Codex, OpenCode, Cursor, and Lovable
  2. Clones the repository -- Fetches the latest skills with all submodules
  3. Creates symlinks -- Links each skill to the platform's configuration directory
  4. Validates -- Confirms all skills are accessible

Manual Installation

If you prefer manual setup or the CLI doesn't support your platform:

# Clone with submodules
git clone --recursive https://github.com/flitzrrr/agent-skills.git

# Skills are in the skills/ directory, each is a symlink to vendor/
ls skills/

Then symlink or copy the skills/ directory to your platform's config location (see Supported Platforms).

Updating

npx @flitzrrr/agent-skills update

This pulls the latest changes, including any new skills discovered by the weekly pipeline.

Uninstalling

npx @flitzrrr/agent-skills uninstall

Removes all symlinks created during installation. The repository itself is not deleted.

Requirements

  • Node.js 18+ (for the npx CLI)
  • Git (for cloning and submodule management)
  • At least one supported AI platform installed

Verifying Installation

After installing, verify that skills are available by asking your AI assistant:

"List all available skills"

or

"Use the anthropic-frontend-design skill to review this component"

If the assistant recognizes the skill, installation was successful.

Clone this wiki locally