Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Morrison-Lab/ai-config --skill heal-skill명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | heal-skill |
| description | Repair misfiring AI skill. |
| user-invocable | true |
| allowed-tools | ["Bash","Read","Write","Edit","Glob","Grep"] |
Close the feedback loop on skill quality: when a skill misbehaves in a real
session, repair it now, while the failure is in front of you. This is the
retrospective complement to authoring a skill and to ums (which records
learnings) — it fixes a skill that already shipped and then misfired.
/heal-skill.Determine which skill misfired. If it's not named, infer it from what just
happened — the slash command invoked, the description that matched, or the
behavior that went wrong. Confirm the skill name with the user if ambiguous.
Read its skills/<name>/SKILL.md in full before changing anything.
Classify the failure — the fix differs by type:
description is too broad,
or its trigger phrases overlap a more general request. Fix: tighten the
description, narrow the trigger phrases, add an explicit "don't fire when…"
note.description lacks the
user's phrasing. Fix: add the missing trigger phrases / synonyms.State the diagnosis in one or two sentences before proposing the fix.
Draft the smallest change that addresses the root cause — usually a few lines
of the frontmatter description or one body step. Show the user the exact diff
and the reasoning. Don't rewrite the whole skill; don't add unrelated polish.
On approval, edit the SKILL.md. Then sanity-check it still parses and is
internally consistent: run scripts/validate-skills.py if the repo has it, and
re-read the trigger against the failure that prompted the heal. If this repo
ships skills via branch + PR, follow that flow rather than committing to main.
If the misfire reflects a pattern worth remembering (a recurring over-trigger,
a phrasing the user favors), hand off to ums to persist it, so the next skill
is authored without the same flaw.
skill-builder — the authoring counterpart; it writes a skill, this skill
repairs one after it ships and misfires.agent-builder — the authoring counterpart for a .claude/agents/*.md
subagent. If a heavy skill's fan-out step misbehaves because the spawned
agent's prompt or tool-scoping is wrong (not the calling skill's body), fix
the agent file via agent-builder's conventions instead of editing the
skill.link-skills — the proactive, whole-corpus cross-link audit; heal-skill
is the single-skill reactive repair, and fixing an ambiguous overlap here
means cross-linking the two skills (exactly what link-skills sweeps for).consolidate-skills — when two skills have real bodies for the same
workflow, that's a merge, not a heal; hand it there.ums / record-learnings — hand off to persist a recurring misfire as a
remembered lesson, so the next skill is authored without the same flaw.consolidate-skills.The idea for this skill (a retrospective "repair the skill that just confused you" loop) is credited in CREDITS.md.