Quick Start Guide
Get up and running with Skilz in just a few minutes. This guide covers installation and basic usage to help you install your first AI skill.
Step 1: Install Skilz
First, install Skilz using pip. Skilz requires Python 3.10 or higher.
pip install skilz Verify the installation:
pip install skilzskilz --version Tip: If you prefer isolated installations, use pipx install skilz instead.
Step 2: Browse Skills
Visit Skillzwave.ai to browse the skill marketplace. Each skill page shows the install command you need.
For example, to install the Theme Factory skill:
pip install skilzskilz install anthropics_skills/theme-factory Step 3: Install Your First Skill
Let's install a skill. Run this command:
pip install skilzskilz install anthropics_skills/algorithmic-art This command:
- Resolves the skill from the registry
- Downloads the skill files from GitHub
- Installs to the default agent (Claude Code)
- Creates a manifest to track the installation
Step 4: Verify Installation
List your installed skills:
pip install skilzskilz list You should see output like:
Installed Skills (claude)
========================
algorithmic-art anthropics_skills/algorithmic-art v1.0.0 abc1234 Common Commands
Here are the most commonly used Skilz commands:
pip install skilz# Install a skill (defaults to Claude Code, user-level)
skilz install owner_repo/skill-name
# Install for a specific agent
skilz install owner_repo/skill-name --agent opencode
skilz install owner_repo/skill-name --agent gemini
# Install at project level (in current directory)
skilz install owner_repo/skill-name --project
# List installed skills
skilz list
skilz list --agent opencode
skilz list --project
# Update all skills to latest versions
skilz update
# Remove a skill
skilz remove owner_repo/skill-name
# Read skill content (for agents without native skill loading)
skilz read skill-name Understanding Skill IDs
Skill IDs follow the format owner_repo/skill-name where underscores separate
the GitHub owner and repository name.
Example Skill IDs
anthropics_skills/theme-factory— Theme Factory skill from anthropics/skills repoSpillwaveSolutions_architect-agent/SKILL— Architect Agent skillmyuser_myrepo/my-skill— Your custom skill
Installing for Different Agents
Skilz supports 14 different AI coding assistants. Use the --agent flag:
pip install skilz# Install for different agents
skilz install owner_repo/skill-name --agent claude # Claude Code (default)
skilz install owner_repo/skill-name --agent opencode # OpenCode
skilz install owner_repo/skill-name --agent codex # Codex
skilz install owner_repo/skill-name --agent gemini # Gemini (project-only)
skilz install owner_repo/skill-name --agent copilot # GitHub Copilot (project-only)
skilz install owner_repo/skill-name --agent cursor # Cursor (project-only) See the Supported Agents guide for the complete list and agent-specific instructions.
User vs Project Level
Skills can be installed at two levels:
User Level (Default)
Installed to ~/.claude/skills/ (or equivalent for other agents).
Available globally for all your projects.
skilz install owner_repo/skill Project Level
Installed to ./.claude/skills/ in the current directory.
Useful for project-specific skills or sandboxed environments.
skilz install owner_repo/skill --project Next Steps
Now that you have Skilz installed, explore these resources:
- Command Reference — Full documentation of all commands
- Configuration Guide — Customize Skilz behavior
- Supported Agents — Agent-specific setup instructions
- Browse Skills — Find skills to install
Need help? Check the Troubleshooting Guide or open an issue on GitHub.