📦 CLI Tool

$ npx skills add

Install agent skills onto your coding agents from any git repository.

Supports:
Amp Antigravity Claude Code Clawdbot Codex Cursor Droid Gemini CLI GitHub Copilot Goose Kilo Code Kiro CLI OpenCode Roo Code Trae Windsurf

# Quick Start

terminal
npx skills add <owner/repo>
or
terminal
npx add-skill add <owner/repo>

# What are Agent Skills?

Agent skills are reusable instruction sets that extend your coding agent's capabilities. They're defined in SKILL.md files with YAML frontmatter containing a name and description.

📝

Release Notes

Generate release notes from git history automatically

🔀

PR Conventions

Create PRs following your team's conventions

🔗

Integrations

Integrate with external tools like Linear, Notion, etc.

# Available Agents

Skills can be installed to any of these supported agents:

Amp amp
Project: .agents/skills/
Global: ~/.config/agents/skills/
Antigravity antigravity
Project: .agent/skills/
Global: ~/.gemini/antigravity/skills/
Claude Code claude-code
Project: .claude/skills/
Global: ~/.claude/skills/
Clawdbot clawdbot
Project: skills/
Global: ~/.clawdbot/skills/
Codex codex
Project: .codex/skills/
Global: ~/.codex/skills/
Cursor cursor
Project: .cursor/skills/
Global: ~/.cursor/skills/
Droid droid
Project: .factory/skills/
Global: ~/.factory/skills/
Gemini CLI gemini-cli
Project: .gemini/skills/
Global: ~/.gemini/skills/
GitHub Copilot github-copilot
Project: .github/skills/
Global: ~/.copilot/skills/
Goose goose
Project: .goose/skills/
Global: ~/.config/goose/skills/
Kilo Code kilo
Project: .kilocode/skills/
Global: ~/.kilocode/skills/
Kiro CLI kiro-cli
Project: .kiro/skills/
Global: ~/.kiro/skills/
OpenCode opencode
Project: .opencode/skills/
Global: ~/.config/opencode/skills/
Roo Code roo
Project: .roo/skills/
Global: ~/.roo/skills/
Trae trae
Project: .trae/skills/
Global: ~/.trae/skills/
Windsurf windsurf
Project: .windsurf/skills/
Global: ~/.codeium/windsurf/skills/

# Creating Skills

Skills are directories containing a SKILL.md file with YAML frontmatter:

SKILL.md
---
name: my-skill
description: What this skill does and when to use it
---

# My Skill

Instructions for the agent to follow when this skill is activated.

## When to Use

Describe the scenarios where this skill should be used.

## Steps

1. First, do this
2. Then, do that

Required Fields

  • name: Unique identifier (lowercase, hyphens allowed)
  • description: Brief explanation of what the skill does

# Compatibility

Skills are generally compatible across agents since they follow a shared Agent Skills specification.

# Related Links