Security & Compliancelow risk
super-skill
Use when the user wants to manage, version, audit, or roll back their Agent Skills, or to review skill candidates mined from past sessions. super-skill is a git-backed package manager for the skills in ~/.agents/skills (and ~/.claude/skills) — it seeds existing skills under version control, explains where each came from, rolls any skill back one command, checks registry integrity, and surfaces recurring task families worth turning into a skill. Triggers include "version my skills", "roll back that skill", "why do I have this skill", "check my skill registry", "what could become a skill".
sdsrss/super-skill·codex/skills/super-skill/SKILL.md
34/ 100推薦值
匯入這個 Skill
選擇你的 coding agent,複製專案級或個人級安裝指令。
匯入目前專案.agents/skills/super-skill
npx skills add https://github.com/sdsrss/super-skill/tree/e13a5b1da1235030e9da480071f2a7e5eb518bbe/codex/skills/super-skill -a codex -y匯入個人環境~/.agents/skills/super-skill
npx skills add https://github.com/sdsrss/super-skill/tree/e13a5b1da1235030e9da480071f2a7e5eb518bbe/codex/skills/super-skill -a codex -g -y匯入目前專案.claude/skills/super-skill
npx skills add https://github.com/sdsrss/super-skill/tree/e13a5b1da1235030e9da480071f2a7e5eb518bbe/codex/skills/super-skill -a claude-code -y匯入個人環境~/.claude/skills/super-skill
npx skills add https://github.com/sdsrss/super-skill/tree/e13a5b1da1235030e9da480071f2a7e5eb518bbe/codex/skills/super-skill -a claude-code -g -y匯入目前專案.agents/skills/super-skill
npx skills add https://github.com/sdsrss/super-skill/tree/e13a5b1da1235030e9da480071f2a7e5eb518bbe/codex/skills/super-skill -a github-copilot -y匯入個人環境~/.copilot/skills/super-skill
npx skills add https://github.com/sdsrss/super-skill/tree/e13a5b1da1235030e9da480071f2a7e5eb518bbe/codex/skills/super-skill -a github-copilot -g -y匯入目前專案.agents/skills/super-skill
npx skills add https://github.com/sdsrss/super-skill/tree/e13a5b1da1235030e9da480071f2a7e5eb518bbe/codex/skills/super-skill -a cursor -y匯入個人環境~/.cursor/skills/super-skill
npx skills add https://github.com/sdsrss/super-skill/tree/e13a5b1da1235030e9da480071f2a7e5eb518bbe/codex/skills/super-skill -a cursor -g -y匯入目前專案.agents/skills/super-skill
npx skills add https://github.com/sdsrss/super-skill/tree/e13a5b1da1235030e9da480071f2a7e5eb518bbe/codex/skills/super-skill -a gemini-cli -y匯入個人環境~/.gemini/skills/super-skill
npx skills add https://github.com/sdsrss/super-skill/tree/e13a5b1da1235030e9da480071f2a7e5eb518bbe/codex/skills/super-skill -a gemini-cli -g -yNative Gemini CLI
gemini skills install https://github.com/sdsrss/super-skill.git --scope workspace --path codex/skills/super-skill⚠ 安裝指令使用開源 skills CLI。執行前請檢查來源、腳本與權限。
Skill 指令
在 GitHub 查看原始檔案 ↗# super-skill (Codex) super-skill is a **personal package manager for Agent Skills**. It does not run your skills — it manages them: version history, provenance, rollback, integrity checks, and opportunity mining. It is driven by the host-agnostic `super-skill` CLI (install with `pipx install super-skill-cli` or `uv tool install super-skill-cli`; the command is `super-skill`). Scope is deliberately the **package-manager** form. The self-learning loop (auto-optimizing skills, external distillation) is a deferred research track and is NOT part of this tool — do not imply it exists. ## When to use - **Version / audit existing skills** → `super-skill seed` imports your skills dir under version control (read-only on the host) → `super-skill list` / `status`. - **"Why do I have this skill / where did it come from"** → `super-skill explain <id>`. - **A skill regressed, undo it** → `super-skill rollback <id> [--to vN]`. - **Registry health** → `super-skill doctor` (read-only); `super-skill doctor --fix` restores git-recoverable versions and re-materializes drift, then re-verifies. - **"What do I keep re-solving that could be a skill"** → `super-skill mine` → `super-skill candidate draft` → review → `super-skill candidate approve <id>`. ## Codex specifics - Skills live in `~/.agents/skills/<name>/SKILL.md` (user-level) or `.agents/skills` (repo-level). super-skill's canonical source is `~/.agents/skills`, which Codex reads directly — zero-copy. - Point super-skill at the Codex skills dir with the `SUPER_SKILL_HOST_SKILLS` environment variable (defaults to `~/.claude/skills`): `SUPER_SKILL_HOST_SKILLS=~/.agents/skills super-skill seed`. - Run the CLI via shell and interpret the output for the user. `seed`/`doctor` (no `--fix`) are read-only; every write path is explicit and reversible.