refactor-skill
SkillFiles & storageUse when about to refactor or refine an existing skill, its SKILL.md or sibling files, from a full restructure down to a one-line wording fix; a change that looks too small to need this skill is not an exemption. Not for creating a skill from scratch or for fixing only its allowed-tools
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the refactor-skill skill
What this skill tells your AI
The instructions your AI receives, as published by vinta/hal-9000 in skills/refactor-skill/SKILL.md and read by ahel’s review.
Refactor a skill. A skill spends two budgets. Its description is loaded into every session, so each word there must do triggering work. Its body enters the context on invocation and stays there for the rest of the session, so each line there must be a step the agent performs or reference every path through the skill needs. Everything else moves behind a pointer or out of the skill.
Instructions
-
Pick the target. If the invocation names one, resolve it to its
SKILL.md. Otherwise ask which skill. ReadSKILL.mdand every sibling file in its directory. If the invocation also names a change to make, that change sets the scope: the verdicts below cover the lines it adds or touches, the rest of the skill stays as it is, and anything noticed there is a follow-up. -
Fetch the guides. Fetch these pages. They calibrate the delete, demote, and rewrite verdicts below:
- https://platform.claude.com/docs/en/agents-and-tools/agent-skills/best-practices
- https://code.claude.com/docs/en/skills#frontmatter-reference and https://code.claude.com/docs/en/skills#skill-content-lifecycle
- https://raw.githubusercontent.com/mattpocock/skills/main/skills/productivity/writing-for-agents/SKILL.md
- https://raw.githubusercontent.com/mattpocock/skills/main/skills/productivity/writing-for-agents/SKILL-MECHANICS.md
- One model guide, picked by the target skill's
model:frontmatter. Unset orinheritmeans the most capable model of the family running this skill:fableunder Claude,gpt-6-astraunder a GPT model.fable: https://platform.claude.com/docs/en/build-with-claude/prompt-engineering/prompting-claude-fable-5-1opus: https://platform.claude.com/docs/en/build-with-claude/prompt-engineering/prompting-claude-opus-5sonnet: https://platform.claude.com/docs/en/build-with-claude/prompt-engineering/prompting-claude-sonnet-5gpt-6-astra: https://developers.openai.com/api/docs/guides/latest-model
-
Audit. Give every frontmatter key, every instruction in the body, and every sibling file exactly one verdict, judged against its bar below. For
allowed-tools, run theupdate-allowed-toolsskill instead of auditing entries here. Done when nothing lacks a verdict.- contradiction: conflicts with another instruction, or the frontmatter promises what the body does not deliver, such as a
context: forkskill whose body assumes conversation history. Record both sides. - delete: fails the no-op test, meaning the model the skill targets would behave the same without it, or the fetched pages say to remove it because it was written for an earlier model's habits. Judge defaults against those pages, not memory. Covers explanations of what the model already knows, emphasis that carries no instruction, and sibling files nothing points to.
- demote: real content that only some runs of the skill reach. Destinations: a file in the skill directory linked from
SKILL.md, one level deep; a script underscripts/when the steps are deterministic; a separate skill only when it needs its own trigger or another skill must reach it. Name the destination. - rewrite: right meaning, phrasing falls short of the fetched pages: a description that names features instead of triggers, a step with no completion criterion, a prohibition with no positive target, a rule shouted in capitals instead of explained. Voice follows the system prompt: the body addresses the model as "you" and names the human as "the user", so "I" or "my" for the human, and "Claude" or "the agent" for the model, are rewrites; words quoted as user speech keep their own voice.
- keep: earns its cost as written.
The bar per part:
- Frontmatter (each key a decision, judged before the body):
disable-model-invocation: truewhen only the user ever names the skill; omitted when the agent must reach the skill on its own, or another skill or aCLAUDE.mdline invokes it.user-invocable: falsewhen the human never runs it by hand.context: forkwhen the arguments fully specify the work and the body needs no conversation history.modelandeffortonly when a run at the inherited value failed, andmodelonly on acontext: forkskill or one that owns the whole turn.argument-hintpresent when the body reads$ARGUMENTS, absent when it does not. - Description (loaded into every session): every word does triggering work. Leads with when to use, names each distinct trigger once, marks the near miss it must not fire on. A user-invoked skill gets a one-line human-facing summary with no trigger list.
- Body (in context from invocation to session end): a step the agent performs, in order, ending on a checkable completion criterion, or reference every path through the skill needs. Written as standing instructions, since the body is never re-read.
- Sibling files (loaded only when reached): each has a pointer in
SKILL.mdstating what it is and when to read it, or for a script, when to run it. A file with no pointer is unreachable.
- contradiction: conflicts with another instruction, or the frontmatter promises what the body does not deliver, such as a
-
Get decisions. One
AskUserQuestionper contradiction, with each conflicting version as an option. Then present the delete and demote lists and collect sign-off with oneAskUserQuestion. The skill stays untouched until sign-off. -
Rewrite. Apply the signed-off verdicts in one pass, without asking again; they are the request. Apply only those: anything else noticed while editing is a follow-up to report in the final message. Keep the directory name and the
namefield, since renaming changes the slash command. Done when every audited item landed where its verdict says: kept, rewritten, demoted, or deleted. When the description changed, point to theskill-creatorplugin in the final message for trigger evals.
Signals
- GitHub stars
- 130
- Forks
- 25
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
refactor-skill- Source
- github.com/vinta/hal-9000