Skip to content

Installation

Connor edited this page Jul 3, 2026 · 3 revisions

Installation

Install GitHub Skill Curator as a normal Agent Skill for Codex or Claude Code.

For path differences and operating-system notes, see Platform Install Paths and Cross Platform Usage.

Codex

Unix-like shells:

mkdir -p ~/.agents/skills
git clone https://github.com/xcl2005/github-skill-curator.git ~/.agents/skills/github-skill-curator

Windows PowerShell:

New-Item -ItemType Directory -Force -Path "$HOME\.agents\skills"
git clone https://github.com/xcl2005/github-skill-curator.git "$HOME\.agents\skills\github-skill-curator"

Example invocation:

Use $github-skill-curator to find a high-quality reusable PPTX skill, score it, scan risks, and install only if approved.

Claude Code

mkdir -p ~/.claude/skills
git clone https://github.com/xcl2005/github-skill-curator.git ~/.claude/skills/github-skill-curator

Example invocation:

/github-skill-curator find a high-quality reusable PPTX skill and install it if approved

Install a Candidate Skill

Codex:

python scripts/install_skill.py owner/repo --skill-path path/to/skill --agent codex

Claude Code:

python scripts/install_skill.py owner/repo --skill-path path/to/skill --agent claude

Both:

python scripts/install_skill.py owner/repo --skill-path path/to/skill --agent both

Install Paths

Surface Default user-wide path Direct invocation
Codex ~/.agents/skills/github-skill-curator $github-skill-curator ...
Claude Code ~/.claude/skills/github-skill-curator /github-skill-curator ...

Clone this wiki locally