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
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
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 AGENTS.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-plan-23description: 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- For each executable hook, output the following based on its `optional` flag:60 - **Optional hook** (`optional: true`):6162 ```text63 ## Extension Hooks6465 **Optional Pre-Hook**: {extension}66 Command: `/{command}`67 Description: {description}6869 Prompt: {prompt}70 To execute: `/{command}`71 ```7273 - **Mandatory hook** (`optional: false`):7475 ```text76 ## Extension Hooks7778 **Automatic Pre-Hook**: {extension}79 Executing: `/{command}`80 EXECUTE_COMMAND: {command}8182 Wait for the result of the hook command before proceeding to the Outline.83 ```8485- If no hooks are registered or `.kiss/extensions.yml` does not exist, skip silently8687## Outline88891. **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").90912. **Load context**: Read FEATURE_SPEC and `{context.paths.docs}/standards.md`. Load IMPL_PLAN template (already copied).92933. **Execute plan workflow**: Follow the structure in IMPL_PLAN template to:94 - Fill Technical Context (mark unknowns as "NEEDS CLARIFICATION")95 - Fill Standards Check section from standards96 - Evaluate gates (ERROR if violations unjustified)97 - Phase 0: Generate research.md (resolve all NEEDS CLARIFICATION)98 - Phase 1: Generate data-model.md, contracts/, quickstart.md99 - Phase 1: Update agent context by running the agent script100 - Re-evaluate Standards Check post-design1011024. **Stop and report**: Command ends after Phase 2 planning. Report branch, IMPL_PLAN path, and generated artifacts.1031045. **Check for extension hooks**: After reporting, check if `.kiss/extensions.yml` exists in the project root.105 - If it exists, read it and look for entries under the `hooks.after_plan` key106 - If the YAML cannot be parsed or is invalid, skip hook checking silently and continue normally107 - Filter out hooks where `enabled` is explicitly `false`. Treat hooks without an `enabled` field as enabled by default.108 - For each remaining hook, do **not** attempt to interpret or evaluate hook `condition` expressions:109 - If the hook has no `condition` field, or it is null/empty, treat the hook as executable110 - If the hook defines a non-empty `condition`, skip the hook and leave condition evaluation to the HookExecutor implementation111 - For each executable hook, output the following based on its `optional` flag:112 - **Optional hook** (`optional: true`):113114 ```text115 ## Extension Hooks116117 **Optional Hook**: {extension}118 Command: `/{command}`119 Description: {description}120121 Prompt: {prompt}122 To execute: `/{command}`123 ```124125 - **Mandatory hook** (`optional: false`):126127 ```text128 ## Extension Hooks129130 **Automatic Hook**: {extension}131 Executing: `/{command}`132 EXECUTE_COMMAND: {command}133 ```134135 - If no hooks are registered or `.kiss/extensions.yml` does not exist, skip silently136137## Phases138139### Phase 0: Outline & Research1401411. **Extract unknowns from Technical Context** above:142 - For each NEEDS CLARIFICATION → research task143 - For each dependency → best practices task144 - For each integration → patterns task1451462. **Generate and dispatch research agents**:147148 ```text149 For each unknown in Technical Context:150 Task: "Research {unknown} for {feature context}"151 For each technology choice:152 Task: "Find best practices for {tech} in {domain}"153 ```1541553. **Consolidate findings** in `research.md` using format:156 - Decision: [what was chosen]157 - Rationale: [why chosen]158 - Alternatives considered: [what else evaluated]159160**Output**: research.md with all NEEDS CLARIFICATION resolved161162### Phase 1: Design & Contracts163164**Prerequisites:** `research.md` complete1651661. **Extract entities from feature spec** → `data-model.md`:167 - Entity name, fields, relationships168 - Validation rules from requirements169 - State transitions if applicable1701712. **Define interface contracts** (if project has external interfaces) → `/contracts/`:172 - Identify what interfaces the project exposes to users or other systems173 - Document the contract format appropriate for the project type174 - Examples: public APIs for libraries, command schemas for CLI tools, endpoints for web services, grammars for parsers, UI contracts for applications175 - Skip if project is purely internal (build scripts, one-off tools, etc.)1761773. **Agent context update**:178 - Update the plan reference between the `<!-- KISS START -->` and `<!-- KISS END -->` markers in `AGENTS.md` to point to the plan file created in step 1 (the IMPL_PLAN path)179180**Output**: data-model.md, /contracts/*, quickstart.md, updated agent context file181182## Key rules183184- Use absolute paths for filesystem operations; use project-relative paths for references in documentation and agent context files185- ERROR on gate failures or unresolved clarifications186187## Inputs188189- **Feature Specification** (`{context.current.spec}`): current.spec.190 - If set: Read the specification file at this path.191 - If null: Search {context.paths.specs} for the most recent spec.md.192 - If not provided: Ask the user to provide a path to the specification or run /kiss-specify first.193194## Outputs195196- **Implementation Plan** (`{context.paths.plans}/{context.current.feature}/plan.md`): paths.plans}/current.feature}/plan.md.197 - Behavior: Write the plan file. If it exists and confirm_before_write is true, ask the user.198 - Overwrite guarded by `{context.preferences.confirm_before_write}`.199200- **Research Findings** (`{context.paths.plans}/{context.current.feature}/research.md`): paths.plans}/current.feature}/research.md.201 - Behavior: Write research findings documenting design decisions.202 - Overwrite guarded by `{context.preferences.confirm_before_write}`.203204- **Data Model** (`{context.paths.plans}/{context.current.feature}/data-model.md`): paths.plans}/current.feature}/data-model.md.205 - Behavior: Write entity definitions and relationships.206 - Overwrite guarded by `{context.preferences.confirm_before_write}`.207208## Context Update209210After this skill completes successfully, update `.kiss/context.yml`:211212- Set current.plan to the path of the created plan file213- Set current.feature if inferred or confirmed during planning214- Leave all other current.* fields unchanged215- Do not modify paths.*or preferences.*216217## Handoffs218219- **Create Tasks**: run `/kiss-taskify` to continue the workflow.220- **Create Checklist**: run `/kiss-checklist` to continue the workflow.