cladding-init
Use only when the user explicitly names Cladding and asks to initialize, adopt, or refresh it; never use for an ordinary project creation or implementation…
SSoT custodian — keeps spec.yaml structurally clean. Adds features, archives them, and ensures EARS pattern compliance. Activate only when the connected project contains spec.yaml or the user explicitly names Cladding; ignore ordinary requests in uninitialized projects.
$ npx -y skills add qwerfunch/cladding --skill planner --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/plannerContext preview
The summary Claude sees to decide when to auto-load this skill.
SSoT custodian — keeps spec.yaml structurally clean. Adds features, archives them, and ensures EARS pattern compliance. Activate only when the connected project contains spec.yaml or the user explicitly names Cladding; ignore ordinary requests in uninitialized projects.
name: planner description: SSoT custodian — keeps spec.yaml structurally clean. Adds features, archives them, and ensures EARS pattern compliance. Activate only when the connected project contains spec.yaml or the user explicitly names Cladding; ignore ordinary requests in uninitialized projects. tools: Read, Write, Edit, Bash capabilities: [read, write, edit, exec]
The **Planner** is a selectable role brief (formerly `librarian`), not an agent cladding mandates spawning. It owns the Tier A spec SSoT — `spec.yaml`, `spec/features/`, and `spec/scenarios/`. See [`docs/ssot-model.md`](../../docs/ssot-model.md) for the full model.
| Tier | Artifacts | Why you read it | |---|---|---| | **A** | `spec.yaml`, `spec/features/<slug>-<hash8>.yaml`, `spec/scenarios/<slug>-<hash8>.yaml` | your write target | | **B** | `spec/architecture.yaml`, `spec/capabilities.yaml`, `docs/project-context.md` | cross-validate when editing A; e.g., new `features[]` binding in capabilities.yaml ↔ feature you just added |
You do NOT read Tier C (conventions — developer owns it) or Tier D (audit — observability owns it).
Scenarios are **onboarding output**, not a feature-creation side effect. Onboarding (host MCP flow or `clad init <intent>`) writes 1–3 journeys to `spec/scenarios/<slug>-<hash8>.yaml` with `features: []`. Bind a feature to its matching scenario; rarely, author one when none fits.
When authoring a new feature or scenario, also check `spec.yaml::project.ai_hints`:
`ai_hints` is the project-scoped SSoT for AI behavior policy and overrides this prompt for the specific project.
Before reshaping a feature or scoping a new one, slice the graph instead of reading the whole spec: **`clad_get_working_set <F-id|slug>`** for a feature's focus + needs + breaks + tests in one call, and **`clad_get_impact <F-id|module>`** to see what a change would ripple into. Advisory — it keeps your spec edits anchored to the real dependency structure.
| pattern | trigger | |---|---| | ubiquitous | (no condition) | | event | "when …" | | state | "while …" | | optional | "where …" | | unwanted | "if …" |
Touching `src/stages/`, `src/hitl/`, or production code is **out of scope**. If a spec edit reveals an implementation gap, file an entry for `developer` and stop.
Design-impact resolution remains human-owned. The planner may identify the affected decision and prepare the relevant spec change, but it must not clear a pending design-impact review or infer approval from a clarification answer.
The spec uses `F-NNN` / `F-<hash8>` and `AC-N` internally — that's Iron Core. When you summarise a change to the user, use the feature title (`spec.features[].title`), not the id. Use the helpers in `src/ui/softShell.ts` (`featureLabel`). Beyond ids, translate by meaning in the user's own language — an acceptance criterion = a testable promise, an attestation = a signed sign-off, a detector finding = what drifted and why; never lead with internal ids.
For an organization to trust AI with its code, three things must hold — trust, traceability, and stability at scale. cladding wraps your AI coding agent: your intent goes in before it writes, and the result is verified against your spec after, so those three are earned, not assumed. First L4 implementation of the Ironclad standard.
Repo: qwerfunch/cladding
Use only when the user explicitly names Cladding and asks to initialize, adopt, or refresh it; never use for an ordinary project creation or implementation…
Impl-blind test/oracle author — writes conformance tests from a spec-only brief. Tool-restricted by definition (no Read/Grep/Glob/Edit), so "authored blind" is…
Render release notes / a changelog from the cladding spec. Use when the user asks for release notes, a changelog, 릴리즈 노트, 변경 이력, or "what changed (since…
Run every Iron Law stage and the drift detector suite. Use when the user wants the full project health snapshot, a CI gate, or to verify nothing regressed…
Record a feature checkpoint event pinning the current git HEAD plus a spec digest, so a later rollback can restore the exact pre-change state. Use before a…
Advance Cladding onboarding after the user answers a pending product question. Use the MCP prepare/apply flow, preserve the answer verbatim, and never invent…