一键导入
skill-install
Fetch and install skills from GitHub, URLs, or skill ecosystems. Use when asked to install, add, fetch, or ingest a skill.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Fetch and install skills from GitHub, URLs, or skill ecosystems. Use when asked to install, add, fetch, or ingest a skill.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when opening a PR and driving it to green CI — push the branch, write a high-level PR description, watch checks, fix failures, and keep looping until green; also use when an already-open PR gets new commits.
Use when the user starts, resumes, switches, saves, or recalls a named task or ongoing work across sessions (e.g. "remember this", "continue X", "what was I doing on Y", "track this task").
Git commit workflow. Load when finishing any code-change task (after verification) to commit and push, or when explicitly staging/committing.
Use when modifying or adding a transform, loss, model, method, package, task-model, config, docs page, or example in a Lightly AG repo (lightly-ssl or lightly-train) and you need repo-specific conventions.
Spawn a subagent to run a task. Use when you want to delegate work to a separate pi instance.
Use when configuring or replicating LT-DETR v2 (ltdetrv2-s/m/l/x) COCO benchmarks via the lightly-train wrapper — model alias map, global vs per-rank batch size, recipe invariants, ECDet config mapping, cluster pins, and common gotchas.
| name | skill-install |
| description | Fetch and install skills from GitHub, URLs, or skill ecosystems. Use when asked to install, add, fetch, or ingest a skill. |
mkdir -p ~/.pi/agent/skills/NAME
curl -s "https://raw.githubusercontent.com/USER/REPO/main/skills/NAME/SKILL.md" -o ~/.pi/agent/skills/NAME/SKILL.md
curl -s "https://api.github.com/repos/USER/REPO/contents/skills" | jq -r '.[].download_url' | while read url; do
NAME=$(echo "$url" | sed -n 's|.*/skills/\([^/]*\)/SKILL\.md.*|\1|p')
[ -n "$NAME" ] && mkdir -p ~/.pi/agent/skills/$NAME && curl -s "$url" -o ~/.pi/agent/skills/$NAME/SKILL.md
done
curl -s "https://..." -o ~/.pi/agent/skills/NAME/SKILL.md
npx skills add USER/REPO
ls ~/.pi/agent/skills/NAME/SKILL.mdhead -3 has name: and description:name: X == directory X| Source | URL |
|---|---|
| Superpowers | obra/superpowers |
| pi-skills | badlogic/pi-skills |
| Raw GitHub | https://raw.githubusercontent.com/USER/REPO/main/... |
When installing from elsewhere, always adapt to your style:
skills/<name>/SKILL.md first.curl -s "https://raw.githubusercontent.com/USER/REPO/main/skills/NAME/SKILL.md" -o ~/.pi/agent/skills/NAME/SKILL.md