Skip to content

Cross Platform Usage

Connor edited this page Jul 3, 2026 · 2 revisions

Cross Platform Usage

The curator is Python-based and works best when git and Python are available in the active shell.

Windows PowerShell

Create skill directories:

New-Item -ItemType Directory -Force -Path "$HOME\.agents\skills"
New-Item -ItemType Directory -Force -Path "$HOME\.claude\skills"

Install:

git clone https://github.com/xcl2005/github-skill-curator.git "$HOME\.agents\skills\github-skill-curator"

Use quoted paths when a workspace contains spaces or non-ASCII characters.

macOS

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

If Python commands fail, check whether python3 should be used instead of python.

Linux

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

For server environments, keep installs user-scoped unless the machine is intentionally shared.

Common Checks

git --version
python --version
python scripts/audit_skills.py audit --dest "$HOME/.agents/skills"

On Windows PowerShell:

git --version
python --version
python scripts/audit_skills.py audit --dest "$HOME\.agents\skills"

中文说明

这个 Skill 主要依赖 Python 和 git。Windows、macOS、Linux 都可以使用,但命令行路径写法不同。

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"

macOS / Linux:

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

如果 workspace 路径包含空格或中文,Windows 下建议始终给路径加引号。

常见检查:

git --version
python --version

如果 macOS / Linux 上 python 不可用,可以尝试 python3

Clone this wiki locally