Skip to content
Development
Skill

/skill-authoring

Methodology for authoring scaffolding-compatible skills: frontmatter contract, body structure, validation. TRIGGER when: running /create-skill, writing or reviewing a SKILL.md file, or deciding if a procedure deserves its own skill. SKIP: distilling a conversation into

From plugin
scaffolding
1536 skills13 agents19 commands20 hooks
Install
$ npx -y skills add komluk/scaffolding --skill skill-authoring --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/skill-authoring

Context preview

The summary Claude sees to decide when to auto-load this skill.

Methodology for authoring scaffolding-compatible skills: frontmatter contract, body structure, validation. TRIGGER when: running /create-skill, writing or reviewing a SKILL.md file, or deciding if a procedure deserves its own skill. SKIP: distilling a conversation into

SKILL.md

skill-authoring.SKILL.md
name: skill-authoring
description: "Methodology for authoring scaffolding-compatible skills: frontmatter contract, body structure, validation. TRIGGER when: running /create-skill, writing or reviewing a SKILL.md file, or deciding if a procedure deserves its own skill. SKIP: distilling a conversation into candidates (use distill); 3-tier memory writes (use agent-memory)."

Skill Authoring Skill

Purpose

Methodology for authoring scaffolding-compatible skills. A skill is a single `SKILL.md` file under `skills/<name>/` that encodes a reusable methodology Claude Code can auto-invoke. This skill defines the frontmatter contract, the recommended body structure, the description-writing rules, and the quality bar every authored skill must meet before it ships.

When to Apply

Apply this skill when:

  • Running the `/create-skill` command to scaffold a new skill
  • Hand-writing or editing a `skills/<name>/SKILL.md` file
  • Reviewing a skill for frontmatter correctness or auto-invocation quality
  • Deciding whether a repeatable procedure deserves promotion into its own skill

Do NOT apply this skill for:

  • Distilling a conversation into knowledge candidates — use `distill`
  • Writing into the 3-tier file memory — use `agent-memory`

---

Frontmatter Contract

Every `SKILL.md` MUST begin with a YAML frontmatter block delimited by `---`:

| Field | Rule | |-------|------| | `name` | Required. Kebab-case `^[a-z][a-z0-9-]*$`. MUST equal the parent directory name. | | `description` | Required. Non-empty, 1–340 characters. Follows the Description Contract below. | | `context` | Optional. Only value: `fork` — run the skill in an isolated forked subagent. See "Context: fork". | | `agent` | Optional. Sub-agent for a forked skill: `Explore`, `Plan`, or `general-purpose`. | | `effort` | Optional. Reasoning-effort hint: `low`, `medium`, or `high`. |

`name` and `description` are the only **required** fields. `context`, `agent`, and `effort` are optional delivery-tuning fields. All five are value-checked by `validators/validate-skill.sh`; any other frontmatter key is left untouched.

---

Description Contract

The `description` field drives Claude Code's automatic skill invocation. A vague or overbroad description either fails to trigger or triggers on the wrong tasks. Every scaffolding skill `description` MUST follow this template:

"<one-line capability summary>. TRIGGER when: <2-4 concrete observable situations>. SKIP: <1-2 cases handled by a named neighbour skill or out of scope>."

Rules:

| Rule | Detail | |------|--------| | Length cap | Keep the whole string under ~340 characters. Trim the summary first. | | Observable triggers | Use observable verbs/nouns ("writing a migration"), not adjectives ("complex DB work"). | | 2–4 triggers | Fewer than 2 under-triggers; more than 4 dilutes the match. | | Named `SKIP` | Name the competing neighbour skill — e.g. `SKIP: ... (use python-patterns)`. | | Mutual `SKIP` | If skill A's `SKIP` names skill B, skill B's `SKIP` SHOULD name skill A. No two skills' `TRIGGER` clauses may overlap without a mutual disambiguating `SKIP`. | | Under-trigger bias | For borderline cases, prefer under-triggering over false activations. |

When a skill has no overlapping neighbour, the `SKIP` clause may instead name an explicitly out-of-scope case. The `/create-skill` command composes this string automatically from the collected inputs.

---

Recommended Body Structure

A skill body should read top-to-bottom as a methodology, not as prose. Use this section order:

| Order | Section | Content | |-------|---------|---------| | 1 | `## Purpose` | One short paragraph: what the skill encodes and the outcome. | | 2 | `## When to Apply` | Bulleted TRIGGER situations, then explicit SKIP cases. | | 3 | Methodology section(s) | The repeatable procedure — prefer decision tables. | | 4 | `## Anti-Patterns` | Table of common mistakes and their corrections. | | 5 | `## Quality Checklist` | Verifiable completion criteria. |

Guidelines:

  • Prefer tables for decision matrices and checklists; keep prose minimal.
  • Each section earns its place — delete empty scaffolding.
  • Scaffold new skills from `templates/skill-template.md`.

---

Preloaded vs Invoked (orchestration contract)

A skill reaches an agent in one of two ways, and the author should decide which on purpose:

| Mode | Mechanism | Use when | |------|-----------|----------| | **Preloaded** | Listed in an agent's `skills:` frontmatter — in context from turn one. | The agent needs the skill on **nearly every task** it runs. | | **Invoked** | Auto-loaded on demand when the task matches the skill's `description:` `TRIGGER`/`SKIP`. | The skill is **situational**. |

Decision rule: *preload* a skill when an agent needs it almost every task; otherwise leave it *invoked* and rely on a precise `description:`. Preloading is a context-budget decision (skills < 300 tokens each) — prefer invoked when in doubt. The full Command → Agent → Skill responsibility split lives in `docs/orchestration-pattern.md`.

Context: fork (delivery mode)

`context: fork` runs a skill in an isolated forked subagent so its large body and working notes never pollute the main thread's context. It is a **third delivery mode** alongside preloaded and invoked.

| When to fork | When NOT to fork | |--------------|------------------| | Skill is **heavy** (large reference catalog) AND **one-shot** (consulted once to produce an artifact, no interleaving with main reasoning). | Skill is **iterative** — it must see the *current* main-thread code/decisions on every step (e.g. `testing-strategy`, `pattern-recognition`). |

Pair `context: fork` with an `agent:` to pick the fork's sub-agent:

| `agent:` | Loads | Use for | |----------|-------|---------| | `Explore` | lighter (skips CLAUDE.md + git) | read-only investigation; the fork produces advice only, writes nothing. | | `Plan` | lighter (skips CLAUDE.md + git) | planning passes. | | `general-purpose`

Read more
Ships withscaffolding

Spec-driven multi-agent orchestration for Claude Code — pure markdown, zero backend, runs on the stock runtime. 13 agents, 36 skills, 19 commands, 15 hooks, per-phase model tiers, opt-in lifecycle hooks, optional cross-device semantic memory.

Get the whole plugin

Other skills on scaffolding.