@ktpartners/dgs-platform 2.6.2
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/LICENSE +38 -0
- package/README.md +851 -0
- package/agents/dgs-codebase-cross-analyzer.md +183 -0
- package/agents/dgs-codebase-mapper.md +782 -0
- package/agents/dgs-codebase-synthesizer.md +156 -0
- package/agents/dgs-debugger.md +1256 -0
- package/agents/dgs-executor.md +550 -0
- package/agents/dgs-integration-checker.md +481 -0
- package/agents/dgs-nyquist-auditor.md +178 -0
- package/agents/dgs-phase-researcher.md +563 -0
- package/agents/dgs-phase-verifier.md +450 -0
- package/agents/dgs-plan-checker.md +708 -0
- package/agents/dgs-planner.md +1324 -0
- package/agents/dgs-project-researcher.md +631 -0
- package/agents/dgs-research-synthesizer.md +249 -0
- package/agents/dgs-roadmapper.md +652 -0
- package/agents/dgs-verifier.md +607 -0
- package/bin/install.js +2073 -0
- package/commands/dgs/add-doc.md +45 -0
- package/commands/dgs/add-idea.md +38 -0
- package/commands/dgs/add-phase.md +43 -0
- package/commands/dgs/add-repo.md +54 -0
- package/commands/dgs/add-tests.md +41 -0
- package/commands/dgs/add-todo.md +47 -0
- package/commands/dgs/approve-spec.md +38 -0
- package/commands/dgs/audit-milestone.md +36 -0
- package/commands/dgs/audit-phase.md +37 -0
- package/commands/dgs/cancel-job.md +23 -0
- package/commands/dgs/capture-principle.md +143 -0
- package/commands/dgs/check-todos.md +45 -0
- package/commands/dgs/cleanup.md +18 -0
- package/commands/dgs/complete-milestone.md +136 -0
- package/commands/dgs/complete-project.md +70 -0
- package/commands/dgs/consolidate-ideas.md +50 -0
- package/commands/dgs/create-milestone-job.md +37 -0
- package/commands/dgs/debug.md +164 -0
- package/commands/dgs/develop-idea.md +53 -0
- package/commands/dgs/discuss-idea.md +41 -0
- package/commands/dgs/discuss-phase.md +83 -0
- package/commands/dgs/execute-phase.md +41 -0
- package/commands/dgs/fast.md +38 -0
- package/commands/dgs/find-related-ideas.md +43 -0
- package/commands/dgs/health.md +28 -0
- package/commands/dgs/help.md +22 -0
- package/commands/dgs/import-spec.md +36 -0
- package/commands/dgs/init-product.md +28 -0
- package/commands/dgs/insert-phase.md +32 -0
- package/commands/dgs/join-discord.md +18 -0
- package/commands/dgs/list-docs.md +40 -0
- package/commands/dgs/list-ideas.md +42 -0
- package/commands/dgs/list-jobs.md +22 -0
- package/commands/dgs/list-phase-assumptions.md +46 -0
- package/commands/dgs/list-projects.md +57 -0
- package/commands/dgs/list-specs.md +40 -0
- package/commands/dgs/map-codebase.md +92 -0
- package/commands/dgs/new-milestone.md +44 -0
- package/commands/dgs/new-project.md +42 -0
- package/commands/dgs/node-repair.md +26 -0
- package/commands/dgs/overlap-check.md +20 -0
- package/commands/dgs/pause-work.md +38 -0
- package/commands/dgs/plan-milestone-gaps.md +34 -0
- package/commands/dgs/plan-phase.md +44 -0
- package/commands/dgs/progress.md +24 -0
- package/commands/dgs/quick.md +41 -0
- package/commands/dgs/reactivate-project.md +70 -0
- package/commands/dgs/reapply-patches.md +110 -0
- package/commands/dgs/refine-spec.md +38 -0
- package/commands/dgs/reject-idea.md +43 -0
- package/commands/dgs/remove-doc.md +44 -0
- package/commands/dgs/remove-phase.md +31 -0
- package/commands/dgs/remove-repo.md +69 -0
- package/commands/dgs/research-idea.md +43 -0
- package/commands/dgs/research-phase.md +189 -0
- package/commands/dgs/restore-idea.md +45 -0
- package/commands/dgs/resume-work.md +40 -0
- package/commands/dgs/rollback-job.md +24 -0
- package/commands/dgs/run-job.md +35 -0
- package/commands/dgs/search.md +40 -0
- package/commands/dgs/set-profile.md +34 -0
- package/commands/dgs/settings.md +38 -0
- package/commands/dgs/switch-project.md +58 -0
- package/commands/dgs/undo-consolidation.md +42 -0
- package/commands/dgs/update-idea.md +44 -0
- package/commands/dgs/update.md +37 -0
- package/commands/dgs/validate-phase.md +35 -0
- package/commands/dgs/verify-work.md +39 -0
- package/commands/dgs/write-spec.md +49 -0
- package/deliver-great-systems/.planning/phases/09-backend-wiring-and-error-handling/09-01-SUMMARY.md +84 -0
- package/deliver-great-systems/.planning/phases/09-backend-wiring-and-error-handling/09-02-SUMMARY.md +86 -0
- package/deliver-great-systems/.planning/phases/10-v1-to-v2-migration-flow/10-01-SUMMARY.md +85 -0
- package/deliver-great-systems/bin/dgs-tools.cjs +1444 -0
- package/deliver-great-systems/bin/lib/auto-test.cjs +1365 -0
- package/deliver-great-systems/bin/lib/commands.cjs +570 -0
- package/deliver-great-systems/bin/lib/config.cjs +417 -0
- package/deliver-great-systems/bin/lib/conflict-agent.cjs +1063 -0
- package/deliver-great-systems/bin/lib/conflict-agent.test.cjs +554 -0
- package/deliver-great-systems/bin/lib/context.cjs +929 -0
- package/deliver-great-systems/bin/lib/context.test.cjs +693 -0
- package/deliver-great-systems/bin/lib/core.cjs +744 -0
- package/deliver-great-systems/bin/lib/core.test.cjs +822 -0
- package/deliver-great-systems/bin/lib/docs.cjs +919 -0
- package/deliver-great-systems/bin/lib/docs.test.cjs +211 -0
- package/deliver-great-systems/bin/lib/execution.cjs +705 -0
- package/deliver-great-systems/bin/lib/execution.test.cjs +1472 -0
- package/deliver-great-systems/bin/lib/frontmatter.cjs +324 -0
- package/deliver-great-systems/bin/lib/ideas.cjs +1406 -0
- package/deliver-great-systems/bin/lib/ideas.test.cjs +1417 -0
- package/deliver-great-systems/bin/lib/identity.cjs +125 -0
- package/deliver-great-systems/bin/lib/init.cjs +1114 -0
- package/deliver-great-systems/bin/lib/init.test.cjs +1271 -0
- package/deliver-great-systems/bin/lib/jobs.cjs +2015 -0
- package/deliver-great-systems/bin/lib/jobs.test.cjs +2619 -0
- package/deliver-great-systems/bin/lib/merge-conflicts.cjs +654 -0
- package/deliver-great-systems/bin/lib/merge-conflicts.test.cjs +370 -0
- package/deliver-great-systems/bin/lib/migration.cjs +352 -0
- package/deliver-great-systems/bin/lib/migration.test.cjs +582 -0
- package/deliver-great-systems/bin/lib/milestone.cjs +243 -0
- package/deliver-great-systems/bin/lib/overlap.cjs +437 -0
- package/deliver-great-systems/bin/lib/overlap.test.cjs +747 -0
- package/deliver-great-systems/bin/lib/path-audit.test.cjs +384 -0
- package/deliver-great-systems/bin/lib/paths.cjs +144 -0
- package/deliver-great-systems/bin/lib/paths.test.cjs +486 -0
- package/deliver-great-systems/bin/lib/phase.cjs +910 -0
- package/deliver-great-systems/bin/lib/projects.cjs +691 -0
- package/deliver-great-systems/bin/lib/projects.test.cjs +871 -0
- package/deliver-great-systems/bin/lib/repos.cjs +1432 -0
- package/deliver-great-systems/bin/lib/repos.test.cjs +1882 -0
- package/deliver-great-systems/bin/lib/roadmap.cjs +305 -0
- package/deliver-great-systems/bin/lib/search.cjs +570 -0
- package/deliver-great-systems/bin/lib/specs.cjs +1303 -0
- package/deliver-great-systems/bin/lib/state.cjs +893 -0
- package/deliver-great-systems/bin/lib/template.cjs +228 -0
- package/deliver-great-systems/bin/lib/test-helpers.cjs +291 -0
- package/deliver-great-systems/bin/lib/verify.cjs +796 -0
- package/deliver-great-systems/references/checkpoints.md +776 -0
- package/deliver-great-systems/references/conflict-resolution.md +66 -0
- package/deliver-great-systems/references/context-tiers.md +166 -0
- package/deliver-great-systems/references/continuation-format.md +249 -0
- package/deliver-great-systems/references/decimal-phase-calculation.md +67 -0
- package/deliver-great-systems/references/git-integration.md +250 -0
- package/deliver-great-systems/references/git-planning-commit.md +40 -0
- package/deliver-great-systems/references/model-profile-resolution.md +36 -0
- package/deliver-great-systems/references/model-profiles.md +95 -0
- package/deliver-great-systems/references/phase-argument-parsing.md +61 -0
- package/deliver-great-systems/references/planning-config.md +224 -0
- package/deliver-great-systems/references/questioning.md +162 -0
- package/deliver-great-systems/references/spec-review-loop.md +177 -0
- package/deliver-great-systems/references/tdd.md +265 -0
- package/deliver-great-systems/references/ui-brand.md +160 -0
- package/deliver-great-systems/references/verification-patterns.md +612 -0
- package/deliver-great-systems/templates/DEBUG.md +166 -0
- package/deliver-great-systems/templates/UAT.md +251 -0
- package/deliver-great-systems/templates/VALIDATION.md +95 -0
- package/deliver-great-systems/templates/claude-md.md +74 -0
- package/deliver-great-systems/templates/codebase/architecture.md +257 -0
- package/deliver-great-systems/templates/codebase/concerns.md +312 -0
- package/deliver-great-systems/templates/codebase/conventions.md +309 -0
- package/deliver-great-systems/templates/codebase/integrations.md +282 -0
- package/deliver-great-systems/templates/codebase/stack.md +188 -0
- package/deliver-great-systems/templates/codebase/structure.md +287 -0
- package/deliver-great-systems/templates/codebase/testing.md +482 -0
- package/deliver-great-systems/templates/config.json +38 -0
- package/deliver-great-systems/templates/context.md +354 -0
- package/deliver-great-systems/templates/continue-here.md +80 -0
- package/deliver-great-systems/templates/debug-subagent-prompt.md +93 -0
- package/deliver-great-systems/templates/discovery.md +148 -0
- package/deliver-great-systems/templates/milestone-archive.md +125 -0
- package/deliver-great-systems/templates/milestone.md +117 -0
- package/deliver-great-systems/templates/phase-prompt.md +615 -0
- package/deliver-great-systems/templates/planner-subagent-prompt.md +119 -0
- package/deliver-great-systems/templates/project.md +186 -0
- package/deliver-great-systems/templates/requirements.md +233 -0
- package/deliver-great-systems/templates/research-project/ARCHITECTURE.md +206 -0
- package/deliver-great-systems/templates/research-project/FEATURES.md +149 -0
- package/deliver-great-systems/templates/research-project/PITFALLS.md +202 -0
- package/deliver-great-systems/templates/research-project/STACK.md +122 -0
- package/deliver-great-systems/templates/research-project/SUMMARY.md +172 -0
- package/deliver-great-systems/templates/research.md +554 -0
- package/deliver-great-systems/templates/retrospective.md +54 -0
- package/deliver-great-systems/templates/roadmap.md +204 -0
- package/deliver-great-systems/templates/state.md +178 -0
- package/deliver-great-systems/templates/summary-complex.md +59 -0
- package/deliver-great-systems/templates/summary-minimal.md +41 -0
- package/deliver-great-systems/templates/summary-standard.md +48 -0
- package/deliver-great-systems/templates/summary.md +253 -0
- package/deliver-great-systems/templates/user-setup.md +313 -0
- package/deliver-great-systems/templates/verification-report.md +324 -0
- package/deliver-great-systems/workflows/add-doc.md +151 -0
- package/deliver-great-systems/workflows/add-idea.md +96 -0
- package/deliver-great-systems/workflows/add-phase.md +120 -0
- package/deliver-great-systems/workflows/add-tests.md +359 -0
- package/deliver-great-systems/workflows/add-todo.md +162 -0
- package/deliver-great-systems/workflows/approve-spec.md +194 -0
- package/deliver-great-systems/workflows/audit-milestone.md +364 -0
- package/deliver-great-systems/workflows/audit-phase.md +462 -0
- package/deliver-great-systems/workflows/cancel-job.md +108 -0
- package/deliver-great-systems/workflows/check-todos.md +181 -0
- package/deliver-great-systems/workflows/cleanup.md +247 -0
- package/deliver-great-systems/workflows/codereview.md +526 -0
- package/deliver-great-systems/workflows/complete-milestone.md +1298 -0
- package/deliver-great-systems/workflows/consolidate-ideas.md +365 -0
- package/deliver-great-systems/workflows/create-milestone-job.md +177 -0
- package/deliver-great-systems/workflows/develop-idea.md +544 -0
- package/deliver-great-systems/workflows/diagnose-issues.md +231 -0
- package/deliver-great-systems/workflows/discovery-phase.md +301 -0
- package/deliver-great-systems/workflows/discuss-idea.md +263 -0
- package/deliver-great-systems/workflows/discuss-phase.md +733 -0
- package/deliver-great-systems/workflows/execute-phase.md +571 -0
- package/deliver-great-systems/workflows/execute-plan.md +592 -0
- package/deliver-great-systems/workflows/find-related-ideas.md +271 -0
- package/deliver-great-systems/workflows/health.md +173 -0
- package/deliver-great-systems/workflows/help.md +997 -0
- package/deliver-great-systems/workflows/import-spec.md +381 -0
- package/deliver-great-systems/workflows/init-product.md +767 -0
- package/deliver-great-systems/workflows/insert-phase.md +138 -0
- package/deliver-great-systems/workflows/list-docs.md +119 -0
- package/deliver-great-systems/workflows/list-ideas.md +154 -0
- package/deliver-great-systems/workflows/list-jobs.md +89 -0
- package/deliver-great-systems/workflows/list-phase-assumptions.md +192 -0
- package/deliver-great-systems/workflows/list-specs.md +101 -0
- package/deliver-great-systems/workflows/map-codebase.md +621 -0
- package/deliver-great-systems/workflows/new-milestone.md +591 -0
- package/deliver-great-systems/workflows/new-project.md +1113 -0
- package/deliver-great-systems/workflows/node-repair.md +94 -0
- package/deliver-great-systems/workflows/overlap-check.md +86 -0
- package/deliver-great-systems/workflows/pause-work.md +134 -0
- package/deliver-great-systems/workflows/plan-milestone-gaps.md +306 -0
- package/deliver-great-systems/workflows/plan-phase.md +698 -0
- package/deliver-great-systems/workflows/progress.md +386 -0
- package/deliver-great-systems/workflows/quick.md +845 -0
- package/deliver-great-systems/workflows/refine-spec.md +275 -0
- package/deliver-great-systems/workflows/reject-idea.md +109 -0
- package/deliver-great-systems/workflows/remove-doc.md +117 -0
- package/deliver-great-systems/workflows/remove-phase.md +163 -0
- package/deliver-great-systems/workflows/research-idea.md +325 -0
- package/deliver-great-systems/workflows/research-phase.md +81 -0
- package/deliver-great-systems/workflows/restore-idea.md +101 -0
- package/deliver-great-systems/workflows/resume-project.md +311 -0
- package/deliver-great-systems/workflows/rollback-job.md +130 -0
- package/deliver-great-systems/workflows/run-job.md +498 -0
- package/deliver-great-systems/workflows/search.md +130 -0
- package/deliver-great-systems/workflows/set-profile.md +83 -0
- package/deliver-great-systems/workflows/settings.md +470 -0
- package/deliver-great-systems/workflows/transition.md +563 -0
- package/deliver-great-systems/workflows/undo-consolidation.md +155 -0
- package/deliver-great-systems/workflows/update-idea.md +157 -0
- package/deliver-great-systems/workflows/update.md +242 -0
- package/deliver-great-systems/workflows/validate-phase.md +177 -0
- package/deliver-great-systems/workflows/verify-phase.md +253 -0
- package/deliver-great-systems/workflows/verify-work.md +671 -0
- package/deliver-great-systems/workflows/write-spec.md +450 -0
- package/hooks/dist/dgs-check-update.js +62 -0
- package/hooks/dist/dgs-context-monitor.js +141 -0
- package/hooks/dist/dgs-statusline.js +115 -0
- package/package.json +60 -0
- package/scripts/build-hooks.js +43 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: dgs:validate-phase
|
|
3
|
+
description: Retroactively audit and fill Nyquist validation gaps for a completed phase
|
|
4
|
+
argument-hint: "[phase number]"
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Write
|
|
8
|
+
- Edit
|
|
9
|
+
- Bash
|
|
10
|
+
- Glob
|
|
11
|
+
- Grep
|
|
12
|
+
- Task
|
|
13
|
+
- AskUserQuestion
|
|
14
|
+
---
|
|
15
|
+
<objective>
|
|
16
|
+
Audit Nyquist validation coverage for a completed phase. Three states:
|
|
17
|
+
- (A) VALIDATION.md exists — audit and fill gaps
|
|
18
|
+
- (B) No VALIDATION.md, SUMMARY.md exists — reconstruct from artifacts
|
|
19
|
+
- (C) Phase not executed — exit with guidance
|
|
20
|
+
|
|
21
|
+
Output: updated VALIDATION.md + generated test files.
|
|
22
|
+
</objective>
|
|
23
|
+
|
|
24
|
+
<execution_context>
|
|
25
|
+
@~/.claude/deliver-great-systems/workflows/validate-phase.md
|
|
26
|
+
</execution_context>
|
|
27
|
+
|
|
28
|
+
<context>
|
|
29
|
+
Phase: $ARGUMENTS — optional, defaults to last completed phase.
|
|
30
|
+
</context>
|
|
31
|
+
|
|
32
|
+
<process>
|
|
33
|
+
Execute @~/.claude/deliver-great-systems/workflows/validate-phase.md.
|
|
34
|
+
Preserve all workflow gates.
|
|
35
|
+
</process>
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: dgs:verify-work
|
|
3
|
+
description: Validate built features through conversational UAT
|
|
4
|
+
argument-hint: "[phase number, e.g., '4'] [--auto]"
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Bash
|
|
8
|
+
- Glob
|
|
9
|
+
- Grep
|
|
10
|
+
- Edit
|
|
11
|
+
- Write
|
|
12
|
+
- Task
|
|
13
|
+
---
|
|
14
|
+
<objective>
|
|
15
|
+
Validate built features through conversational testing with persistent state.
|
|
16
|
+
|
|
17
|
+
Purpose: Confirm what Claude built actually works from user's perspective. One test at a time, plain text responses, no interrogation. When issues are found, automatically diagnose, plan fixes, and prepare for execution.
|
|
18
|
+
|
|
19
|
+
Output: {phase_num}-UAT.md tracking all test results. If issues found: diagnosed gaps, verified fix plans ready for /dgs:execute-phase
|
|
20
|
+
</objective>
|
|
21
|
+
|
|
22
|
+
<execution_context>
|
|
23
|
+
@~/.claude/deliver-great-systems/workflows/verify-work.md
|
|
24
|
+
@~/.claude/deliver-great-systems/templates/UAT.md
|
|
25
|
+
</execution_context>
|
|
26
|
+
|
|
27
|
+
<context>
|
|
28
|
+
Phase: $ARGUMENTS (optional)
|
|
29
|
+
- If provided: Test specific phase (e.g., "4")
|
|
30
|
+
- If not provided: Check for active sessions or prompt for phase
|
|
31
|
+
- If `--auto` flag provided: Auto-pass all tests (rubber stamp for jobs)
|
|
32
|
+
|
|
33
|
+
Context files are resolved inside the workflow (`init verify-work`) and delegated via `<files_to_read>` blocks.
|
|
34
|
+
</context>
|
|
35
|
+
|
|
36
|
+
<process>
|
|
37
|
+
Execute the verify-work workflow from @~/.claude/deliver-great-systems/workflows/verify-work.md end-to-end.
|
|
38
|
+
Preserve all workflow gates (session management, test presentation, diagnosis, fix planning, routing).
|
|
39
|
+
</process>
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: dgs:write-spec
|
|
3
|
+
description: Draft a structured PRD spec from pending ideas with cross-LLM review
|
|
4
|
+
argument-hint: [idea-ids...] [--auto]
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Write
|
|
8
|
+
- Bash
|
|
9
|
+
- Grep
|
|
10
|
+
- Glob
|
|
11
|
+
- AskUserQuestion
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
<objective>
|
|
15
|
+
Draft a structured PRD spec from one or more pending ideas, send it through a cross-LLM review loop, and finalize it. Supports two modes:
|
|
16
|
+
|
|
17
|
+
- **Interactive mode** (default): Select ideas interactively or pass IDs as args, Claude drafts PRD with clarifying questions, user reviews draft before sending to reviewers, user approves final spec
|
|
18
|
+
- **Auto mode** (`--auto`): Requires idea IDs as arguments, Claude drafts PRD without clarifying questions, review loop runs normally, spec auto-finalizes without user approval
|
|
19
|
+
|
|
20
|
+
The spec covers the full lifecycle: idea selection, PRD generation with all required sections, cross-LLM review loop, convergence detection, and finalization with idea movement to done.
|
|
21
|
+
</objective>
|
|
22
|
+
|
|
23
|
+
<execution_context>
|
|
24
|
+
@~/.claude/deliver-great-systems/workflows/write-spec.md
|
|
25
|
+
</execution_context>
|
|
26
|
+
|
|
27
|
+
<context>
|
|
28
|
+
Arguments: $ARGUMENTS (optional idea IDs and `--auto` flag)
|
|
29
|
+
|
|
30
|
+
Codebase context for Technical Considerations:
|
|
31
|
+
@.planning/codebase/ARCHITECTURE.md
|
|
32
|
+
@.planning/codebase/STACK.md
|
|
33
|
+
@.planning/codebase/STRUCTURE.md
|
|
34
|
+
</context>
|
|
35
|
+
|
|
36
|
+
<process>
|
|
37
|
+
**Follow the write-spec workflow** from `@~/.claude/deliver-great-systems/workflows/write-spec.md`.
|
|
38
|
+
|
|
39
|
+
The workflow handles all logic including:
|
|
40
|
+
1. Argument parsing (detect `--auto` mode, extract idea IDs)
|
|
41
|
+
2. Loading pending ideas via `dgs-tools.cjs ideas list`
|
|
42
|
+
3. Interactive idea selection or validation of provided IDs
|
|
43
|
+
4. Loading codebase context for Technical Considerations
|
|
44
|
+
5. Collaborative PRD drafting with clarifying questions (interactive) or silent drafting (auto)
|
|
45
|
+
6. Draft saving via `dgs-tools.cjs specs create`
|
|
46
|
+
7. Draft review and approval (interactive only)
|
|
47
|
+
8. Cross-LLM review loop (sends to OpenAI/Gemini reviewers)
|
|
48
|
+
9. Finalization with spec status transition and idea movement
|
|
49
|
+
</process>
|
package/deliver-great-systems/.planning/phases/09-backend-wiring-and-error-handling/09-01-SUMMARY.md
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
---
|
|
2
|
+
phase: 09-backend-wiring-and-error-handling
|
|
3
|
+
plan: 01
|
|
4
|
+
subsystem: cli
|
|
5
|
+
tags: [error-handling, cli-routing, repos, project-context]
|
|
6
|
+
|
|
7
|
+
requires:
|
|
8
|
+
- phase: 04-multi-repo-planning-and-execution
|
|
9
|
+
provides: autoPopulateReposTags, validateReposConsistency functions
|
|
10
|
+
- phase: 03-project-lifecycle
|
|
11
|
+
provides: PROJECT_COMPLETED error type in getProjectRoot
|
|
12
|
+
provides:
|
|
13
|
+
- PROJECT_COMPLETED guard handler in resolveProjectContext
|
|
14
|
+
- CLI routes for repos auto-populate and validate-consistency
|
|
15
|
+
affects: [execute-plan, plan-phase]
|
|
16
|
+
|
|
17
|
+
tech-stack:
|
|
18
|
+
added: []
|
|
19
|
+
patterns: [guard-object error handling, cmd-wrapper CLI pattern]
|
|
20
|
+
|
|
21
|
+
key-files:
|
|
22
|
+
created: []
|
|
23
|
+
modified:
|
|
24
|
+
- get-shit-done/bin/lib/init.cjs
|
|
25
|
+
- get-shit-done/bin/lib/repos.cjs
|
|
26
|
+
- get-shit-done/bin/gsd-tools.cjs
|
|
27
|
+
|
|
28
|
+
key-decisions:
|
|
29
|
+
- "PROJECT_COMPLETED handler mirrors exact shape of PROJECT_NOT_FOUND guard — root: null, gsd_mode, current_project, guard, v2_hint"
|
|
30
|
+
- "cmdReposAutoPopulate writes updated content back to plan file; cmdReposValidateConsistency is read-only"
|
|
31
|
+
- "Both cmd wrappers check for REPOS.md presence before calling library functions"
|
|
32
|
+
|
|
33
|
+
patterns-established:
|
|
34
|
+
- "Guard handler pattern: catch error prefix, extract name, return guard object with action and message"
|
|
35
|
+
- "CLI cmd wrapper pattern: validate args, read file, load repos, call function, output JSON"
|
|
36
|
+
|
|
37
|
+
requirements-completed: [FOUN-04, PLAN-02, PLAN-03]
|
|
38
|
+
|
|
39
|
+
duration: 3min
|
|
40
|
+
completed: 2026-02-24
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
# Phase 9 Plan 01: Backend Wiring & Error Handling Summary
|
|
44
|
+
|
|
45
|
+
**PROJECT_COMPLETED guard handler in resolveProjectContext plus CLI routes for repos auto-populate and validate-consistency**
|
|
46
|
+
|
|
47
|
+
## Performance
|
|
48
|
+
|
|
49
|
+
- **Duration:** 3 min
|
|
50
|
+
- **Started:** 2026-02-24
|
|
51
|
+
- **Completed:** 2026-02-24
|
|
52
|
+
- **Tasks:** 2
|
|
53
|
+
- **Files modified:** 3
|
|
54
|
+
|
|
55
|
+
## Accomplishments
|
|
56
|
+
- resolveProjectContext() now catches PROJECT_COMPLETED errors and returns a guard object instead of crashing
|
|
57
|
+
- repos auto-populate CLI route reads a plan file, auto-populates <repos> tags from <files> paths, and writes the result
|
|
58
|
+
- repos validate-consistency CLI route validates <repos>/<files> consistency and returns mismatches as JSON
|
|
59
|
+
|
|
60
|
+
## Files Created/Modified
|
|
61
|
+
- `get-shit-done/bin/lib/init.cjs` - Added PROJECT_COMPLETED catch clause in resolveProjectContext
|
|
62
|
+
- `get-shit-done/bin/lib/repos.cjs` - Added cmdReposAutoPopulate and cmdReposValidateConsistency wrappers
|
|
63
|
+
- `get-shit-done/bin/gsd-tools.cjs` - Added repos auto-populate and validate-consistency routes, updated usage docs
|
|
64
|
+
|
|
65
|
+
## Decisions Made
|
|
66
|
+
- PROJECT_COMPLETED guard returns same shape as existing guards for consistency
|
|
67
|
+
- cmd wrappers validate REPOS.md presence to avoid crashes on v1 installs
|
|
68
|
+
|
|
69
|
+
## Deviations from Plan
|
|
70
|
+
None - plan executed exactly as written.
|
|
71
|
+
|
|
72
|
+
## Issues Encountered
|
|
73
|
+
None.
|
|
74
|
+
|
|
75
|
+
## User Setup Required
|
|
76
|
+
None - no external service configuration required.
|
|
77
|
+
|
|
78
|
+
## Next Phase Readiness
|
|
79
|
+
- FOUN-04, PLAN-02, PLAN-03 satisfied
|
|
80
|
+
- All 203 tests pass across core, repos, and execution suites
|
|
81
|
+
|
|
82
|
+
---
|
|
83
|
+
*Phase: 09-backend-wiring-and-error-handling*
|
|
84
|
+
*Completed: 2026-02-24*
|
package/deliver-great-systems/.planning/phases/09-backend-wiring-and-error-handling/09-02-SUMMARY.md
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
---
|
|
2
|
+
phase: 09-backend-wiring-and-error-handling
|
|
3
|
+
plan: 02
|
|
4
|
+
subsystem: cli
|
|
5
|
+
tags: [commit-routing, workflow-integration, preflight, detect-manual]
|
|
6
|
+
|
|
7
|
+
requires:
|
|
8
|
+
- phase: 04-multi-repo-planning-and-execution
|
|
9
|
+
provides: detectManualResolution, cmdCommitPreflight, cmdCommitMultiRepo
|
|
10
|
+
provides:
|
|
11
|
+
- --phase-dir flag in commit routing
|
|
12
|
+
- detect-manual CLI subcommand
|
|
13
|
+
- Pre-flight check reference in execute-plan workflow
|
|
14
|
+
- .planning/ commit guard in execute-plan workflow
|
|
15
|
+
affects: [execute-plan, execute-phase]
|
|
16
|
+
|
|
17
|
+
tech-stack:
|
|
18
|
+
added: []
|
|
19
|
+
patterns: [advisory preflight, commit guard]
|
|
20
|
+
|
|
21
|
+
key-files:
|
|
22
|
+
created: []
|
|
23
|
+
modified:
|
|
24
|
+
- get-shit-done/bin/gsd-tools.cjs
|
|
25
|
+
- get-shit-done/workflows/execute-plan.md
|
|
26
|
+
|
|
27
|
+
key-decisions:
|
|
28
|
+
- "detect-manual subcommand placed before --multi-repo check in commit routing to avoid flag collision"
|
|
29
|
+
- "--phase-dir parsed in both single-repo and multi-repo paths; passed through to cmdCommitMultiRepo options"
|
|
30
|
+
- "Preflight check is advisory only — warns but does not block execution"
|
|
31
|
+
- ".planning/ commit guard warns on partial failure but proceeds to track progress"
|
|
32
|
+
|
|
33
|
+
patterns-established:
|
|
34
|
+
- "Advisory preflight pattern: check before execution, warn, continue regardless"
|
|
35
|
+
- "Commit guard pattern: check prior results, warn on failure, proceed for progress tracking"
|
|
36
|
+
|
|
37
|
+
requirements-completed: [EXEC-03, EXEC-06]
|
|
38
|
+
|
|
39
|
+
duration: 3min
|
|
40
|
+
completed: 2026-02-24
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
# Phase 9 Plan 02: Commit Routing & Workflow Integration Summary
|
|
44
|
+
|
|
45
|
+
**--phase-dir flag and detect-manual subcommand in CLI, plus pre-flight and .planning/ commit guard in execute-plan workflow**
|
|
46
|
+
|
|
47
|
+
## Performance
|
|
48
|
+
|
|
49
|
+
- **Duration:** 3 min
|
|
50
|
+
- **Started:** 2026-02-24
|
|
51
|
+
- **Completed:** 2026-02-24
|
|
52
|
+
- **Tasks:** 2
|
|
53
|
+
- **Files modified:** 2
|
|
54
|
+
|
|
55
|
+
## Accomplishments
|
|
56
|
+
- --phase-dir flag parsed in both single-repo and multi-repo commit paths
|
|
57
|
+
- detect-manual subcommand routes to detectManualResolution and returns JSON
|
|
58
|
+
- execute-plan workflow references commit preflight as advisory pre-execution check for multi-repo projects
|
|
59
|
+
- execute-plan workflow guards .planning/ metadata commit with warning when repo commits have failures
|
|
60
|
+
|
|
61
|
+
## Files Created/Modified
|
|
62
|
+
- `get-shit-done/bin/gsd-tools.cjs` - Added --phase-dir flag, detect-manual subcommand, updated usage docs
|
|
63
|
+
- `get-shit-done/workflows/execute-plan.md` - Added preflight_check step and multi-repo guard in git_commit_metadata step
|
|
64
|
+
|
|
65
|
+
## Decisions Made
|
|
66
|
+
- Preflight is advisory — displays warning but never blocks execution
|
|
67
|
+
- .planning/ commit proceeds even on partial failure to track progress
|
|
68
|
+
- detect-manual reference included near preflight for retry scenarios
|
|
69
|
+
|
|
70
|
+
## Deviations from Plan
|
|
71
|
+
None - plan executed exactly as written.
|
|
72
|
+
|
|
73
|
+
## Issues Encountered
|
|
74
|
+
None.
|
|
75
|
+
|
|
76
|
+
## User Setup Required
|
|
77
|
+
None - no external service configuration required.
|
|
78
|
+
|
|
79
|
+
## Next Phase Readiness
|
|
80
|
+
- EXEC-03, EXEC-06 satisfied
|
|
81
|
+
- All 203 tests pass
|
|
82
|
+
- All v2 CLI routes are now wired to their backend functions
|
|
83
|
+
|
|
84
|
+
---
|
|
85
|
+
*Phase: 09-backend-wiring-and-error-handling*
|
|
86
|
+
*Completed: 2026-02-24*
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
---
|
|
2
|
+
phase: 10-v1-to-v2-migration-flow
|
|
3
|
+
plan: 01
|
|
4
|
+
subsystem: cli
|
|
5
|
+
tags: [migration, workflow, init-product, v1-to-v2]
|
|
6
|
+
|
|
7
|
+
requires:
|
|
8
|
+
- phase: 07-v1-to-v2-migration
|
|
9
|
+
provides: migration.cjs with cmdMigrateV1ToV2, detectV1Install
|
|
10
|
+
- phase: 08-missing-slash-command-entry-points
|
|
11
|
+
provides: init-product.md workflow with v1_detected placeholder
|
|
12
|
+
provides:
|
|
13
|
+
- v1-to-v2 migration prompt in init-product workflow
|
|
14
|
+
- Decline persistence guard in cmdReposInitProduct
|
|
15
|
+
- Three v1 paths: migrate, decline, previously-declined
|
|
16
|
+
affects: [init-product]
|
|
17
|
+
|
|
18
|
+
tech-stack:
|
|
19
|
+
added: []
|
|
20
|
+
patterns: [config-flag persistence, workflow user prompting]
|
|
21
|
+
|
|
22
|
+
key-files:
|
|
23
|
+
created: []
|
|
24
|
+
modified:
|
|
25
|
+
- get-shit-done/workflows/init-product.md
|
|
26
|
+
- get-shit-done/bin/lib/repos.cjs
|
|
27
|
+
|
|
28
|
+
key-decisions:
|
|
29
|
+
- "Config flag v1_decline_migration checked BEFORE detectV1Install to skip prompting entirely"
|
|
30
|
+
- "v1_declined response shape distinct from v1_detected for separate workflow handling"
|
|
31
|
+
- "Migration failure shows rollback info and retry instructions"
|
|
32
|
+
|
|
33
|
+
patterns-established:
|
|
34
|
+
- "Config-flag guard pattern: check config before expensive operation, skip if flag set"
|
|
35
|
+
- "Decline persistence: write config immediately, check on subsequent runs"
|
|
36
|
+
|
|
37
|
+
requirements-completed: [MIGR-01, MIGR-04]
|
|
38
|
+
|
|
39
|
+
duration: 3min
|
|
40
|
+
completed: 2026-02-24
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
# Phase 10 Plan 01: v1-to-v2 Migration Flow Summary
|
|
44
|
+
|
|
45
|
+
**Migration prompt in init-product workflow with decline persistence and three v1 handling paths**
|
|
46
|
+
|
|
47
|
+
## Performance
|
|
48
|
+
|
|
49
|
+
- **Duration:** 3 min
|
|
50
|
+
- **Started:** 2026-02-24
|
|
51
|
+
- **Completed:** 2026-02-24
|
|
52
|
+
- **Tasks:** 2
|
|
53
|
+
- **Files modified:** 2
|
|
54
|
+
|
|
55
|
+
## Accomplishments
|
|
56
|
+
- init-product workflow prompts v1 users to migrate or decline (replaces placeholder message)
|
|
57
|
+
- Migration path calls `repos migrate <slug>` and shows results with backup tag info
|
|
58
|
+
- Decline path persists choice via config-set, preventing re-prompts on subsequent runs
|
|
59
|
+
- Previously-declined users see direct v1-mode message without being prompted
|
|
60
|
+
|
|
61
|
+
## Files Created/Modified
|
|
62
|
+
- `get-shit-done/workflows/init-product.md` - Replaced v1_detected placeholder with migration prompt, added v1_declined handler
|
|
63
|
+
- `get-shit-done/bin/lib/repos.cjs` - Added v1_decline_migration config check guard in cmdReposInitProduct
|
|
64
|
+
|
|
65
|
+
## Decisions Made
|
|
66
|
+
- Config flag checked before detectV1Install to skip prompting entirely for declined users
|
|
67
|
+
- v1_declined response is distinct from v1_detected for clear workflow routing
|
|
68
|
+
|
|
69
|
+
## Deviations from Plan
|
|
70
|
+
None - plan executed exactly as written.
|
|
71
|
+
|
|
72
|
+
## Issues Encountered
|
|
73
|
+
None.
|
|
74
|
+
|
|
75
|
+
## User Setup Required
|
|
76
|
+
None - no external service configuration required.
|
|
77
|
+
|
|
78
|
+
## Next Phase Readiness
|
|
79
|
+
- MIGR-01, MIGR-04 satisfied
|
|
80
|
+
- 93 repos tests + 38 migration tests pass
|
|
81
|
+
- All v1 paths handled: migrate, decline, previously-declined
|
|
82
|
+
|
|
83
|
+
---
|
|
84
|
+
*Phase: 10-v1-to-v2-migration-flow*
|
|
85
|
+
*Completed: 2026-02-24*
|