Resolve review feedback on github/spec-kit#3568: - catalog.json: bump top-level updated_at to this revision (2026-07-17) - extension.yml + catalog.json: shorten the assess description to under the documented 200-char manifest limit (kept aligned across both) - extension.yml: make the before_specify hook prompt condition-neutral (it fires on every /speckit.specify, so it must not claim "no assessment found") - intake.md: fix slug normalization to explicitly allow lowercase letters a-z (the old rule permitted only digits and '-', contradicting the offline-mode example) - intake.md + research.md: require a sanitized source URL (strip userinfo and credential/signature query params) instead of persisting a verbatim URL that could leak secrets into project artifacts - decide.md: remove the "trivially small" exception so a go always requires a shaped concept, making verdict behavior deterministic and consistent with the guardrails and README Assisted-by: GitHub Copilot (model: Claude Opus 4.8, supervised) Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 1f25cf9d-b7eb-4b2b-b811-3e91d8db8f6a
Idea Assessment Pipeline Extension
A five-stage assessment pipeline for Spec Kit that turns any idea into a defensible go / needs-clarification / kill decision before it enters Spec-Driven Development. It is the missing discovery track that sits in front of the SDD delivery track (specify → clarify → plan → tasks → analyze → implement).
Discovery answers "is this worth building?" Delivery answers "how do we build it?" Only ideas that survive assessment hand off to /speckit.specify.
Overview
Each idea lives in its own directory under .specify/assessments/<slug>/, with one Markdown artifact per stage:
.specify/assessments/<slug>/
├── intake.md # speckit.assess.intake — capture the raw idea
├── research.md # speckit.assess.research — gather (and challenge with) evidence
├── problem.md # speckit.assess.define — define the problem, goals, metrics
├── concept.md # speckit.assess.shape — shape solution options + appetite
└── decision.md # speckit.assess.decide — go / needs-clarification / kill → handoff
The pipeline is a funnel: most ideas should be killed or parked before shape. Killing an idea with a documented reason is a successful outcome, not a failure.
flowchart LR
A[intake] --> R[research] --> D[define] --> S[shape] --> C{decide}
C -->|go| SPEC[/speckit.specify/]
C -->|needs-clarification| R
C -->|kill| X[closed, recorded]
Commands
| Command | Stage | Output |
|---|---|---|
speckit.assess.intake |
Capture & normalize a raw idea (text, URL, ticket, or codebase pointer). | intake.md |
speckit.assess.research |
Gather users/market/prior-art/data evidence — and evidence against the idea. | research.md |
speckit.assess.define |
Define the problem: users, goals, non-goals, success metrics, cost of inaction. | problem.md |
speckit.assess.shape |
Shape 2–3 concept-level options with appetite and trade-offs; recommend one (or none). | concept.md |
speckit.assess.decide |
Score against criteria and render the verdict; hand go ideas to /speckit.specify. |
decision.md |
Stages are meant to run in order but are not rigidly gated:
defineis the minimum viable stage and can run directly on user input (intake/research optional).shaperequiresproblem.md.deciderequiresproblem.md; agoverdict expectsconcept.md(otherwise it is downgraded toneeds-clarification).
Slug Conventions
A slug is the per-idea directory name under .specify/assessments/. It is the handle all five commands share.
- User-provided: normalized to lowercase kebab-case (e.g.
offline-mode,cut-onboarding-friction). Preserved verbatim after normalization — no timestamps or numbers appended. - Asked for: in interactive use,
speckit.assess.intakeasks for a slug when none is supplied, suggesting a kebab-case default derived from the idea. - Automated: when no human is available, the agent generates a unique slug and never overwrites an existing assessment directory (appending
-2,-3, … or a short date as needed). - Reuse from context: later stages reuse the slug reported earlier in the same session, confirmed by the presence of the assessment directory.
Installation
specify extension add assess
Disabling
specify extension disable assess
specify extension enable assess
Typical Flow
# 1. Capture an idea (pasted text, a URL, or "assess this repo")
/speckit.assess.intake "Let users work offline and sync when they reconnect" slug=offline-mode
# 2. Gather evidence — and reasons it might not be worth it
/speckit.assess.research slug=offline-mode
# 3. Define the actual problem
/speckit.assess.define slug=offline-mode
# 4. Shape 2–3 concept options with appetites
/speckit.assess.shape slug=offline-mode
# 5. Decide — go, clarify, or kill
/speckit.assess.decide slug=offline-mode
# → on "go", hand the decision.md handoff summary to /speckit.specify
Hooks
Registers one optional hook:
before_specify→ promptsspeckit.assess.intake— a nudge to assess an idea before committing it to a specification. It never runs automatically; the user chooses.
Guardrails
- Only
speckit.assess.*commands write, and only inside.specify/assessments/<slug>/. None of them modify source code — solution design and implementation belong to the SDD lifecycle (/speckit.specifyonward). - Web content fetched during
intake/researchis treated as untrusted data, governed by an explicit URL Trust Policy (allowlisted public sources fetched freely; unknown hosts prompted or skipped; loopback/RFC1918/metadata endpoints refused). - Evidence is never over-claimed: unsourced statements are tagged
ASSUMPTION, andresearch.mdalways includes an Evidence Against the Idea section. - Verdicts are never over-claimed: a
gorequires a valid problem and a shaped concept; otherwise the honest verdict isneeds-clarification. - No command overwrites an existing artifact without confirmation; in automated mode it refuses.
Relationship to Other Extensions
assess is deliberately the generic, role-neutral discovery track — usable by a founder, PM, BA, engineer, or designer. Richer or more specialized pre-SDD flows in the community catalog (e.g. product-lifecycle orchestrators, technical-discovery, intake-normalization, brownfield onboarding) can layer on top of or feed into it; assess aims to be the minimal, opinionated funnel that ends cleanly at the /speckit.specify handoff.