用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/nathanvale/claude-code-config --skill heal-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Creating or changing tests, fixtures, mocks, snapshots, test helpers, or test harnesses; require a pre-write Test Design Brief.
Browser tasks through Warm Chrome; no Chrome for Testing.
Explicit whole-suite test architecture review, visual candidates, or proof-boundary improvements.
正在显示 SKILL.md
| name | heal-skill |
| description | Fix incorrect SKILL.md files when a skill has wrong instructions or outdated API references. |
| role | quality-gate |
| argument-hint | [optional: specific issue to fix] |
| allowed-tools | ["Read","Edit","Bash(ls:*)","Bash(git:*)"] |
| disable-model-invocation | true |
skills/skill-author/SKILL.md.skills/skill-author/references/skill-design-decision-runbook.md.heal-skill applies in-context instruction repairs discovered during a skill's own execution. It does not own the heal/repair contract — skill-author does. For anything beyond a direct instruction fix (role, shape, owner-path, safety-gate, or reusable-rule change), defer to skill-author.
Update a skill's SKILL.md and related files based on corrections discovered during execution.
Analyze the conversation to detect which skill is running, reflect on what went wrong, propose specific fixes, get user approval, then apply changes with optional commit.
Skill detection: !ls -1 ./skills/*/SKILL.md | head -5
skills/skill-author/references/skill-design-decision-runbook.md before any edit (AGENTS.md hard rule: never heal a SKILL.md without it)Read skills/skill-author/references/skill-design-decision-runbook.md before touching any SKILL.md. AGENTS.md hard rule: never author, review, heal, or repair a SKILL.md before reading the runbook. Skipping it leaks copied contracts and multi-workflow drift.
Identify the skill from conversation context:
Set: SKILL_NAME=[skill-name] and SKILL_DIR=./skills/$SKILL_NAME
If unclear, ask the user.
Focus on $ARGUMENTS if provided, otherwise analyze broader context.
Determine:
ls -la $SKILL_DIR/
ls -la $SKILL_DIR/references/ 2>/dev/null
ls -la $SKILL_DIR/scripts/ 2>/dev/null
Present changes in this format:
**Skill being healed:** [skill-name]
**Issue discovered:** [1-2 sentence summary]
**Root cause:** [brief explanation]
**Files to be modified:**
- [ ] SKILL.md
- [ ] references/[file].md
- [ ] scripts/[file].py
**Proposed changes:**
### Change 1: SKILL.md - [Section name]
**Location:** Line [X] in SKILL.md
**Current (incorrect):**
[exact text from current file]
**Corrected:**
[new text]
**Reason:** [why this fixes the issue]
[repeat for each change across all files]
**Impact assessment:**
- Affects: [authentication/API endpoints/parameters/examples/etc.]
**Verification:**
These changes will prevent: [specific error that prompted this]
Should I apply these changes?
1. Yes, apply and commit all changes
2. Apply but don't commit (let me review first)
3. Revise the changes (I'll provide feedback)
4. Cancel (don't make changes)
Choose (1-4):
Wait for user response. Do not proceed without approval.
Only after approval (option 1 or 2):
Before completing: