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 ...

中文说明

GitHub Skill Curator 可以作为普通 Agent Skill 安装到 Codex 或 Claude Code。

Codex 用户级安装路径:

~/.agents/skills/github-skill-curator

Claude Code 用户级安装路径:

~/.claude/skills/github-skill-curator

调用方式不同:

使用环境 调用方式
Codex $github-skill-curator ...
Claude Code /github-skill-curator ...

安装候选 skill 时,不要默认安装整个 awesome list。应先评分、扫描风险,再在用户确认后安装选中的 skill folder。

Clone this wiki locally