@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,311 @@
|
|
|
1
|
+
<trigger>
|
|
2
|
+
Use this workflow when:
|
|
3
|
+
- Starting a new session on an existing project
|
|
4
|
+
- User says "continue", "what's next", "where were we", "resume"
|
|
5
|
+
- Any planning operation when planning structure already exists
|
|
6
|
+
- User returns after time away from project
|
|
7
|
+
</trigger>
|
|
8
|
+
|
|
9
|
+
<purpose>
|
|
10
|
+
Instantly restore full project context so "Where were we?" has an immediate, complete answer.
|
|
11
|
+
</purpose>
|
|
12
|
+
|
|
13
|
+
<context_tier>lite</context_tier>
|
|
14
|
+
|
|
15
|
+
<required_reading>
|
|
16
|
+
@~/.claude/deliver-great-systems/references/continuation-format.md
|
|
17
|
+
</required_reading>
|
|
18
|
+
|
|
19
|
+
<process>
|
|
20
|
+
|
|
21
|
+
<step name="initialize">
|
|
22
|
+
Load all context in one call:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
INIT=$(node "$HOME/.claude/deliver-great-systems/bin/dgs-tools.cjs" init resume)
|
|
26
|
+
if [[ "$INIT" == @file:* ]]; then INIT=$(cat "${INIT#@file:}"); fi
|
|
27
|
+
TIER_FILES=$(node "$HOME/.claude/deliver-great-systems/bin/dgs-tools.cjs" context load-tier lite --raw 2>/dev/null)
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Parse JSON for: `state_exists`, `roadmap_exists`, `project_exists`, `planning_exists`, `has_interrupted_agent`, `interrupted_agent_id`, `commit_docs`.
|
|
31
|
+
Use `TIER_FILES` JSON `files` array for project context (PROJECT.md, STATE.md, config.json).
|
|
32
|
+
|
|
33
|
+
**If `state_exists` is true:** Proceed to load_state
|
|
34
|
+
**If `state_exists` is false but `roadmap_exists` or `project_exists` is true:** Offer to reconstruct STATE.md
|
|
35
|
+
**If `planning_exists` is false:** This is a new project - route to /dgs:new-project
|
|
36
|
+
</step>
|
|
37
|
+
|
|
38
|
+
<step name="load_state">
|
|
39
|
+
|
|
40
|
+
Read and parse STATE.md, then PROJECT.md:
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
cat ${state_path}
|
|
44
|
+
cat ${project_path}
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
**From STATE.md extract:**
|
|
48
|
+
|
|
49
|
+
- **Project Reference**: Core value and current focus
|
|
50
|
+
- **Current Position**: Phase X of Y, Plan A of B, Status
|
|
51
|
+
- **Progress**: Visual progress bar
|
|
52
|
+
- **Recent Decisions**: Key decisions affecting current work
|
|
53
|
+
- **Pending Todos**: Ideas captured during sessions
|
|
54
|
+
- **Blockers/Concerns**: Issues carried forward
|
|
55
|
+
- **Session Continuity**: Where we left off, any resume files
|
|
56
|
+
|
|
57
|
+
**From PROJECT.md extract:**
|
|
58
|
+
|
|
59
|
+
- **What This Is**: Current accurate description
|
|
60
|
+
- **Requirements**: Validated, Active, Out of Scope
|
|
61
|
+
- **Key Decisions**: Full decision log with outcomes
|
|
62
|
+
- **Constraints**: Hard limits on implementation
|
|
63
|
+
|
|
64
|
+
</step>
|
|
65
|
+
|
|
66
|
+
<step name="check_incomplete_work">
|
|
67
|
+
Look for incomplete work that needs attention:
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
# Check for continue-here files (mid-plan resumption)
|
|
71
|
+
ls ${project_root}/phases/*/.continue-here*.md 2>/dev/null
|
|
72
|
+
|
|
73
|
+
# Check for plans without summaries (incomplete execution)
|
|
74
|
+
for plan in ${project_root}/phases/*/*-PLAN.md; do
|
|
75
|
+
summary="${plan/PLAN/SUMMARY}"
|
|
76
|
+
[ ! -f "$summary" ] && echo "Incomplete: $plan"
|
|
77
|
+
done 2>/dev/null
|
|
78
|
+
|
|
79
|
+
# Check for interrupted agents (use has_interrupted_agent and interrupted_agent_id from init)
|
|
80
|
+
if [ "$has_interrupted_agent" = "true" ]; then
|
|
81
|
+
echo "Interrupted agent: $interrupted_agent_id"
|
|
82
|
+
fi
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
**If .continue-here file exists:**
|
|
86
|
+
|
|
87
|
+
- This is a mid-plan resumption point
|
|
88
|
+
- Read the file for specific resumption context
|
|
89
|
+
- Flag: "Found mid-plan checkpoint"
|
|
90
|
+
|
|
91
|
+
**If PLAN without SUMMARY exists:**
|
|
92
|
+
|
|
93
|
+
- Execution was started but not completed
|
|
94
|
+
- Flag: "Found incomplete plan execution"
|
|
95
|
+
|
|
96
|
+
**If interrupted agent found:**
|
|
97
|
+
|
|
98
|
+
- Subagent was spawned but session ended before completion
|
|
99
|
+
- Read agent-history.json for task details
|
|
100
|
+
- Flag: "Found interrupted agent"
|
|
101
|
+
</step>
|
|
102
|
+
|
|
103
|
+
<step name="present_status">
|
|
104
|
+
Present complete project status to user:
|
|
105
|
+
|
|
106
|
+
```
|
|
107
|
+
╔══════════════════════════════════════════════════════════════╗
|
|
108
|
+
║ PROJECT STATUS ║
|
|
109
|
+
╠══════════════════════════════════════════════════════════════╣
|
|
110
|
+
║ Building: [one-liner from PROJECT.md "What This Is"] ║
|
|
111
|
+
║ ║
|
|
112
|
+
║ Phase: [X] of [Y] - [Phase name] ║
|
|
113
|
+
║ Plan: [A] of [B] - [Status] ║
|
|
114
|
+
║ Progress: [██████░░░░] XX% ║
|
|
115
|
+
║ ║
|
|
116
|
+
║ Last activity: [date] - [what happened] ║
|
|
117
|
+
╚══════════════════════════════════════════════════════════════╝
|
|
118
|
+
|
|
119
|
+
[If incomplete work found:]
|
|
120
|
+
⚠️ Incomplete work detected:
|
|
121
|
+
- [.continue-here file or incomplete plan]
|
|
122
|
+
|
|
123
|
+
[If interrupted agent found:]
|
|
124
|
+
⚠️ Interrupted agent detected:
|
|
125
|
+
Agent ID: [id]
|
|
126
|
+
Task: [task description from agent-history.json]
|
|
127
|
+
Interrupted: [timestamp]
|
|
128
|
+
|
|
129
|
+
Resume with: Task tool (resume parameter with agent ID)
|
|
130
|
+
|
|
131
|
+
[If pending todos exist:]
|
|
132
|
+
📋 [N] pending todos — /dgs:check-todos to review
|
|
133
|
+
|
|
134
|
+
[If blockers exist:]
|
|
135
|
+
⚠️ Carried concerns:
|
|
136
|
+
- [blocker 1]
|
|
137
|
+
- [blocker 2]
|
|
138
|
+
|
|
139
|
+
[If alignment is not ✓:]
|
|
140
|
+
⚠️ Brief alignment: [status] - [assessment]
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
</step>
|
|
144
|
+
|
|
145
|
+
<step name="determine_next_action">
|
|
146
|
+
Based on project state, determine the most logical next action:
|
|
147
|
+
|
|
148
|
+
**If interrupted agent exists:**
|
|
149
|
+
→ Primary: Resume interrupted agent (Task tool with resume parameter)
|
|
150
|
+
→ Option: Start fresh (abandon agent work)
|
|
151
|
+
|
|
152
|
+
**If .continue-here file exists:**
|
|
153
|
+
→ Primary: Resume from checkpoint
|
|
154
|
+
→ Option: Start fresh on current plan
|
|
155
|
+
|
|
156
|
+
**If incomplete plan (PLAN without SUMMARY):**
|
|
157
|
+
→ Primary: Complete the incomplete plan
|
|
158
|
+
→ Option: Abandon and move on
|
|
159
|
+
|
|
160
|
+
**If phase in progress, all plans complete:**
|
|
161
|
+
→ Primary: Transition to next phase
|
|
162
|
+
→ Option: Review completed work
|
|
163
|
+
|
|
164
|
+
**If phase ready to plan:**
|
|
165
|
+
→ Check if CONTEXT.md exists for this phase:
|
|
166
|
+
|
|
167
|
+
- If CONTEXT.md missing:
|
|
168
|
+
→ Primary: Discuss phase vision (how user imagines it working)
|
|
169
|
+
→ Secondary: Plan directly (skip context gathering)
|
|
170
|
+
- If CONTEXT.md exists:
|
|
171
|
+
→ Primary: Plan the phase
|
|
172
|
+
→ Option: Review roadmap
|
|
173
|
+
|
|
174
|
+
**If phase ready to execute:**
|
|
175
|
+
→ Primary: Execute next plan
|
|
176
|
+
→ Option: Review the plan first
|
|
177
|
+
</step>
|
|
178
|
+
|
|
179
|
+
<step name="offer_options">
|
|
180
|
+
Present contextual options based on project state:
|
|
181
|
+
|
|
182
|
+
```
|
|
183
|
+
What would you like to do?
|
|
184
|
+
|
|
185
|
+
[Primary action based on state - e.g.:]
|
|
186
|
+
1. Resume interrupted agent [if interrupted agent found]
|
|
187
|
+
OR
|
|
188
|
+
1. Execute phase (/dgs:execute-phase {phase})
|
|
189
|
+
OR
|
|
190
|
+
1. Discuss Phase 3 context (/dgs:discuss-phase 3) [if CONTEXT.md missing]
|
|
191
|
+
OR
|
|
192
|
+
1. Plan Phase 3 (/dgs:plan-phase 3) [if CONTEXT.md exists or discuss option declined]
|
|
193
|
+
|
|
194
|
+
[Secondary options:]
|
|
195
|
+
2. Review current phase status
|
|
196
|
+
3. Check pending todos ([N] pending)
|
|
197
|
+
4. Review brief alignment
|
|
198
|
+
5. Something else
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
**Note:** When offering phase planning, check for CONTEXT.md existence first:
|
|
202
|
+
|
|
203
|
+
```bash
|
|
204
|
+
ls ${project_root}/phases/XX-name/*-CONTEXT.md 2>/dev/null
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
If missing, suggest discuss-phase before plan. If exists, offer plan directly.
|
|
208
|
+
|
|
209
|
+
Wait for user selection.
|
|
210
|
+
</step>
|
|
211
|
+
|
|
212
|
+
<step name="route_to_workflow">
|
|
213
|
+
Based on user selection, route to appropriate workflow:
|
|
214
|
+
|
|
215
|
+
- **Execute plan** → Show command for user to run after clearing:
|
|
216
|
+
```
|
|
217
|
+
---
|
|
218
|
+
|
|
219
|
+
## ▶ Next Up
|
|
220
|
+
|
|
221
|
+
**{phase}-{plan}: [Plan Name]** — [objective from PLAN.md]
|
|
222
|
+
|
|
223
|
+
`/dgs:execute-phase {phase}`
|
|
224
|
+
|
|
225
|
+
<sub>`/clear` first → fresh context window</sub>
|
|
226
|
+
|
|
227
|
+
---
|
|
228
|
+
```
|
|
229
|
+
- **Plan phase** → Show command for user to run after clearing:
|
|
230
|
+
```
|
|
231
|
+
---
|
|
232
|
+
|
|
233
|
+
## ▶ Next Up
|
|
234
|
+
|
|
235
|
+
**Phase [N]: [Name]** — [Goal from ROADMAP.md]
|
|
236
|
+
|
|
237
|
+
`/dgs:plan-phase [phase-number]`
|
|
238
|
+
|
|
239
|
+
<sub>`/clear` first → fresh context window</sub>
|
|
240
|
+
|
|
241
|
+
---
|
|
242
|
+
|
|
243
|
+
**Also available:**
|
|
244
|
+
- `/dgs:discuss-phase [N]` — gather context first
|
|
245
|
+
- `/dgs:research-phase [N]` — investigate unknowns
|
|
246
|
+
|
|
247
|
+
---
|
|
248
|
+
```
|
|
249
|
+
- **Transition** → ./transition.md
|
|
250
|
+
- **Check todos** → Read ${project_root}/todos/pending/, present summary
|
|
251
|
+
- **Review alignment** → Read PROJECT.md, compare to current state
|
|
252
|
+
- **Something else** → Ask what they need
|
|
253
|
+
</step>
|
|
254
|
+
|
|
255
|
+
<step name="update_session">
|
|
256
|
+
Before proceeding to routed workflow, update session continuity:
|
|
257
|
+
|
|
258
|
+
Update STATE.md:
|
|
259
|
+
|
|
260
|
+
```markdown
|
|
261
|
+
## Session Continuity
|
|
262
|
+
|
|
263
|
+
Last session: [now]
|
|
264
|
+
Stopped at: Session resumed, proceeding to [action]
|
|
265
|
+
Resume file: [updated if applicable]
|
|
266
|
+
```
|
|
267
|
+
|
|
268
|
+
This ensures if session ends unexpectedly, next resume knows the state.
|
|
269
|
+
</step>
|
|
270
|
+
|
|
271
|
+
</process>
|
|
272
|
+
|
|
273
|
+
<reconstruction>
|
|
274
|
+
If STATE.md is missing but other artifacts exist:
|
|
275
|
+
|
|
276
|
+
"STATE.md missing. Reconstructing from artifacts..."
|
|
277
|
+
|
|
278
|
+
1. Read PROJECT.md → Extract "What This Is" and Core Value
|
|
279
|
+
2. Read ROADMAP.md → Determine phases, find current position
|
|
280
|
+
3. Scan \*-SUMMARY.md files → Extract decisions, concerns
|
|
281
|
+
4. Count pending todos in ${project_root}/todos/pending/
|
|
282
|
+
5. Check for .continue-here files → Session continuity
|
|
283
|
+
|
|
284
|
+
Reconstruct and write STATE.md, then proceed normally.
|
|
285
|
+
|
|
286
|
+
This handles cases where:
|
|
287
|
+
|
|
288
|
+
- Project predates STATE.md introduction
|
|
289
|
+
- File was accidentally deleted
|
|
290
|
+
- Cloning repo without full planning state
|
|
291
|
+
</reconstruction>
|
|
292
|
+
|
|
293
|
+
<quick_resume>
|
|
294
|
+
If user says "continue" or "go":
|
|
295
|
+
- Load state silently
|
|
296
|
+
- Determine primary action
|
|
297
|
+
- Execute immediately without presenting options
|
|
298
|
+
|
|
299
|
+
"Continuing from [state]... [action]"
|
|
300
|
+
</quick_resume>
|
|
301
|
+
|
|
302
|
+
<success_criteria>
|
|
303
|
+
Resume is complete when:
|
|
304
|
+
|
|
305
|
+
- [ ] STATE.md loaded (or reconstructed)
|
|
306
|
+
- [ ] Incomplete work detected and flagged
|
|
307
|
+
- [ ] Clear status presented to user
|
|
308
|
+
- [ ] Contextual next actions offered
|
|
309
|
+
- [ ] User knows exactly where project stands
|
|
310
|
+
- [ ] Session continuity updated
|
|
311
|
+
</success_criteria>
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
<purpose>
|
|
2
|
+
Roll back all code changes made by a milestone job. Reads the job file for starting commit SHAs, shows a preview of what will be rolled back (repos + phases), confirms with the user (this is destructive), resets CODE repos only (NOT the planning repo), deletes SUMMARY.md files for phases that were executed by the job, and marks the job status as "rolled_back".
|
|
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="load_context" priority="first">
|
|
14
|
+
Load project context via tier system:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
TIER_FILES=$(node "$HOME/.claude/deliver-great-systems/bin/dgs-tools.cjs" context load-tier lite --raw 2>/dev/null)
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Use `TIER_FILES` JSON `files` array for project context (PROJECT.md, STATE.md, config.json).
|
|
21
|
+
</step>
|
|
22
|
+
|
|
23
|
+
<step name="parse_arguments">
|
|
24
|
+
Extract version from `$ARGUMENTS`.
|
|
25
|
+
|
|
26
|
+
```
|
|
27
|
+
VERSION = first argument from $ARGUMENTS
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
**If no version provided:**
|
|
31
|
+
```
|
|
32
|
+
Error: Version argument required. Usage: /dgs:rollback-job <version>
|
|
33
|
+
```
|
|
34
|
+
</step>
|
|
35
|
+
|
|
36
|
+
<step name="locate_and_preview">
|
|
37
|
+
Find the job file:
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
RESULT=$(node ~/.claude/deliver-great-systems/bin/dgs-tools.cjs jobs find-job "$VERSION")
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
If not found, display error:
|
|
44
|
+
```
|
|
45
|
+
Error: No job found for version {VERSION}. Run /dgs:list-jobs to see available jobs.
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
Parse the job file:
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
JOB=$(node ~/.claude/deliver-great-systems/bin/dgs-tools.cjs jobs parse "$JOB_PATH")
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
Check for `startShas` in the parsed result. If null/missing:
|
|
55
|
+
```
|
|
56
|
+
Error: Job {version} has no recorded starting SHAs. Only jobs run with SHA-recording enabled can be rolled back.
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
Display preview:
|
|
60
|
+
|
|
61
|
+
```
|
|
62
|
+
=== Rollback Preview: {version} ===
|
|
63
|
+
|
|
64
|
+
Code repos that will be reset:
|
|
65
|
+
{for each repo in startShas (skip _planning):}
|
|
66
|
+
- {repoName}: HEAD will be reset to {sha}
|
|
67
|
+
|
|
68
|
+
Planning repo will NOT be modified.
|
|
69
|
+
|
|
70
|
+
Phases whose SUMMARY.md files will be deleted:
|
|
71
|
+
{list phases from completed execute-phase steps}
|
|
72
|
+
|
|
73
|
+
WARNING: This is destructive. Code changes in the above repos will be permanently lost.
|
|
74
|
+
```
|
|
75
|
+
</step>
|
|
76
|
+
|
|
77
|
+
<step name="confirm">
|
|
78
|
+
Ask user for confirmation:
|
|
79
|
+
|
|
80
|
+
```
|
|
81
|
+
Type "rollback" to confirm, or anything else to cancel.
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
If user does not type exactly "rollback", display `Rollback cancelled.` and halt.
|
|
85
|
+
</step>
|
|
86
|
+
|
|
87
|
+
<step name="execute_rollback">
|
|
88
|
+
Call the rollback CLI:
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
RESULT=$(node ~/.claude/deliver-great-systems/bin/dgs-tools.cjs jobs rollback "$VERSION")
|
|
92
|
+
```
|
|
93
|
+
</step>
|
|
94
|
+
|
|
95
|
+
<step name="display_result">
|
|
96
|
+
Based on result:
|
|
97
|
+
|
|
98
|
+
**If `rolledBack: true`:**
|
|
99
|
+
```
|
|
100
|
+
=== Rollback Complete: {version} ===
|
|
101
|
+
|
|
102
|
+
Repos reset:
|
|
103
|
+
{for each repo in repos_reset:}
|
|
104
|
+
- {name}: reset to {sha}
|
|
105
|
+
|
|
106
|
+
SUMMARY files deleted:
|
|
107
|
+
{for each file in summaries_deleted:}
|
|
108
|
+
- {file}
|
|
109
|
+
|
|
110
|
+
Job status updated to: rolled_back
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
**If `rolledBack: false`:**
|
|
114
|
+
Display the reason:
|
|
115
|
+
- `not_found`: `No job found for version {version}.`
|
|
116
|
+
- `no_start_shas`: `Job {version} has no recorded starting SHAs.`
|
|
117
|
+
</step>
|
|
118
|
+
|
|
119
|
+
</process>
|
|
120
|
+
|
|
121
|
+
<success_criteria>
|
|
122
|
+
- [ ] Version extracted from arguments with error on missing
|
|
123
|
+
- [ ] Job file located and parsed for startShas
|
|
124
|
+
- [ ] Preview shows repos, SHAs, and phases that will be affected
|
|
125
|
+
- [ ] User must type "rollback" to confirm (destructive operation)
|
|
126
|
+
- [ ] Code repos reset via `git reset --hard` to recorded SHAs
|
|
127
|
+
- [ ] Planning repo NOT touched
|
|
128
|
+
- [ ] SUMMARY.md files deleted for executed phases
|
|
129
|
+
- [ ] Job status updated to "rolled_back"
|
|
130
|
+
</success_criteria>
|