name: iikit-clarify description: >- Resolve ambiguities in any project artifact — auto-detects the most recent artifact (spec, plan, checklist, testify, tasks, or constitution), asks targeted questions with option tables, and writes answers back into the artifact's Clarifications section. Use when requirements are unclear, a plan has trade-off gaps, checklist thresholds feel wrong, test scenarios are imprecise, task dependencies seem off, or constitution principles are vague. argument-hint: "[spec|plan|checklist|testify|tasks|constitution]" license: MIT metadata: version: "2.6.0"
Intent Integrity Kit Clarify (Generic Utility)
Process steps in order. Do not skip ahead.
Ask targeted clarification questions to reduce ambiguity in the detected (or user-specified) artifact, then encode answers back into it.
User Input
$ARGUMENTS
You MUST consider the user input before proceeding (if not empty).
If the user provides a target argument (e.g., plan, spec, checklist, testify, tasks, constitution), use that artifact instead of auto-detection.
Constitution Loading
Load constitution per constitution-loading.md (soft mode — parse if exists, continue if not).
Prerequisites Check
Run:
bash .tessl/plugins/tessl-labs/intent-integrity-kit/skills/iikit-core/scripts/bash/check-prerequisites.sh --phase clarify --jsonWindows:pwsh .tessl/plugins/tessl-labs/intent-integrity-kit/skills/iikit-core/scripts/powershell/check-prerequisites.ps1 -Phase clarify -JsonParse JSON. If
needs_selection: true: present thefeaturesarray as a numbered table (name and stage columns). Follow the options presentation pattern in conversation-guide.md. After user selects, run:bash .tessl/plugins/tessl-labs/intent-integrity-kit/skills/iikit-core/scripts/bash/set-active-feature.sh --json <selection>Windows:
pwsh .tessl/plugins/tessl-labs/intent-integrity-kit/skills/iikit-core/scripts/powershell/set-active-feature.ps1 -Json <selection>Then re-run the prerequisites check (item 1 of this section).
Determine the target artifact (see "Target Detection" below).
Target Detection
If the user provided a target argument, map it:
| Argument | Artifact file |
|---|---|
spec |
{FEATURE_DIR}/spec.md |
plan |
{FEATURE_DIR}/plan.md |
checklist |
{FEATURE_DIR}/checklists/*.md (all files) |
testify |
{FEATURE_DIR}/tests/features/*.feature (read for scanning), {FEATURE_DIR}/tests/clarifications.md (write Q&A) |
tasks |
{FEATURE_DIR}/tasks.md |
constitution |
{REPO_ROOT}/CONSTITUTION.md |
If no argument, auto-detect by checking artifacts in reverse phase order. Pick the first that exists:
{FEATURE_DIR}/tasks.md{FEATURE_DIR}/tests/features/*.feature{FEATURE_DIR}/checklists/*.md{FEATURE_DIR}/plan.md{FEATURE_DIR}/spec.md{REPO_ROOT}/CONSTITUTION.md
If no clarifiable artifact exists: ERROR with No artifacts to clarify. Run /iikit-01-specify first or /iikit-00-constitution.
Step 1 — Scan for Ambiguities
Load the target artifact and perform a structured scan using the taxonomy for that artifact type from ambiguity-taxonomies.md. Mark each area: Clear / Partial / Missing.
Proceed immediately to Step 2.
Step 2 — Generate Question Queue
Constraints:
- Each answerable with multiple-choice (2-5 options) OR short phrase (<=5 words)
- Identify related artifact items for each question:
- Spec: FR-xxx, US-x, SC-xxx
- Plan: section headers or decision IDs
- Checklist: check item IDs
- Testify: scenario names
- Tasks: task IDs (T-xxx)
- Constitution: principle names or section headers
- Only include questions that materially impact downstream phases
- Balance category coverage, exclude already-answered, favor downstream rework reduction
Proceed immediately to Step 3.
Step 3 — Sequential Questioning
Present ONE question at a time.
For multiple-choice: follow the options presentation pattern in conversation-guide.md. Analyze options, state recommendation with reasoning, render options table. User can reply with letter, "yes"/"recommended", or custom text.
After answer: validate against constraints, record, move to next.
Stop when: all critical ambiguities resolved or user signals done.
Proceed immediately to Step 4.
Step 4 — Integration After Each Answer
- Ensure
## Clarificationssection exists in the target artifact with### Session YYYY-MM-DDsubheading - Append:
- Q: <question> -> A: <answer> [<refs>]- References MUST list every affected item in the artifact
- If cross-cutting, reference all materially affected items
- Apply clarification to the appropriate section of the artifact
- Save artifact after each integration to minimize context loss
Testify exception: .feature files are Gherkin syntax — do NOT add markdown sections to them. Instead:
- Scan
.featurefiles for ambiguities (step 1) - Write Q&A to
{FEATURE_DIR}/tests/clarifications.md(create if missing) - Apply changes to the
.featurefiles themselves (update scenarios, add/remove steps)
See clarification-format.md for format details.
Proceed immediately to Step 5.
Step 5 — Re-validate Affected Checklists
If the clarified target was spec.md AND one or more {FEATURE_DIR}/checklists/*.md files are present, re-evaluate each checklist file against the updated spec:
- For each
[x]item: confirm the spec change has not invalidated it. If the clarification removed or contradicted the requirement the item references, change[x]to[ ]and tag with[Stale]plus a one-line note (e.g.,[Stale: SC-003 acceptance threshold revised from 95% to 99%]). - For each
[ ]or[Gap]item: check whether the clarification resolves it. If so, change to[x]and add a one-line justification referencing the clarification (e.g.,[Resolved by clarification on FR-007]). - Other items: leave unchanged.
Append a Checklist re-validation entry under the active session in spec.md's ## Clarifications section:
**Checklist re-validation**
- Regressions: N items [x] -> [ ] ([Stale: ...])
- Resolved: M items [ ]/[Gap] -> [x]
- Unchanged: K
Skip this step when the target was not spec.md (plan, tasks, testify, checklist, constitution). Skip when no checklist files exist.
Proceed immediately to Step 6.
Step 6 — Validation
After each write and final pass:
- Every Q&A bullet ends with
[refs](the optional Checklist re-validation entry from step 5 is exempt) - All referenced IDs exist in the artifact
- No vague placeholders or contradictions remain
Proceed immediately to Step 7.
Step 7 — Report
Output: questions asked/answered, target artifact and path, sections touched, traceability summary table (clarification -> referenced items), coverage summary (category -> status), checklist re-validation diff (when step 5 ran), suggested next command.
Next command logic: run check-prerequisites.sh --json status and use its next_step field to determine the actual next phase based on feature state.
Finish here.
Behavior Rules
- No meaningful ambiguities found: "No critical ambiguities detected." and suggest proceeding
- Avoid speculative tech stack questions unless absence blocks functional clarity
- Respect early termination signals ("stop", "done", "proceed")
- For non-spec artifacts, adapt reference format to the artifact's native ID scheme
Commit, Dashboard & Next Steps
Run post-phase to commit, refresh dashboard, and compute next step in a single call:
bash .tessl/plugins/tessl-labs/intent-integrity-kit/skills/iikit-core/scripts/bash/post-phase.sh --phase clarify --commit-files "-u" --commit-msg "clarify: <target-artifact> Q&A"
Windows: pwsh .tessl/plugins/tessl-labs/intent-integrity-kit/skills/iikit-core/scripts/powershell/post-phase.ps1 -Phase clarify -CommitFiles "-u" -CommitMsg "clarify: <target-artifact> Q&A"
Parse next_step from JSON. Present per model-recommendations.md:
Clarification complete!
Next: [/clear → ] <next_step> (model: <tier>)
[- <alt_step> — <reason> (model: <tier>)]
- Dashboard: file://$(pwd)/.specify/dashboard.html
Recommend /clear before proceeding to the next phase.