Skip to main content

The universal package manager for AI skills

Project description

Skilz

The universal package manager for AI skills.

Skilz installs and manages AI skills (agents and tools) across multiple AI coding assistants. Think npm install or pip install, but for skills.


Why Skilz?

Today, installing AI skills requires manual file copying, marketplace browsing, or plugin commands that vary by tool. Skilz unifies this experience:

  • One command installs any skill from any Git repository
  • Works everywhere — Claude Code, OpenCode, and more coming
  • Reproducible — pin skills to specific commits for consistent behavior
  • Auditable — manifest files track what's installed and where it came from

Installation

From GitHub (recommended until PyPI release)

# Install directly from GitHub
pip install git+https://github.com/spillwave/skilz-cli.git

# Or clone and install
git clone https://github.com/spillwave/skilz-cli.git
cd skilz-cli
pip install .

From PyPI (coming soon)

# Not yet available - will be:
pip install skilz

Development Setup

git clone https://github.com/spillwave/skilz-cli.git
cd skilz-cli
pip install -e ".[dev]"

For detailed usage instructions, see the User Manual.


Quick Start

# Install a skill
skilz install anthropics/web-artifacts-builder

# List installed skills
skilz list

# Update all skills to latest registry versions
skilz update

# Update a specific skill
skilz update anthropics/web-artifacts-builder

# Remove a skill
skilz remove anthropics/web-artifacts-builder

Each install command:

  1. Resolves the skill from the registry
  2. Clones the repository (or reuses an existing clone)
  3. Checks out the pinned commit
  4. Copies the skill to the appropriate location
  5. Writes a manifest for tracking

User Journey

  1. Browse skills at skillzwave.ai
  2. Copy the install command from the skill page
  3. Run it locally

Example:

The skill page for Web Artifacts Builder shows:

skilz install anthropics/web-artifacts-builder

The string anthropics/web-artifacts-builder is the Skill ID — an opaque identifier that may contain / characters.


How It Works

Skilz reads from a registry file that maps Skill IDs to their Git locations:

Location Scope
.skilz/registry.yaml Project-level
~/.skilz/registry.yaml User-level

The registry tells Skilz exactly where to find each skill and which version to install.


CLI Reference

skilz install <skill-id>

Install a skill from the registry.

skilz install anthropics/web-artifacts-builder        # Auto-detect agent
skilz install anthropics/web-artifacts-builder --agent claude
skilz install anthropics/web-artifacts-builder --agent opencode
skilz install anthropics/web-artifacts-builder --project  # Project-level

skilz list

Show all installed skills with their versions and status.

skilz list                   # All user-level skills
skilz list --project         # Project-level skills
skilz list --agent claude    # Only Claude Code skills
skilz list --json            # Output as JSON

Output example:

Skill                             Version   Installed   Status
────────────────────────────────────────────────────────────────────────
anthropics/web-artifacts-builder  00756142  2025-01-15  up-to-date
spillwave/plantuml                f2489dcd  2025-01-15  outdated

skilz update [skill-id]

Update installed skills to match registry versions.

skilz update                              # Update all skills
skilz update anthropics/web-artifacts     # Update specific skill
skilz update --dry-run                    # Show what would be updated
skilz update --project                    # Update project-level skills

skilz remove <skill-id>

Remove an installed skill.

skilz remove anthropics/web-artifacts     # Prompts for confirmation
skilz remove anthropics/web-artifacts -y  # Skip confirmation
skilz remove plantuml --project           # Remove by name

For complete documentation including troubleshooting and advanced examples, see the User Manual.


Supported Environments

Skilz auto-detects and installs skills into:

Environment Skills Directory
Claude Code ~/.claude/skills/ (personal) or .claude/skills/ (project)
OpenCode ~/.config/opencode/skills/

Registry Format

The registry is a YAML file mapping Skill IDs to their source locations.

Phase 1: Direct Git Installation

# .skilz/registry.yaml

anthropics/web-artifacts-builder:
  git_repo: git@github.com:anthropics/skills.git
  skill_path: /main/skills/web-artifacts-builder/SKILL.md
  git_sha: ee131b98d0e39c27b5e69ba84603b49254b0119d

anthropics/document-generator:
  git_repo: git@github.com:anthropics/skills.git
  skill_path: /main/skills/document-generator/SKILL.md
  git_sha: ee131b98d0e39c27b5e69ba84603b49254b0119d

my-company/internal-skill:
  git_repo: git@github.com:my-company/ai-skills.git
  skill_path: /main/skills/internal-skill/SKILL.md
  git_sha: a1b2c3d4e5f6789012345678901234567890abcd

Phase 2: Plugin and Marketplace Installation

Phase 2 extends the registry to support plugin-based installs:

# .skilz/registry.yaml

some-org/marketplace-skill:
  git_repo: git@github.com:some-org/skills-repo.git
  skill_path: skills/marketplace-skill
  git_sha: ee131b98d0e39c27b5e69ba84603b49254b0119d
  plugin: true
  marketplace_path: /main/.claude-plugin/marketplace.json
  plugin_id: marketplace-skill

Registry Schema Reference

Phase 1 Schema

Each registry entry must include these fields:

Field Type Required Description
git_repo string Yes Git repository URL (SSH or HTTPS)
skill_path string Yes Path to the skill within the repository, including branch or tag
git_sha string Yes Full 40-character Git commit SHA for reproducibility

JSON Schema (Phase 1):

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://skillzwave.ai/schemas/registry-entry-v1.json",
  "title": "Skilz Registry Entry (Phase 1)",
  "description": "Schema for a skill registry entry supporting direct Git installation",
  "type": "object",
  "required": ["git_repo", "skill_path", "git_sha"],
  "additionalProperties": false,
  "properties": {
    "git_repo": {
      "type": "string",
      "description": "Git repository URL (SSH or HTTPS format)",
      "examples": [
        "git@github.com:anthropics/skills.git",
        "https://github.com/anthropics/skills.git"
      ]
    },
    "skill_path": {
      "type": "string",
      "description": "Path to the skill directory or SKILL.md file within the repository. May include branch or tag prefix.",
      "pattern": "^/.*",
      "examples": [
        "/main/skills/web-artifacts-builder/SKILL.md",
        "/v1.2.0/skills/document-generator/SKILL.md"
      ]
    },
    "git_sha": {
      "type": "string",
      "description": "Full 40-character Git commit SHA",
      "pattern": "^[a-f0-9]{40}$",
      "examples": ["ee131b98d0e39c27b5e69ba84603b49254b0119d"]
    }
  }
}

Phase 2 Schema

Phase 2 adds optional fields for plugin-based installation:

Field Type Required Description
git_repo string Yes Git repository URL (SSH or HTTPS)
skill_path string Yes Path to the skill within the repository
git_sha string Yes Full 40-character Git commit SHA
plugin boolean No If true, install via plugin mechanism
marketplace_path string Conditional Path to marketplace.json. Required if plugin: true
plugin_id string Conditional Plugin identifier. Required if plugin: true

JSON Schema (Phase 2):

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://skillzwave.ai/schemas/registry-entry-v2.json",
  "title": "Skilz Registry Entry (Phase 2)",
  "description": "Schema for a skill registry entry supporting both direct Git and plugin-based installation",
  "type": "object",
  "required": ["git_repo", "skill_path", "git_sha"],
  "additionalProperties": false,
  "properties": {
    "git_repo": {
      "type": "string",
      "description": "Git repository URL (SSH or HTTPS format)",
      "examples": [
        "git@github.com:anthropics/skills.git",
        "https://github.com/anthropics/skills.git"
      ]
    },
    "skill_path": {
      "type": "string",
      "description": "Path to the skill directory or SKILL.md file. For plugin installs, this is relative to the plugin root.",
      "examples": [
        "/main/skills/web-artifacts-builder/SKILL.md",
        "skills/marketplace-skill"
      ]
    },
    "git_sha": {
      "type": "string",
      "description": "Full 40-character Git commit SHA",
      "pattern": "^[a-f0-9]{40}$",
      "examples": ["ee131b98d0e39c27b5e69ba84603b49254b0119d"]
    },
    "plugin": {
      "type": "boolean",
      "default": false,
      "description": "If true, install using the plugin/marketplace mechanism"
    },
    "marketplace_path": {
      "type": "string",
      "description": "Path to the marketplace.json file within the repository. Required when plugin is true.",
      "examples": ["/main/.claude-plugin/marketplace.json"]
    },
    "plugin_id": {
      "type": "string",
      "description": "Identifier for the plugin within the marketplace. Required when plugin is true.",
      "examples": ["web-artifacts-builder", "document-skills"]
    }
  },
  "if": {
    "properties": { "plugin": { "const": true } },
    "required": ["plugin"]
  },
  "then": {
    "required": ["marketplace_path", "plugin_id"]
  }
}

Manifest Files

When Skilz installs a skill, it writes a .skilz-manifest.yaml file into the skill directory:

installed_at: 2025-01-15T14:32:00Z
skill_id: anthropics/web-artifacts-builder
git_repo: git@github.com:anthropics/skills.git
skill_path: /main/skills/web-artifacts-builder/SKILL.md
git_sha: ee131b98d0e39c27b5e69ba84603b49254b0119d
skilz_version: 0.1.0

This enables:

  • Auditing — know exactly what's installed and where it came from
  • Upgrade detection — compare installed SHA against registry
  • Troubleshooting — trace issues back to specific commits

Comparison with Native Installation

Method Skilz Claude Plugin System Manual Copy
Single command install
Any Git repository Marketplace only
Private repositories
Version pinning Manual
Install manifest
Cross-agent support
Local development (symlinks) Planned

Roadmap

Phase 1 - Core Installer (Complete)

  • Registry-based skill resolution
  • Direct Git installation
  • Claude Code support
  • OpenCode support
  • Manifest file generation
  • skilz list — show installed skills with status
  • skilz update — update skills to latest pinned SHA
  • skilz remove — uninstall a skill

Phase 2 - Developer Experience (Complete)

  • 92% test coverage
  • Taskfile automation
  • Documentation updates
  • PyPI publishing (pending)

Phase 3 - Plugin Support

  • Plugin and marketplace installation support
  • Extended registry format
  • skilz search — search skillzwave.ai from CLI

Future

  • Cursor support
  • Codex support
  • Gemini support (proof of concept complete)
  • Symlink mode for local development
  • Skill dependency resolution

Alternative Installation Methods (Claude Native)

For reference, Claude Code supports these native installation methods:

Manual file copy:

git clone https://github.com/anthropics/skills.git
cp -r skills/web-artifacts-builder ~/.claude/skills/

Plugin marketplace:

/plugin marketplace add anthropics/skills
/plugin install web-artifacts-builder

Local directory:

/plugin add /path/to/skill-directory

Skilz complements these methods by providing reproducible, cross-environment installs from any Git source.


Development

Skilz uses Task for development automation.

Prerequisites

  • Python 3.10+
  • Task (optional but recommended)

Available Tasks

# Installation
task install          # Install in development mode

# Testing
task test             # Run all tests
task test:fast        # Run tests without verbose output
task coverage         # Run tests with coverage report
task coverage:html    # Generate HTML coverage report

# Code Quality
task lint             # Run linter (ruff)
task lint:fix         # Auto-fix linting issues
task format           # Format code with ruff
task typecheck        # Run type checker (mypy)
task check            # Run all quality checks

# Build & Release
task build            # Build distribution packages
task clean            # Remove build artifacts
task ci               # Run full CI pipeline locally

# Shortcuts
task t                # Alias for test
task c                # Alias for coverage
task l                # Alias for lint
task f                # Alias for format

Manual Commands (without Task)

PYTHONPATH=src python -m pytest tests/ -v              # Run tests
PYTHONPATH=src python -m pytest tests/ --cov=skilz     # Coverage
PYTHONPATH=src python -m skilz --version               # Test CLI

Related Projects


Vision

Skilz brings Anthropic's skills system to all AI agents.

For Claude Code users:

  • Install skills from any GitHub repository
  • Use private repos and local paths
  • Share skills across multiple agents
  • Version-control skills in your own repositories

For other agents:

  • Universal access to Claude's skills ecosystem
  • Use Anthropic marketplace skills via GitHub
  • Progressive disclosure — load skills on demand

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

skilz-0.2.0.tar.gz (136.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

skilz-0.2.0-py3-none-any.whl (33.5 kB view details)

Uploaded Python 3

File details

Details for the file skilz-0.2.0.tar.gz.

File metadata

  • Download URL: skilz-0.2.0.tar.gz
  • Upload date:
  • Size: 136.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for skilz-0.2.0.tar.gz
Algorithm Hash digest
SHA256 36f3b10e37ef74bef981dbcfe33046be8244b53c872d90814a4c651ec5d409e9
MD5 78e93e01a8f114fcada9fce6fc8df7e9
BLAKE2b-256 44cb57c17baa2397fbfeb70b0b7a65a77c5e1b5fb1fde014b7d9235fa6c3b718

See more details on using hashes here.

File details

Details for the file skilz-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: skilz-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 33.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for skilz-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a49f9bb57adc4ca2dabeadaa442bb0b6f0ead712662d77c180f0c2d2197e12e1
MD5 8869d5248ac67486555ac4725658a7f2
BLAKE2b-256 495dd4cacb8c285da3a7e1aa14645ddd6ad1dd660370e4be71291115444e7ce1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page