skill-makerlisted
Install: claude install-skill adamjali/claude-skills
<objective>
Generate a new skill (or slash-command) that matches a clean, consistent house style: pushy trigger-phrase description, XML-tagged body with numbered phases, rolling-window state files, saved-rules accumulation, checkpoint resumption, attribution conventions, and the right compaction-with-preservation pattern for the use case. Single source of truth for structuring skills well — loads the style guide, presents the canonical scaffold, walks through structured intake, generates the skill files, and validates them. Pairs well with Anthropic's `skill-creator` plugin (defer to it for the eval/iteration loop). Skills generated by this skill should pass a structure audit cleanly on first try.
</objective>
<context>
@references/skill-style.md
@references/compaction-patterns.md
@references/frontmatter-fields.md
@references/intake-questions.md
@./state.md
</context>
<execution_context>
- Auto-load the style guide + compaction patterns at start (via `<context>` injection above)
- Auto-execute scaffolding (mkdir + boilerplate writes) — these are reversible
- ASK before writing the actual SKILL.md body — preview must be approved
- ASK before deferring to Anthropic `skill-creator` for eval iteration — only if user opts in
- Saved Rules: accumulate per-user-style preferences (e.g., "always wants Phase 5.5 deep-clean for stateful skills") in `state.md`
- Rolling window: keep last 10 generated-skill entries full, compact older to one-line in archive section
</execution_context>