agent-comms
SendMessage recipient validation and worktreePath safety (CWE-59). TRIGGER when: validating a SendMessage `to:` recipient against the agent whitelist, or a…
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
$ npx -y skills add komluk/scaffolding --skill skill-authoring --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/skill-authoringContext 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
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)."
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.
Apply this skill when:
Do NOT apply this skill for:
---
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.
---
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.
---
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:
---
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` 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`
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.
Repo: komluk/scaffolding
SendMessage recipient validation and worktreePath safety (CWE-59). TRIGGER when: validating a SendMessage `to:` recipient against the agent whitelist, or a…
3-tier markdown memory protocol (shared/agent/conversation) for cross-session knowledge. TRIGGER when: reading or writing agent memory files, choosing which…
RESTful API design standards: resource naming, HTTP methods, status codes, pagination, versioning. TRIGGER when: designing new API endpoints, defining error…
Optimize Claude Code context-window usage for accuracy and cost. TRIGGER when: hitting context limits, structuring prompts for an agent, or trimming what gets…
Schema design, index strategy, migration safety, and query analysis. TRIGGER when: designing tables or indexes, writing a migration, or diagnosing a slow…