create-sdd-project 0.9.7 → 0.9.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -294,19 +294,27 @@ SDD DevFlow combines three proven practices:
294
294
  | `qa-engineer` | Edge cases, spec verification | 5 |
295
295
  | `database-architect` | Schema design, optimization | Any |
296
296
 
297
- ### 3 Skills (Slash Commands)
297
+ ### 4 Skills (Slash Commands)
298
298
 
299
299
  | Skill | Trigger | What it does |
300
300
  |-------|---------|-------------|
301
301
  | `development-workflow` | `start task F001`, `next task`, `add feature` | Orchestrates the complete 7-step workflow |
302
302
  | `bug-workflow` | `report bug`, `fix bug`, `hotfix needed` | Bug triage, investigation, and resolution |
303
303
  | `project-memory` | `set up project memory`, `log a bug fix` | Maintains institutional knowledge |
304
+ | `health-check` | `health check`, `project health` | Quick scan: tests, build, specs sync, secrets, docs freshness |
305
+
306
+ ### 2 Custom Commands
307
+
308
+ | Command | What it does |
309
+ |---------|-------------|
310
+ | `/review-plan` | Sends Implementation Plan to external AI models (Codex CLI, Gemini CLI) for independent critique |
311
+ | `/context-prompt` | Generates a context recovery prompt after `/compact` with Workflow Recovery to prevent checkpoint skipping |
304
312
 
305
313
  ### Plan Quality
306
314
 
307
315
  Every Standard/Complex feature plan goes through a **built-in self-review** (Step 2.4) where the agent re-reads its own plan and checks for errors, vague steps, wrong assumptions, and over-engineering before requesting approval.
308
316
 
309
- For additional confidence, the optional `/review-plan` command sends the plan to an external AI model (Codex CLI, Gemini CLI, or Claude Code) for independent critique — catching blind spots that same-model review misses.
317
+ For additional confidence, the optional `/review-plan` command sends the plan to external AI models (Codex CLI and/or Gemini CLI in parallel) for independent critique — catching blind spots that same-model review misses.
310
318
 
311
319
  ### Workflow (Steps 0–6)
312
320
 
@@ -336,6 +344,16 @@ For additional confidence, the optional `/review-plan` command sends the plan to
336
344
 
337
345
  Quality gates (tests, lint, build, validators) **always run** regardless of level.
338
346
 
347
+ ### Merge Checklist (B+D Mechanism)
348
+
349
+ Every ticket includes a `## Merge Checklist Evidence` table that the agent must fill before requesting merge approval. This mechanism:
350
+
351
+ - **Survives context compaction** — the ticket is always re-read via product tracker, so the empty evidence table acts as a persistent reminder
352
+ - **Forces sequential execution** — agent must read `references/merge-checklist.md`, execute 9 actions (0–8), and record evidence
353
+ - **Works at all tiers** — Simple tasks get a lite ticket with the same evidence table
354
+
355
+ Validated across 16+ features with 87% first-attempt pass rate (failures led to iterative improvements in v0.8.7–v0.9.8).
356
+
339
357
  ### Project Memory
340
358
 
341
359
  Tracks institutional knowledge across sessions in `docs/project_notes/`:
@@ -399,14 +417,18 @@ project/
399
417
  │ │ ├── development-workflow/ # Main task workflow (Steps 0-6)
400
418
  │ │ │ └── references/ # Templates, guides, examples
401
419
  │ │ ├── bug-workflow/ # Bug triage and resolution
420
+ │ │ ├── health-check/ # Project health diagnostics
402
421
  │ │ └── project-memory/ # Memory system setup
422
+ │ ├── commands/ # Custom slash commands
423
+ │ │ ├── review-plan.md # Cross-model plan review
424
+ │ │ └── context-prompt.md # Post-compact context recovery
403
425
  │ ├── hooks/quick-scan.sh # Post-developer quality scan
404
426
  │ └── settings.json # Shared hooks (git-tracked)
405
427
 
406
428
  ├── .gemini/
407
429
  │ ├── agents/ # 9 agents (Gemini format)
408
- │ ├── skills/ # Same 3 skills
409
- │ ├── commands/ # Slash command shortcuts
430
+ │ ├── skills/ # Same 4 skills
431
+ │ ├── commands/ # Slash commands (workflow + review + context)
410
432
  │ └── settings.json # Gemini configuration
411
433
 
412
434
  ├── ai-specs/specs/
@@ -462,11 +484,11 @@ cp -r node_modules/create-sdd-project/template/ /path/to/your-project/
462
484
 
463
485
  ## Roadmap
464
486
 
487
+ - **PM Agent + L5 Autonomous**: AI-driven feature orchestration — sequential feature loop with automatic checkpoint approval and session state persistence
488
+ - **`/review-project` command**: Comprehensive project review using multiple AI models in parallel (Claude + Gemini + Codex) with consolidated action plan
465
489
  - **Monorepo improvements**: Better support for pnpm workspaces and Turbo
466
- - **SDD Upgrade/Migration**: Version bumps for projects already using SDD
467
490
  - **Retrofit Testing**: Automated test generation for existing projects with low coverage
468
491
  - **Agent Teams**: Parallel execution of independent tasks
469
- - **PM Agent + L5 Autonomous**: AI-driven feature orchestration with human review at milestone boundaries
470
492
 
471
493
  ## Contributing
472
494
 
package/lib/config.js CHANGED
@@ -106,6 +106,7 @@ const TEMPLATE_AGENTS = [
106
106
  // Template-provided command files (for upgrade: detect custom commands)
107
107
  const TEMPLATE_COMMANDS = [
108
108
  'review-plan.md',
109
+ 'context-prompt.md',
109
110
  ];
110
111
 
111
112
  module.exports = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-sdd-project",
3
- "version": "0.9.7",
3
+ "version": "0.9.9",
4
4
  "description": "Create a new SDD DevFlow project with AI-assisted development workflow",
5
5
  "bin": {
6
6
  "create-sdd-project": "bin/cli.js"
@@ -0,0 +1,44 @@
1
+ Generate a complete context recovery prompt to paste after /compact or at the start of a new session.
2
+
3
+ ## What to include
4
+
5
+ The prompt must contain EVERYTHING needed for a new session (or post-compact) to continue work without information loss:
6
+
7
+ 1. **Project state**: current branch, last commit, working tree status, SDD version
8
+ 2. **Workflow**: SDD development workflow, autonomy level, branching strategy
9
+ 3. **Active feature**: current step in the 6-step workflow, what has been done, what remains
10
+ 4. **Epics and progress**: table with status of each epic
11
+ 5. **Backlog**: pending features with priorities and dependencies
12
+ 6. **Infrastructure**: key modules, endpoints, schemas, with exact file paths
13
+ 7. **Tests**: total count, files, lint/build/tsc status
14
+ 8. **Key files to read**: list of files the new session must read first
15
+ 9. **Next action**: the specific next thing to do, with context
16
+ 10. **User notes**: any decisions or constraints communicated by the user
17
+
18
+ ### Workflow Recovery (CRITICAL)
19
+
20
+ This section prevents the agent from losing track of the development process after /compact:
21
+
22
+ 11. **Current workflow step**: Which of the 6 steps (Spec, Setup, Plan, Implement, Finalize, Review) is active
23
+ 12. **Pending checkpoints**: Which approvals remain (Spec, Ticket, Plan, Commit, Merge)
24
+ 13. **Merge checklist reminder**: If at Step 5 or later, explicitly state: "Before requesting merge approval, you MUST read `references/merge-checklist.md` and execute ALL actions (0-8). Fill the `## Merge Checklist Evidence` table in the ticket with real evidence for each action."
25
+ 14. **Step order reminder**: "After commit+PR, run code-review-specialist and qa-engineer (Step 5), then execute merge-checklist actions. Do NOT request merge approval without completing the checklist."
26
+
27
+ ## How to generate
28
+
29
+ - Read `docs/project_notes/product-tracker.md` (Active Session + Features tables + Completion Log)
30
+ - Read `docs/project_notes/decisions.md` (recent ADRs)
31
+ - Read `docs/project_notes/key_facts.md` (stack, components)
32
+ - Read the current ticket in `docs/tickets/` if a feature is active
33
+ - Run `git log --oneline -5` and `git status` for current state
34
+ - Read `.sdd-version` for SDD DevFlow version
35
+
36
+ ## Output format
37
+
38
+ Structured markdown with tables, ready to paste directly as the first message of a new session. The prompt should be self-contained — the receiving agent should not need to ask clarifying questions.
39
+
40
+ ## Context
41
+
42
+ - Users work remotely with long sessions — interruptions are costly
43
+ - After /review-plan + plan approval, context is typically at 50%+ usage, making /compact necessary before implementation
44
+ - The workflow recovery section is essential: without it, the agent may skip merge checklist actions after /compact
@@ -0,0 +1,46 @@
1
+ ## Context Prompt — Instructions
2
+
3
+ Generate a complete context recovery prompt to paste after compaction or at the start of a new session.
4
+
5
+ ### What to include
6
+
7
+ The prompt must contain EVERYTHING needed for a new session (or post-compact) to continue work without information loss:
8
+
9
+ 1. **Project state**: current branch, last commit, working tree status, SDD version
10
+ 2. **Workflow**: SDD development workflow, autonomy level, branching strategy
11
+ 3. **Active feature**: current step in the 6-step workflow, what has been done, what remains
12
+ 4. **Epics and progress**: table with status of each epic
13
+ 5. **Backlog**: pending features with priorities and dependencies
14
+ 6. **Infrastructure**: key modules, endpoints, schemas, with exact file paths
15
+ 7. **Tests**: total count, files, lint/build/tsc status
16
+ 8. **Key files to read**: list of files the new session must read first
17
+ 9. **Next action**: the specific next thing to do, with context
18
+ 10. **User notes**: any decisions or constraints communicated by the user
19
+
20
+ #### Workflow Recovery (CRITICAL)
21
+
22
+ This section prevents the agent from losing track of the development process after compaction:
23
+
24
+ 11. **Current workflow step**: Which of the 6 steps (Spec, Setup, Plan, Implement, Finalize, Review) is active
25
+ 12. **Pending checkpoints**: Which approvals remain (Spec, Ticket, Plan, Commit, Merge)
26
+ 13. **Merge checklist reminder**: If at Step 5 or later, explicitly state: "Before requesting merge approval, you MUST read `references/merge-checklist.md` and execute ALL actions (0-8). Fill the `## Merge Checklist Evidence` table in the ticket with real evidence for each action."
27
+ 14. **Step order reminder**: "After commit+PR, run code-review-specialist and qa-engineer (Step 5), then execute merge-checklist actions. Do NOT request merge approval without completing the checklist."
28
+
29
+ ### How to generate
30
+
31
+ - Read `docs/project_notes/product-tracker.md` (Active Session + Features tables + Completion Log)
32
+ - Read `docs/project_notes/decisions.md` (recent ADRs)
33
+ - Read `docs/project_notes/key_facts.md` (stack, components)
34
+ - Read the current ticket in `docs/tickets/` if a feature is active
35
+ - Run `git log --oneline -5` and `git status` for current state
36
+ - Read `.sdd-version` for SDD DevFlow version
37
+
38
+ ### Output format
39
+
40
+ Structured markdown with tables, ready to paste directly as the first message of a new session. The prompt should be self-contained — the receiving agent should not need to ask clarifying questions.
41
+
42
+ ### Context
43
+
44
+ - Users work remotely with long sessions — interruptions are costly
45
+ - After plan review + plan approval, context is typically at 50%+ usage, making compaction necessary before implementation
46
+ - The workflow recovery section is essential: without it, the agent may skip merge checklist actions after compaction
@@ -0,0 +1,2 @@
1
+ description = "Generate a complete context recovery prompt to paste after compaction or at the start of a new session"
2
+ prompt = "Read the file .gemini/commands/context-prompt-instructions.md and follow the instructions to generate a context recovery prompt."