-
Notifications
You must be signed in to change notification settings - Fork 0
Cross Platform Usage
Connor edited this page Jul 3, 2026
·
2 revisions
The curator is Python-based and works best when git and Python are available in the active shell.
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.
mkdir -p ~/.agents/skills ~/.claude/skills
git clone https://github.com/xcl2005/github-skill-curator.git ~/.agents/skills/github-skill-curatorIf Python commands fail, check whether python3 should be used instead of python.
mkdir -p ~/.agents/skills ~/.claude/skills
git clone https://github.com/xcl2005/github-skill-curator.git ~/.agents/skills/github-skill-curatorFor server environments, keep installs user-scoped unless the machine is intentionally shared.
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。
- Home / 首页
- Installation / 安装
- Platform Install Paths / 安装路径区别
- Cross Platform Usage / 跨平台使用
- Discovery and Routing / 发现与路由
- Scoring and Risk Scan / 评分与风险扫描
- Skill Scoring Rubric / Skill 评分标准
- Prompt Injection Risk Examples / 风险例子
- Install Governance / 安装治理
- Safe Installation Workflow / 安全安装流程
- Skill Lifecycle / 生命周期管理
- Why Not Auto Install High Star Skills / 为什么不自动安装高 star skill
- FAQ / 常见问题