User Input
$ARGUMENTS
You MUST consider the user input before proceeding (if not empty).
Audience and tone (interactive mode)
When KISS_AGENT_MODE=interactive (the default), assume the user
has limited technical background and limited domain knowledge
— they may know basics but lack deep expertise in implementation
planning. Run this skill as a guided questionnaire:
- One question at a time. No walls of questions.
- Yes / no first. Phrase so
yes, no, not sure, or skip
is a valid answer.
- Translate jargon, don't strip it. Use the technical term but
always pair it with a plain-English gloss the first time it
appears.
- Choices, not blank fields. When yes/no isn't enough, offer
2-4 lettered options (A/B/C/D) with one-line plain-language
descriptions of the trade-off. Always include "Not sure — pick
a sensible default".
- Always recommend. State the option you would pick and why in
one sentence so the user can reply "yes" / "ok" to accept. Pull
defaults from upstream artefacts (spec, architecture, ADRs,
standards) before asking blank.
- Show, don't ask. When upstream artefacts already imply an
answer, propose it as a pre-filled finding and ask for a
yes / no confirmation rather than asking the user to fill in a
blank.
not sure / skip triggers a sensible default, marked
"(default applied — confirm later)" in the artefact, and a debt
entry in this skill's debt file.
When KISS_AGENT_MODE=auto (or --auto), skip the questionnaire
entirely: apply sensible defaults from upstream artefacts and log
decisions to the parent agent's decision log.
Pre-Execution Checks
Check for extension hooks (before planning):
Check if .kiss/extensions.yml exists in the project root.
If it exists, read it and look for entries under the hooks.before_plan key
If the YAML cannot be parsed or is invalid, skip hook checking silently and continue normally
Filter out hooks where enabled is explicitly false. Treat hooks without an enabled field as enabled by default.
For each remaining hook, do not attempt to interpret or evaluate hook condition expressions:
- If the hook has no
condition field, or it is null/empty, treat the hook as executable
- If the hook defines a non-empty
condition, skip the hook and leave condition evaluation to the HookExecutor implementation
When constructing slash commands from hook command names, replace dots (.) with hyphens (-). For example, kiss.git.commit → /kiss-git-commit.
For each executable hook, output the following based on its optional flag:
Optional hook (optional: true):
## Extension Hooks
**Optional Pre-Hook**: {extension}
Command: `/{command}`
Description: {description}
Prompt: {prompt}
To execute: `/{command}`
Mandatory hook (optional: false):
## Extension Hooks
**Automatic Pre-Hook**: {extension}
Executing: `/{command}`
EXECUTE_COMMAND: {command}
Wait for the result of the hook command before proceeding to the Outline.
If no hooks are registered or .kiss/extensions.yml does not exist, skip silently
Outline
Setup: Run scripts/bash/setup-plan.sh --json from repo root and parse JSON for FEATURE_SPEC, IMPL_PLAN, SPECS_DIR, BRANCH. For single quotes in args like "I'm Groot", use escape syntax: e.g 'I'''m Groot' (or double-quote if possible: "I'm Groot").
Load context: Read FEATURE_SPEC and {context.paths.docs}/standards.md. Load IMPL_PLAN template (already copied).
Execute plan workflow: Follow the structure in IMPL_PLAN template to:
- Fill Technical Context (mark unknowns as "NEEDS CLARIFICATION")
- Fill Standards Check section from standards
- Evaluate gates (ERROR if violations unjustified)
- Phase 0: Generate research.md (resolve all NEEDS CLARIFICATION)
- Phase 1: Generate data-model.md, contracts/, quickstart.md
- Phase 1: Update agent context by running the agent script
- Re-evaluate Standards Check post-design
Stop and report: Command ends after Phase 2 planning. Report branch, IMPL_PLAN path, and generated artifacts.
Check for extension hooks: After reporting, check if .kiss/extensions.yml exists in the project root.
If it exists, read it and look for entries under the hooks.after_plan key
If the YAML cannot be parsed or is invalid, skip hook checking silently and continue normally
Filter out hooks where enabled is explicitly false. Treat hooks without an enabled field as enabled by default.
For each remaining hook, do not attempt to interpret or evaluate hook condition expressions:
- If the hook has no
condition field, or it is null/empty, treat the hook as executable
- If the hook defines a non-empty
condition, skip the hook and leave condition evaluation to the HookExecutor implementation
When constructing slash commands from hook command names, replace dots (.) with hyphens (-). For example, kiss.git.commit → /kiss-git-commit.
For each executable hook, output the following based on its optional flag:
Optional hook (optional: true):
## Extension Hooks
**Optional Hook**: {extension}
Command: `/{command}`
Description: {description}
Prompt: {prompt}
To execute: `/{command}`
Mandatory hook (optional: false):
## Extension Hooks
**Automatic Hook**: {extension}
Executing: `/{command}`
EXECUTE_COMMAND: {command}
If no hooks are registered or .kiss/extensions.yml does not exist, skip silently
Phases
Phase 0: Outline & Research
Extract unknowns from Technical Context above:
- For each NEEDS CLARIFICATION → research task
- For each dependency → best practices task
- For each integration → patterns task
Generate and dispatch research agents:
For each unknown in Technical Context:
Task: "Research {unknown} for {feature context}"
For each technology choice:
Task: "Find best practices for {tech} in {domain}"
Consolidate findings in research.md using format:
- Decision: [what was chosen]
- Rationale: [why chosen]
- Alternatives considered: [what else evaluated]
Output: research.md with all NEEDS CLARIFICATION resolved
Phase 1: Design & Contracts
Prerequisites: research.md complete
Extract entities from feature spec → data-model.md:
- Entity name, fields, relationships
- Validation rules from requirements
- State transitions if applicable
Define interface contracts (if project has external interfaces) → /contracts/:
- Identify what interfaces the project exposes to users or other systems
- Document the contract format appropriate for the project type
- Examples: public APIs for libraries, command schemas for CLI tools, endpoints for web services, grammars for parsers, UI contracts for applications
- Skip if project is purely internal (build scripts, one-off tools, etc.)
Agent context update:
- Update the plan reference between the
<!-- KISS START --> and <!-- KISS END --> markers in CLAUDE.md to point to the plan file created in step 1 (the IMPL_PLAN path)
Output: data-model.md, /contracts/*, quickstart.md, updated agent context file
Key rules
- Use absolute paths for filesystem operations; use project-relative paths for references in documentation and agent context files
- ERROR on gate failures or unresolved clarifications
Inputs
- Feature Specification (
{context.current.spec}): current.spec.
- If set: Read the specification file at this path.
- If null: Search {context.paths.specs} for the most recent spec.md.
- If not provided: Ask the user to provide a path to the specification or run /kiss-specify first.
Outputs
Implementation Plan ({context.paths.plans}/{context.current.feature}/plan.md): paths.plans}/current.feature}/plan.md.
- Behavior: Write the plan file. If it exists and confirm_before_write is true, ask the user.
- Overwrite guarded by
{context.preferences.confirm_before_write}.
Research Findings ({context.paths.plans}/{context.current.feature}/research.md): paths.plans}/current.feature}/research.md.
- Behavior: Write research findings documenting design decisions.
- Overwrite guarded by
{context.preferences.confirm_before_write}.
Data Model ({context.paths.plans}/{context.current.feature}/data-model.md): paths.plans}/current.feature}/data-model.md.
- Behavior: Write entity definitions and relationships.
- Overwrite guarded by
{context.preferences.confirm_before_write}.
Context Update
After this skill completes successfully, update .kiss/context.yml:
- Set current.plan to the path of the created plan file
- Set current.feature if inferred or confirmed during planning
- Leave all other current.* fields unchanged
- Do not modify paths.or preferences.
Handoffs
- Create Tasks: run
/kiss-taskify to continue the workflow.
- Create Checklist: run
/kiss-checklist to continue the workflow.
1---2name: kiss-plan3description: Executes the implementation planning workflow using the plan template to generate design artefacts. Use when creating an implementation plan for a feature, breaking down architecture into actionable design documents, or before running kiss-taskify.4---567## User Input89```text10$ARGUMENTS11```1213You **MUST** consider the user input before proceeding (if not empty).1415## Audience and tone (interactive mode)1617When `KISS_AGENT_MODE=interactive` (the default), assume the user18has **limited technical background and limited domain knowledge**19— they may know basics but lack deep expertise in implementation20planning. Run this skill as a guided questionnaire:2122- **One question at a time.** No walls of questions.23- **Yes / no first.** Phrase so `yes`, `no`, `not sure`, or `skip`24 is a valid answer.25- **Translate jargon, don't strip it.** Use the technical term but26 always pair it with a plain-English gloss the first time it27 appears.28- **Choices, not blank fields.** When yes/no isn't enough, offer29 2-4 lettered options (A/B/C/D) with one-line plain-language30 descriptions of the trade-off. Always include "Not sure — pick31 a sensible default".32- **Always recommend.** State the option you would pick and why in33 one sentence so the user can reply "yes" / "ok" to accept. Pull34 defaults from upstream artefacts (spec, architecture, ADRs,35 standards) before asking blank.36- **Show, don't ask.** When upstream artefacts already imply an37 answer, propose it as a pre-filled finding and ask for a38 yes / no confirmation rather than asking the user to fill in a39 blank.40- **`not sure` / `skip` triggers a sensible default**, marked41 "(default applied — confirm later)" in the artefact, and a debt42 entry in this skill's debt file.4344When `KISS_AGENT_MODE=auto` (or `--auto`), skip the questionnaire45entirely: apply sensible defaults from upstream artefacts and log46decisions to the parent agent's decision log.4748## Pre-Execution Checks4950**Check for extension hooks (before planning)**:5152- Check if `.kiss/extensions.yml` exists in the project root.53- If it exists, read it and look for entries under the `hooks.before_plan` key54- If the YAML cannot be parsed or is invalid, skip hook checking silently and continue normally55- Filter out hooks where `enabled` is explicitly `false`. Treat hooks without an `enabled` field as enabled by default.56- For each remaining hook, do **not** attempt to interpret or evaluate hook `condition` expressions:57 - If the hook has no `condition` field, or it is null/empty, treat the hook as executable58 - If the hook defines a non-empty `condition`, skip the hook and leave condition evaluation to the HookExecutor implementation59- When constructing slash commands from hook command names, replace dots (`.`) with hyphens (`-`). For example, `kiss.git.commit` → `/kiss-git-commit`.60- For each executable hook, output the following based on its `optional` flag:61 - **Optional hook** (`optional: true`):6263 ```text64 ## Extension Hooks6566 **Optional Pre-Hook**: {extension}67 Command: `/{command}`68 Description: {description}6970 Prompt: {prompt}71 To execute: `/{command}`72 ```7374 - **Mandatory hook** (`optional: false`):7576 ```text77 ## Extension Hooks7879 **Automatic Pre-Hook**: {extension}80 Executing: `/{command}`81 EXECUTE_COMMAND: {command}8283 Wait for the result of the hook command before proceeding to the Outline.84 ```8586- If no hooks are registered or `.kiss/extensions.yml` does not exist, skip silently8788## Outline89901. **Setup**: Run `scripts/bash/setup-plan.sh --json` from repo root and parse JSON for FEATURE_SPEC, IMPL_PLAN, SPECS_DIR, BRANCH. For single quotes in args like "I'm Groot", use escape syntax: e.g 'I'''m Groot' (or double-quote if possible: "I'm Groot").91922. **Load context**: Read FEATURE_SPEC and `{context.paths.docs}/standards.md`. Load IMPL_PLAN template (already copied).93943. **Execute plan workflow**: Follow the structure in IMPL_PLAN template to:95 - Fill Technical Context (mark unknowns as "NEEDS CLARIFICATION")96 - Fill Standards Check section from standards97 - Evaluate gates (ERROR if violations unjustified)98 - Phase 0: Generate research.md (resolve all NEEDS CLARIFICATION)99 - Phase 1: Generate data-model.md, contracts/, quickstart.md100 - Phase 1: Update agent context by running the agent script101 - Re-evaluate Standards Check post-design1021034. **Stop and report**: Command ends after Phase 2 planning. Report branch, IMPL_PLAN path, and generated artifacts.1041055. **Check for extension hooks**: After reporting, check if `.kiss/extensions.yml` exists in the project root.106 - If it exists, read it and look for entries under the `hooks.after_plan` key107 - If the YAML cannot be parsed or is invalid, skip hook checking silently and continue normally108 - Filter out hooks where `enabled` is explicitly `false`. Treat hooks without an `enabled` field as enabled by default.109 - For each remaining hook, do **not** attempt to interpret or evaluate hook `condition` expressions:110 - If the hook has no `condition` field, or it is null/empty, treat the hook as executable111 - If the hook defines a non-empty `condition`, skip the hook and leave condition evaluation to the HookExecutor implementation112 - When constructing slash commands from hook command names, replace dots (`.`) with hyphens (`-`). For example, `kiss.git.commit` → `/kiss-git-commit`.113 - For each executable hook, output the following based on its `optional` flag:114 - **Optional hook** (`optional: true`):115116 ```text117 ## Extension Hooks118119 **Optional Hook**: {extension}120 Command: `/{command}`121 Description: {description}122123 Prompt: {prompt}124 To execute: `/{command}`125 ```126127 - **Mandatory hook** (`optional: false`):128129 ```text130 ## Extension Hooks131132 **Automatic Hook**: {extension}133 Executing: `/{command}`134 EXECUTE_COMMAND: {command}135 ```136137 - If no hooks are registered or `.kiss/extensions.yml` does not exist, skip silently138139## Phases140141### Phase 0: Outline & Research1421431. **Extract unknowns from Technical Context** above:144 - For each NEEDS CLARIFICATION → research task145 - For each dependency → best practices task146 - For each integration → patterns task1471482. **Generate and dispatch research agents**:149150 ```text151 For each unknown in Technical Context:152 Task: "Research {unknown} for {feature context}"153 For each technology choice:154 Task: "Find best practices for {tech} in {domain}"155 ```1561573. **Consolidate findings** in `research.md` using format:158 - Decision: [what was chosen]159 - Rationale: [why chosen]160 - Alternatives considered: [what else evaluated]161162**Output**: research.md with all NEEDS CLARIFICATION resolved163164### Phase 1: Design & Contracts165166**Prerequisites:** `research.md` complete1671681. **Extract entities from feature spec** → `data-model.md`:169 - Entity name, fields, relationships170 - Validation rules from requirements171 - State transitions if applicable1721732. **Define interface contracts** (if project has external interfaces) → `/contracts/`:174 - Identify what interfaces the project exposes to users or other systems175 - Document the contract format appropriate for the project type176 - Examples: public APIs for libraries, command schemas for CLI tools, endpoints for web services, grammars for parsers, UI contracts for applications177 - Skip if project is purely internal (build scripts, one-off tools, etc.)1781793. **Agent context update**:180 - Update the plan reference between the `<!-- KISS START -->` and `<!-- KISS END -->` markers in `CLAUDE.md` to point to the plan file created in step 1 (the IMPL_PLAN path)181182**Output**: data-model.md, /contracts/*, quickstart.md, updated agent context file183184## Key rules185186- Use absolute paths for filesystem operations; use project-relative paths for references in documentation and agent context files187- ERROR on gate failures or unresolved clarifications188189## Inputs190191- **Feature Specification** (`{context.current.spec}`): current.spec.192 - If set: Read the specification file at this path.193 - If null: Search {context.paths.specs} for the most recent spec.md.194 - If not provided: Ask the user to provide a path to the specification or run /kiss-specify first.195196## Outputs197198- **Implementation Plan** (`{context.paths.plans}/{context.current.feature}/plan.md`): paths.plans}/current.feature}/plan.md.199 - Behavior: Write the plan file. If it exists and confirm_before_write is true, ask the user.200 - Overwrite guarded by `{context.preferences.confirm_before_write}`.201202- **Research Findings** (`{context.paths.plans}/{context.current.feature}/research.md`): paths.plans}/current.feature}/research.md.203 - Behavior: Write research findings documenting design decisions.204 - Overwrite guarded by `{context.preferences.confirm_before_write}`.205206- **Data Model** (`{context.paths.plans}/{context.current.feature}/data-model.md`): paths.plans}/current.feature}/data-model.md.207 - Behavior: Write entity definitions and relationships.208 - Overwrite guarded by `{context.preferences.confirm_before_write}`.209210## Context Update211212After this skill completes successfully, update `.kiss/context.yml`:213214- Set current.plan to the path of the created plan file215- Set current.feature if inferred or confirmed during planning216- Leave all other current.* fields unchanged217- Do not modify paths.*or preferences.*218219## Handoffs220221- **Create Tasks**: run `/kiss-taskify` to continue the workflow.222- **Create Checklist**: run `/kiss-checklist` to continue the workflow.