@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,181 @@
|
|
|
1
|
+
<purpose>
|
|
2
|
+
List all pending todos, allow selection, load full context for the selected todo, and route to appropriate action.
|
|
3
|
+
</purpose>
|
|
4
|
+
|
|
5
|
+
<context_tier>lite</context_tier>
|
|
6
|
+
|
|
7
|
+
<required_reading>
|
|
8
|
+
Read all files referenced by the invoking prompt's execution_context before starting.
|
|
9
|
+
</required_reading>
|
|
10
|
+
|
|
11
|
+
<process>
|
|
12
|
+
|
|
13
|
+
<step name="init_context">
|
|
14
|
+
Load todo context:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
INIT=$(node "$HOME/.claude/deliver-great-systems/bin/dgs-tools.cjs" init todos)
|
|
18
|
+
if [[ "$INIT" == @file:* ]]; then INIT=$(cat "${INIT#@file:}"); fi
|
|
19
|
+
TIER_FILES=$(node "$HOME/.claude/deliver-great-systems/bin/dgs-tools.cjs" context load-tier lite --raw 2>/dev/null)
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Extract from init JSON: `todo_count`, `todos`, `pending_dir`.
|
|
23
|
+
Use `TIER_FILES` JSON `files` array for project context (PROJECT.md, STATE.md, config.json).
|
|
24
|
+
|
|
25
|
+
If `todo_count` is 0:
|
|
26
|
+
```
|
|
27
|
+
No pending todos.
|
|
28
|
+
|
|
29
|
+
Todos are captured during work sessions with /dgs:add-todo.
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
Would you like to:
|
|
34
|
+
|
|
35
|
+
1. Continue with current phase (/dgs:progress)
|
|
36
|
+
2. Add a todo now (/dgs:add-todo)
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Exit.
|
|
40
|
+
</step>
|
|
41
|
+
|
|
42
|
+
<step name="parse_filter">
|
|
43
|
+
Check for area filter in arguments:
|
|
44
|
+
- `/dgs:check-todos` → show all
|
|
45
|
+
- `/dgs:check-todos api` → filter to area:api only
|
|
46
|
+
</step>
|
|
47
|
+
|
|
48
|
+
<step name="list_todos">
|
|
49
|
+
Use the `todos` array from init context (already filtered by area if specified).
|
|
50
|
+
|
|
51
|
+
Parse and display as numbered list:
|
|
52
|
+
|
|
53
|
+
```
|
|
54
|
+
Pending Todos:
|
|
55
|
+
|
|
56
|
+
1. Add auth token refresh (api, 2d ago)
|
|
57
|
+
2. Fix modal z-index issue (ui, 1d ago)
|
|
58
|
+
3. Refactor database connection pool (database, 5h ago)
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
Reply with a number to view details, or:
|
|
63
|
+
- `/dgs:check-todos [area]` to filter by area
|
|
64
|
+
- `q` to exit
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Format age as relative time from created timestamp.
|
|
68
|
+
</step>
|
|
69
|
+
|
|
70
|
+
<step name="handle_selection">
|
|
71
|
+
Wait for user to reply with a number.
|
|
72
|
+
|
|
73
|
+
If valid: load selected todo, proceed.
|
|
74
|
+
If invalid: "Invalid selection. Reply with a number (1-[N]) or `q` to exit."
|
|
75
|
+
</step>
|
|
76
|
+
|
|
77
|
+
<step name="load_context">
|
|
78
|
+
Read the todo file completely. Display:
|
|
79
|
+
|
|
80
|
+
```
|
|
81
|
+
## [title]
|
|
82
|
+
|
|
83
|
+
**Area:** [area]
|
|
84
|
+
**Created:** [date] ([relative time] ago)
|
|
85
|
+
**Files:** [list or "None"]
|
|
86
|
+
|
|
87
|
+
### Problem
|
|
88
|
+
[problem section content]
|
|
89
|
+
|
|
90
|
+
### Solution
|
|
91
|
+
[solution section content]
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
If `files` field has entries, read and briefly summarize each.
|
|
95
|
+
</step>
|
|
96
|
+
|
|
97
|
+
<step name="check_roadmap">
|
|
98
|
+
Check for roadmap (can use init progress or directly check file existence):
|
|
99
|
+
|
|
100
|
+
If ROADMAP.md exists (check `${roadmap_path}`):
|
|
101
|
+
1. Check if todo's area matches an upcoming phase
|
|
102
|
+
2. Check if todo's files overlap with a phase's scope
|
|
103
|
+
3. Note any match for action options
|
|
104
|
+
</step>
|
|
105
|
+
|
|
106
|
+
<step name="offer_actions">
|
|
107
|
+
**If todo maps to a roadmap phase:**
|
|
108
|
+
|
|
109
|
+
Use AskUserQuestion:
|
|
110
|
+
- header: "Action"
|
|
111
|
+
- question: "This todo relates to Phase [N]: [name]. What would you like to do?"
|
|
112
|
+
- options:
|
|
113
|
+
- "Work on it now" — move to done, start working
|
|
114
|
+
- "Add to phase plan" — include when planning Phase [N]
|
|
115
|
+
- "Brainstorm approach" — think through before deciding
|
|
116
|
+
- "Put it back" — return to list
|
|
117
|
+
|
|
118
|
+
**If no roadmap match:**
|
|
119
|
+
|
|
120
|
+
Use AskUserQuestion:
|
|
121
|
+
- header: "Action"
|
|
122
|
+
- question: "What would you like to do with this todo?"
|
|
123
|
+
- options:
|
|
124
|
+
- "Work on it now" — move to done, start working
|
|
125
|
+
- "Create a phase" — /dgs:add-phase with this scope
|
|
126
|
+
- "Brainstorm approach" — think through before deciding
|
|
127
|
+
- "Put it back" — return to list
|
|
128
|
+
</step>
|
|
129
|
+
|
|
130
|
+
<step name="execute_action">
|
|
131
|
+
**Work on it now:**
|
|
132
|
+
```bash
|
|
133
|
+
mv "${pending_dir}/[filename]" "${project_root}/todos/done/"
|
|
134
|
+
```
|
|
135
|
+
Update STATE.md todo count. Present problem/solution context. Begin work or ask how to proceed.
|
|
136
|
+
|
|
137
|
+
**Add to phase plan:**
|
|
138
|
+
Note todo reference in phase planning notes. Keep in pending. Return to list or exit.
|
|
139
|
+
|
|
140
|
+
**Create a phase:**
|
|
141
|
+
Display: `/dgs:add-phase [description from todo]`
|
|
142
|
+
Keep in pending. User runs command in fresh context.
|
|
143
|
+
|
|
144
|
+
**Brainstorm approach:**
|
|
145
|
+
Keep in pending. Start discussion about problem and approaches.
|
|
146
|
+
|
|
147
|
+
**Put it back:**
|
|
148
|
+
Return to list_todos step.
|
|
149
|
+
</step>
|
|
150
|
+
|
|
151
|
+
<step name="update_state">
|
|
152
|
+
After any action that changes todo count:
|
|
153
|
+
|
|
154
|
+
Re-run `init todos` to get updated count, then update STATE.md "### Pending Todos" section if exists.
|
|
155
|
+
</step>
|
|
156
|
+
|
|
157
|
+
<step name="git_commit">
|
|
158
|
+
If todo was moved to done/, commit the change:
|
|
159
|
+
|
|
160
|
+
```bash
|
|
161
|
+
git rm --cached ${pending_dir}/[filename] 2>/dev/null || true
|
|
162
|
+
node "$HOME/.claude/deliver-great-systems/bin/dgs-tools.cjs" commit "docs: start work on todo - [title]" --files ${project_root}/todos/done/[filename] ${state_path}
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
Tool respects `commit_docs` config and gitignore automatically.
|
|
166
|
+
|
|
167
|
+
Confirm: "Committed: docs: start work on todo - [title]"
|
|
168
|
+
</step>
|
|
169
|
+
|
|
170
|
+
</process>
|
|
171
|
+
|
|
172
|
+
<success_criteria>
|
|
173
|
+
- [ ] All pending todos listed with title, area, age
|
|
174
|
+
- [ ] Area filter applied if specified
|
|
175
|
+
- [ ] Selected todo's full context loaded
|
|
176
|
+
- [ ] Roadmap context checked for phase match
|
|
177
|
+
- [ ] Appropriate actions offered
|
|
178
|
+
- [ ] Selected action executed
|
|
179
|
+
- [ ] STATE.md updated if todo count changed
|
|
180
|
+
- [ ] Changes committed to git (if todo moved to done/)
|
|
181
|
+
</success_criteria>
|
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
<purpose>
|
|
2
|
+
|
|
3
|
+
Archive accumulated phase directories from completed milestones into `${project_root}/milestones/v{X.Y}-phases/`, and clean up completed quick/fast task directories from `${project_root}/quick/`. Identifies which phases belong to each completed milestone, scans quick task directories for completion (SUMMARY.md presence), shows a combined dry-run summary, and executes on confirmation.
|
|
4
|
+
|
|
5
|
+
</purpose>
|
|
6
|
+
|
|
7
|
+
<context_tier>lite</context_tier>
|
|
8
|
+
|
|
9
|
+
<required_reading>
|
|
10
|
+
|
|
11
|
+
1. `${project_root}/MILESTONES.md`
|
|
12
|
+
2. `${project_root}/milestones/` directory listing
|
|
13
|
+
3. `${project_root}/phases/` directory listing
|
|
14
|
+
4. `${project_root}/quick/` directory listing
|
|
15
|
+
|
|
16
|
+
</required_reading>
|
|
17
|
+
|
|
18
|
+
<process>
|
|
19
|
+
|
|
20
|
+
<step name="initialize" priority="first">
|
|
21
|
+
|
|
22
|
+
Load project context:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
INIT=$(node "$HOME/.claude/deliver-great-systems/bin/dgs-tools.cjs" init milestone-op)
|
|
26
|
+
TIER_FILES=$(node "$HOME/.claude/deliver-great-systems/bin/dgs-tools.cjs" context load-tier lite --raw 2>/dev/null)
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Parse JSON for: `project_root`, `state_path`, `roadmap_path`. The phases base path is `${project_root}/phases/`.
|
|
30
|
+
Use `TIER_FILES` JSON `files` array for project context (PROJECT.md, STATE.md, config.json).
|
|
31
|
+
|
|
32
|
+
</step>
|
|
33
|
+
|
|
34
|
+
<step name="identify_completed_milestones">
|
|
35
|
+
|
|
36
|
+
Read `${project_root}/MILESTONES.md` to identify completed milestones and their versions.
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
cat ${project_root}/MILESTONES.md
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Extract each milestone version (e.g., v1.0, v1.1, v2.0).
|
|
43
|
+
|
|
44
|
+
Check which milestone archive dirs already exist:
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
ls -d ${project_root}/milestones/v*-phases 2>/dev/null
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
Filter to milestones that do NOT already have a `-phases` archive directory.
|
|
51
|
+
|
|
52
|
+
If all milestones already have phase archives, note that milestone archival has nothing to do but continue to the next steps — quick task cleanup may still be needed.
|
|
53
|
+
|
|
54
|
+
</step>
|
|
55
|
+
|
|
56
|
+
<step name="determine_phase_membership">
|
|
57
|
+
|
|
58
|
+
For each completed milestone without a `-phases` archive, read the archived ROADMAP snapshot to determine which phases belong to it:
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
cat ${project_root}/milestones/v{X.Y}-ROADMAP.md
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
Extract phase numbers and names from the archived roadmap (e.g., Phase 1: Foundation, Phase 2: Auth).
|
|
65
|
+
|
|
66
|
+
Check which of those phase directories still exist in `${project_root}/phases/`:
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
ls -d ${project_root}/phases/*/ 2>/dev/null
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
Match phase directories to milestone membership. Only include directories that still exist in `${project_root}/phases/`.
|
|
73
|
+
|
|
74
|
+
</step>
|
|
75
|
+
|
|
76
|
+
<step name="identify_quick_tasks">
|
|
77
|
+
|
|
78
|
+
Scan `${project_root}/quick/` for completed quick task directories.
|
|
79
|
+
|
|
80
|
+
A quick task directory is "completed" if it contains a SUMMARY.md file (pattern: `*-SUMMARY.md`).
|
|
81
|
+
|
|
82
|
+
**Important:** Skip the following special entries:
|
|
83
|
+
- `HISTORY.md` (file, not directory -- the archival log)
|
|
84
|
+
- Any file that is not a directory
|
|
85
|
+
|
|
86
|
+
```bash
|
|
87
|
+
ls -d ${project_root}/quick/*/ 2>/dev/null
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
For each directory found, check if it contains a SUMMARY.md:
|
|
91
|
+
|
|
92
|
+
```bash
|
|
93
|
+
ls ${project_root}/quick/${dir_name}/*-SUMMARY.md 2>/dev/null
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
Directories with a SUMMARY.md are candidates for deletion. Directories without SUMMARY.md are "in-progress" and must be skipped.
|
|
97
|
+
|
|
98
|
+
</step>
|
|
99
|
+
|
|
100
|
+
<step name="check_work_available">
|
|
101
|
+
|
|
102
|
+
If BOTH milestone archival has nothing to do AND no completed quick task directories were found:
|
|
103
|
+
|
|
104
|
+
```
|
|
105
|
+
Nothing to clean up. All milestones already archived and no completed quick task directories found.
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
Stop here.
|
|
109
|
+
|
|
110
|
+
If either milestone archival or quick task cleanup has work to do, continue.
|
|
111
|
+
|
|
112
|
+
</step>
|
|
113
|
+
|
|
114
|
+
<step name="show_dry_run">
|
|
115
|
+
|
|
116
|
+
Present a combined dry-run summary covering milestone archival and quick task cleanup as applicable.
|
|
117
|
+
|
|
118
|
+
**Milestone archival section** (if applicable):
|
|
119
|
+
|
|
120
|
+
```
|
|
121
|
+
## Cleanup Summary
|
|
122
|
+
|
|
123
|
+
### Milestone Phase Archival
|
|
124
|
+
|
|
125
|
+
#### v{X.Y} — {Milestone Name}
|
|
126
|
+
These phase directories will be archived:
|
|
127
|
+
- 01-foundation/
|
|
128
|
+
- 02-auth/
|
|
129
|
+
- 03-core-features/
|
|
130
|
+
|
|
131
|
+
Destination: ${project_root}/milestones/v{X.Y}-phases/
|
|
132
|
+
|
|
133
|
+
#### v{X.Z} — {Milestone Name}
|
|
134
|
+
These phase directories will be archived:
|
|
135
|
+
- 04-security/
|
|
136
|
+
- 05-hardening/
|
|
137
|
+
|
|
138
|
+
Destination: ${project_root}/milestones/v{X.Z}-phases/
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
If no phase directories remain to archive, omit the milestone section.
|
|
142
|
+
|
|
143
|
+
**Quick task cleanup section** (if applicable):
|
|
144
|
+
|
|
145
|
+
```
|
|
146
|
+
### Quick Task Directories
|
|
147
|
+
|
|
148
|
+
These completed quick task directories will be removed:
|
|
149
|
+
- 260317-lv1-implement-req-04-implementation-tracking/
|
|
150
|
+
- 46-fix-documentation-tier-annotation-accura/
|
|
151
|
+
- ...
|
|
152
|
+
|
|
153
|
+
({N} directories — HISTORY.md preserved)
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
If no completed quick task directories found, omit the quick task section.
|
|
157
|
+
|
|
158
|
+
AskUserQuestion: "Proceed with cleanup?" with options: "Yes — execute listed cleanup actions" | "Cancel"
|
|
159
|
+
|
|
160
|
+
If "Cancel": Stop.
|
|
161
|
+
|
|
162
|
+
</step>
|
|
163
|
+
|
|
164
|
+
<step name="archive_phases">
|
|
165
|
+
|
|
166
|
+
For each milestone, move phase directories:
|
|
167
|
+
|
|
168
|
+
```bash
|
|
169
|
+
mkdir -p ${project_root}/milestones/v{X.Y}-phases
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
For each phase directory belonging to this milestone:
|
|
173
|
+
|
|
174
|
+
```bash
|
|
175
|
+
mv ${project_root}/phases/{dir} ${project_root}/milestones/v{X.Y}-phases/
|
|
176
|
+
```
|
|
177
|
+
|
|
178
|
+
Repeat for all milestones in the cleanup set.
|
|
179
|
+
|
|
180
|
+
</step>
|
|
181
|
+
|
|
182
|
+
<step name="cleanup_quick_tasks">
|
|
183
|
+
|
|
184
|
+
For each completed quick task directory identified in the `identify_quick_tasks` step, delete the directory entirely. Quick task planning artifacts (PLAN.md, SUMMARY.md, CONTEXT.md, VERIFICATION.md) are ephemeral working documents. The permanent record lives in HISTORY.md and STATE.md's table.
|
|
185
|
+
|
|
186
|
+
```bash
|
|
187
|
+
rm -rf ${project_root}/quick/${dir_name}
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
**Preserve:** `${project_root}/quick/HISTORY.md` must NEVER be deleted. The cleanup step must explicitly skip this file — only process directories, never files.
|
|
191
|
+
|
|
192
|
+
</step>
|
|
193
|
+
|
|
194
|
+
<step name="commit">
|
|
195
|
+
|
|
196
|
+
Commit the changes. The commit message and staged paths depend on what was cleaned up:
|
|
197
|
+
|
|
198
|
+
**Both milestone archival and quick task cleanup:**
|
|
199
|
+
|
|
200
|
+
```bash
|
|
201
|
+
node "$HOME/.claude/deliver-great-systems/bin/dgs-tools.cjs" commit "chore: archive phase directories and clean up quick tasks" --files ${project_root}/milestones/ ${project_root}/phases/ ${project_root}/quick/
|
|
202
|
+
```
|
|
203
|
+
|
|
204
|
+
**Milestone archival only (no quick task cleanup):**
|
|
205
|
+
|
|
206
|
+
```bash
|
|
207
|
+
node "$HOME/.claude/deliver-great-systems/bin/dgs-tools.cjs" commit "chore: archive phase directories from completed milestones" --files ${project_root}/milestones/ ${project_root}/phases/
|
|
208
|
+
```
|
|
209
|
+
|
|
210
|
+
**Quick task cleanup only (no milestone archival):**
|
|
211
|
+
|
|
212
|
+
```bash
|
|
213
|
+
node "$HOME/.claude/deliver-great-systems/bin/dgs-tools.cjs" commit "chore: clean up completed quick task directories" --files ${project_root}/quick/
|
|
214
|
+
```
|
|
215
|
+
|
|
216
|
+
</step>
|
|
217
|
+
|
|
218
|
+
<step name="report">
|
|
219
|
+
|
|
220
|
+
```
|
|
221
|
+
Cleanup complete:
|
|
222
|
+
|
|
223
|
+
{If milestone archival was performed:}
|
|
224
|
+
Milestones archived:
|
|
225
|
+
{For each milestone}
|
|
226
|
+
- v{X.Y}: {N} phase directories → ${project_root}/milestones/v{X.Y}-phases/
|
|
227
|
+
|
|
228
|
+
{If quick task cleanup was performed:}
|
|
229
|
+
Quick tasks: {N} directories cleaned up (HISTORY.md preserved)
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
</step>
|
|
233
|
+
|
|
234
|
+
</process>
|
|
235
|
+
|
|
236
|
+
<success_criteria>
|
|
237
|
+
|
|
238
|
+
- [ ] All completed milestones without existing phase archives identified
|
|
239
|
+
- [ ] Phase membership determined from archived ROADMAP snapshots
|
|
240
|
+
- [ ] Completed quick task directories identified (SUMMARY.md presence check)
|
|
241
|
+
- [ ] HISTORY.md explicitly preserved — never deleted
|
|
242
|
+
- [ ] Combined dry-run summary shown and user confirmed
|
|
243
|
+
- [ ] Phase directories moved to `${project_root}/milestones/v{X.Y}-phases/`
|
|
244
|
+
- [ ] Completed quick task directories deleted
|
|
245
|
+
- [ ] Changes committed
|
|
246
|
+
|
|
247
|
+
</success_criteria>
|