@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,43 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: dgs:research-idea
|
|
3
|
+
description: Research an idea's feasibility and technical landscape via subagent
|
|
4
|
+
argument-hint: "[idea-id]"
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Write
|
|
8
|
+
- Bash
|
|
9
|
+
- Glob
|
|
10
|
+
- Grep
|
|
11
|
+
- WebSearch
|
|
12
|
+
- WebFetch
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
<objective>
|
|
16
|
+
Research an idea's technical landscape and feasibility through a subagent workflow. Investigates five adaptive dimensions -- web search, codebase analysis, landscape survey, approach identification, and feasibility assessment -- to produce a structured research document and a Research Log entry in the idea file.
|
|
17
|
+
|
|
18
|
+
**Two modes:**
|
|
19
|
+
- **With an idea ID** (`/dgs:research-idea 5`): Researches that specific idea directly
|
|
20
|
+
- **Without an idea ID** (`/dgs:research-idea`): Lists pending ideas for selection
|
|
21
|
+
|
|
22
|
+
The output is a research document at `.planning/docs/ideas/pending/{slug}-research.md` and a Research Log entry appended to the idea file, both committed together. When prior research exists, the document is overwritten with a "Changes from Prior Research" section highlighting what shifted.
|
|
23
|
+
</objective>
|
|
24
|
+
|
|
25
|
+
<execution_context>
|
|
26
|
+
@~/.claude/deliver-great-systems/workflows/research-idea.md
|
|
27
|
+
</execution_context>
|
|
28
|
+
|
|
29
|
+
<context>
|
|
30
|
+
Arguments: $ARGUMENTS (optional idea ID)
|
|
31
|
+
</context>
|
|
32
|
+
|
|
33
|
+
<process>
|
|
34
|
+
**Follow the research-idea workflow** from `@~/.claude/deliver-great-systems/workflows/research-idea.md`.
|
|
35
|
+
|
|
36
|
+
The workflow handles all logic including:
|
|
37
|
+
1. Argument parsing and idea selection (with or without ID)
|
|
38
|
+
2. Loading idea context and prior research/discussion history
|
|
39
|
+
3. Five adaptive research dimensions (web search, codebase analysis, landscape survey, approach identification, feasibility assessment)
|
|
40
|
+
4. Research document creation at `.planning/docs/ideas/pending/{slug}-research.md`
|
|
41
|
+
5. Research log entry save via `dgs-tools.cjs ideas research-save`
|
|
42
|
+
6. Git commit of both files and next-step suggestion
|
|
43
|
+
</process>
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: dgs:research-phase
|
|
3
|
+
description: Research how to implement a phase (standalone - usually use /dgs:plan-phase instead)
|
|
4
|
+
argument-hint: "[phase]"
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Bash
|
|
8
|
+
- Task
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
<objective>
|
|
12
|
+
Research how to implement a phase. Spawns dgs-phase-researcher agent with phase context.
|
|
13
|
+
|
|
14
|
+
**Note:** This is a standalone research command. For most workflows, use `/dgs:plan-phase` which integrates research automatically.
|
|
15
|
+
|
|
16
|
+
**Use this command when:**
|
|
17
|
+
- You want to research without planning yet
|
|
18
|
+
- You want to re-research after planning is complete
|
|
19
|
+
- You need to investigate before deciding if a phase is feasible
|
|
20
|
+
|
|
21
|
+
**Orchestrator role:** Parse phase, validate against roadmap, check existing research, gather context, spawn researcher agent, present results.
|
|
22
|
+
|
|
23
|
+
**Why subagent:** Research burns context fast (WebSearch, Context7 queries, source verification). Fresh 200k context for investigation. Main context stays lean for user interaction.
|
|
24
|
+
</objective>
|
|
25
|
+
|
|
26
|
+
<context>
|
|
27
|
+
Phase number: $ARGUMENTS (required)
|
|
28
|
+
|
|
29
|
+
Normalize phase input in step 1 before any directory lookups.
|
|
30
|
+
</context>
|
|
31
|
+
|
|
32
|
+
<process>
|
|
33
|
+
|
|
34
|
+
## 0. Initialize Context
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
INIT=$(node ~/.claude/deliver-great-systems/bin/dgs-tools.cjs init phase-op "$ARGUMENTS")
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Extract from init JSON: `phase_dir`, `phase_number`, `phase_name`, `phase_found`, `commit_docs`, `has_research`, `state_path`, `requirements_path`, `context_path`, `research_path`.
|
|
41
|
+
|
|
42
|
+
Resolve researcher model:
|
|
43
|
+
```bash
|
|
44
|
+
RESEARCHER_MODEL=$(node ~/.claude/deliver-great-systems/bin/dgs-tools.cjs resolve-model dgs-phase-researcher --raw)
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## 1. Validate Phase
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
PHASE_INFO=$(node ~/.claude/deliver-great-systems/bin/dgs-tools.cjs roadmap get-phase "${phase_number}")
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
**If `found` is false:** Error and exit. **If `found` is true:** Extract `phase_number`, `phase_name`, `goal` from JSON.
|
|
54
|
+
|
|
55
|
+
## 2. Check Existing Research
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
ls .planning/phases/${PHASE}-*/RESEARCH.md 2>/dev/null
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
**If exists:** Offer: 1) Update research, 2) View existing, 3) Skip. Wait for response.
|
|
62
|
+
|
|
63
|
+
**If doesn't exist:** Continue.
|
|
64
|
+
|
|
65
|
+
## 3. Gather Phase Context
|
|
66
|
+
|
|
67
|
+
Use paths from INIT (do not inline file contents in orchestrator context):
|
|
68
|
+
- `requirements_path`
|
|
69
|
+
- `context_path`
|
|
70
|
+
- `state_path`
|
|
71
|
+
|
|
72
|
+
Present summary with phase description and what files the researcher will load.
|
|
73
|
+
|
|
74
|
+
## 4. Spawn dgs-phase-researcher Agent
|
|
75
|
+
|
|
76
|
+
Research modes: ecosystem (default), feasibility, implementation, comparison.
|
|
77
|
+
|
|
78
|
+
```markdown
|
|
79
|
+
<research_type>
|
|
80
|
+
Phase Research — investigating HOW to implement a specific phase well.
|
|
81
|
+
</research_type>
|
|
82
|
+
|
|
83
|
+
<key_insight>
|
|
84
|
+
The question is NOT "which library should I use?"
|
|
85
|
+
|
|
86
|
+
The question is: "What do I not know that I don't know?"
|
|
87
|
+
|
|
88
|
+
For this phase, discover:
|
|
89
|
+
- What's the established architecture pattern?
|
|
90
|
+
- What libraries form the standard stack?
|
|
91
|
+
- What problems do people commonly hit?
|
|
92
|
+
- What's SOTA vs what Claude's training thinks is SOTA?
|
|
93
|
+
- What should NOT be hand-rolled?
|
|
94
|
+
</key_insight>
|
|
95
|
+
|
|
96
|
+
<objective>
|
|
97
|
+
Research implementation approach for Phase {phase_number}: {phase_name}
|
|
98
|
+
Mode: ecosystem
|
|
99
|
+
</objective>
|
|
100
|
+
|
|
101
|
+
<files_to_read>
|
|
102
|
+
- {requirements_path} (Requirements)
|
|
103
|
+
- {context_path} (Phase context from discuss-phase, if exists)
|
|
104
|
+
- {state_path} (Prior project decisions and blockers)
|
|
105
|
+
</files_to_read>
|
|
106
|
+
|
|
107
|
+
<additional_context>
|
|
108
|
+
**Phase description:** {phase_description}
|
|
109
|
+
</additional_context>
|
|
110
|
+
|
|
111
|
+
<downstream_consumer>
|
|
112
|
+
Your RESEARCH.md will be loaded by `/dgs:plan-phase` which uses specific sections:
|
|
113
|
+
- `## Standard Stack` → Plans use these libraries
|
|
114
|
+
- `## Architecture Patterns` → Task structure follows these
|
|
115
|
+
- `## Don't Hand-Roll` → Tasks NEVER build custom solutions for listed problems
|
|
116
|
+
- `## Common Pitfalls` → Verification steps check for these
|
|
117
|
+
- `## Code Examples` → Task actions reference these patterns
|
|
118
|
+
|
|
119
|
+
Be prescriptive, not exploratory. "Use X" not "Consider X or Y."
|
|
120
|
+
</downstream_consumer>
|
|
121
|
+
|
|
122
|
+
<quality_gate>
|
|
123
|
+
Before declaring complete, verify:
|
|
124
|
+
- [ ] All domains investigated (not just some)
|
|
125
|
+
- [ ] Negative claims verified with official docs
|
|
126
|
+
- [ ] Multiple sources for critical claims
|
|
127
|
+
- [ ] Confidence levels assigned honestly
|
|
128
|
+
- [ ] Section names match what plan-phase expects
|
|
129
|
+
</quality_gate>
|
|
130
|
+
|
|
131
|
+
<output>
|
|
132
|
+
Write to: .planning/phases/${PHASE}-{slug}/${PHASE}-RESEARCH.md
|
|
133
|
+
</output>
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
```
|
|
137
|
+
Task(
|
|
138
|
+
prompt="First, read ~/.claude/agents/dgs-phase-researcher.md for your role and instructions.\n\n" + filled_prompt,
|
|
139
|
+
subagent_type="general-purpose",
|
|
140
|
+
model="{researcher_model}",
|
|
141
|
+
description="Research Phase {phase}"
|
|
142
|
+
)
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
## 5. Handle Agent Return
|
|
146
|
+
|
|
147
|
+
**`## RESEARCH COMPLETE`:** Display summary, offer: Plan phase, Dig deeper, Review full, Done.
|
|
148
|
+
|
|
149
|
+
**`## CHECKPOINT REACHED`:** Present to user, get response, spawn continuation.
|
|
150
|
+
|
|
151
|
+
**`## RESEARCH INCONCLUSIVE`:** Show what was attempted, offer: Add context, Try different mode, Manual.
|
|
152
|
+
|
|
153
|
+
## 6. Spawn Continuation Agent
|
|
154
|
+
|
|
155
|
+
```markdown
|
|
156
|
+
<objective>
|
|
157
|
+
Continue research for Phase {phase_number}: {phase_name}
|
|
158
|
+
</objective>
|
|
159
|
+
|
|
160
|
+
<prior_state>
|
|
161
|
+
<files_to_read>
|
|
162
|
+
- .planning/phases/${PHASE}-{slug}/${PHASE}-RESEARCH.md (Existing research)
|
|
163
|
+
</files_to_read>
|
|
164
|
+
</prior_state>
|
|
165
|
+
|
|
166
|
+
<checkpoint_response>
|
|
167
|
+
**Type:** {checkpoint_type}
|
|
168
|
+
**Response:** {user_response}
|
|
169
|
+
</checkpoint_response>
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
```
|
|
173
|
+
Task(
|
|
174
|
+
prompt="First, read ~/.claude/agents/dgs-phase-researcher.md for your role and instructions.\n\n" + continuation_prompt,
|
|
175
|
+
subagent_type="general-purpose",
|
|
176
|
+
model="{researcher_model}",
|
|
177
|
+
description="Continue research Phase {phase}"
|
|
178
|
+
)
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
</process>
|
|
182
|
+
|
|
183
|
+
<success_criteria>
|
|
184
|
+
- [ ] Phase validated against roadmap
|
|
185
|
+
- [ ] Existing research checked
|
|
186
|
+
- [ ] dgs-phase-researcher spawned with context
|
|
187
|
+
- [ ] Checkpoints handled correctly
|
|
188
|
+
- [ ] User knows next steps
|
|
189
|
+
</success_criteria>
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: dgs:restore-idea
|
|
3
|
+
description: Restore a rejected, done, or consolidated idea back to pending
|
|
4
|
+
argument-hint: <idea-id>
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Write
|
|
8
|
+
- Bash
|
|
9
|
+
- AskUserQuestion
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
<objective>
|
|
13
|
+
Restore a rejected, done, or consolidated idea back to pending state for reconsideration.
|
|
14
|
+
|
|
15
|
+
Routes to the restore-idea workflow which handles:
|
|
16
|
+
- Finding and displaying the idea from rejected, done, or consolidated state
|
|
17
|
+
- For consolidated ideas, removing the consolidated_into field from frontmatter
|
|
18
|
+
- Confirmation before restore (always required)
|
|
19
|
+
- State transition via git mv
|
|
20
|
+
- Preservation of rejection reason as history
|
|
21
|
+
- Auto-commit to git
|
|
22
|
+
</objective>
|
|
23
|
+
|
|
24
|
+
<execution_context>
|
|
25
|
+
@~/.claude/deliver-great-systems/workflows/restore-idea.md
|
|
26
|
+
</execution_context>
|
|
27
|
+
|
|
28
|
+
<context>
|
|
29
|
+
Arguments: $ARGUMENTS (idea ID)
|
|
30
|
+
|
|
31
|
+
State is resolved in-workflow via dgs-tools.cjs ideas list.
|
|
32
|
+
</context>
|
|
33
|
+
|
|
34
|
+
<process>
|
|
35
|
+
**Follow the restore-idea workflow** from `@~/.claude/deliver-great-systems/workflows/restore-idea.md`.
|
|
36
|
+
|
|
37
|
+
The workflow handles all logic including:
|
|
38
|
+
1. Argument parsing (idea ID extraction)
|
|
39
|
+
2. Finding and displaying the idea with its current state and any rejection reason
|
|
40
|
+
3. Confirmation prompt (always required; for consolidated ideas, notes consolidated_into removal)
|
|
41
|
+
4. State transition from rejected/, done/, or consolidated/ back to pending/ via git mv
|
|
42
|
+
5. For consolidated ideas, removal of the consolidated_into field from frontmatter
|
|
43
|
+
6. Preservation of rejection reason in file as history (not removed)
|
|
44
|
+
7. Auto-commit to git
|
|
45
|
+
</process>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: dgs:resume-work
|
|
3
|
+
description: Resume work from previous session with full context restoration
|
|
4
|
+
allowed-tools:
|
|
5
|
+
- Read
|
|
6
|
+
- Bash
|
|
7
|
+
- Write
|
|
8
|
+
- AskUserQuestion
|
|
9
|
+
- SlashCommand
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
<objective>
|
|
13
|
+
Restore complete project context and resume work seamlessly from previous session.
|
|
14
|
+
|
|
15
|
+
Routes to the resume-project workflow which handles:
|
|
16
|
+
|
|
17
|
+
- STATE.md loading (or reconstruction if missing)
|
|
18
|
+
- Checkpoint detection (.continue-here files)
|
|
19
|
+
- Incomplete work detection (PLAN without SUMMARY)
|
|
20
|
+
- Status presentation
|
|
21
|
+
- Context-aware next action routing
|
|
22
|
+
</objective>
|
|
23
|
+
|
|
24
|
+
<execution_context>
|
|
25
|
+
@~/.claude/deliver-great-systems/workflows/resume-project.md
|
|
26
|
+
</execution_context>
|
|
27
|
+
|
|
28
|
+
<process>
|
|
29
|
+
**Follow the resume-project workflow** from `@~/.claude/deliver-great-systems/workflows/resume-project.md`.
|
|
30
|
+
|
|
31
|
+
The workflow handles all resumption logic including:
|
|
32
|
+
|
|
33
|
+
1. Project existence verification
|
|
34
|
+
2. STATE.md loading or reconstruction
|
|
35
|
+
3. Checkpoint and incomplete work detection
|
|
36
|
+
4. Visual status presentation
|
|
37
|
+
5. Context-aware option offering (checks CONTEXT.md before suggesting plan vs discuss)
|
|
38
|
+
6. Routing to appropriate next command
|
|
39
|
+
7. Session continuity updates
|
|
40
|
+
</process>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: dgs:rollback-job
|
|
3
|
+
description: Roll back all code changes made by a milestone job
|
|
4
|
+
argument-hint: "<version>"
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Bash
|
|
8
|
+
- Write
|
|
9
|
+
---
|
|
10
|
+
<objective>
|
|
11
|
+
Roll back all code repo changes made by a milestone job to their pre-job commit SHAs. Planning artifacts are preserved; only code repos are reset.
|
|
12
|
+
</objective>
|
|
13
|
+
|
|
14
|
+
<execution_context>
|
|
15
|
+
@~/.claude/deliver-great-systems/workflows/rollback-job.md
|
|
16
|
+
</execution_context>
|
|
17
|
+
|
|
18
|
+
<context>
|
|
19
|
+
Version: $ARGUMENTS
|
|
20
|
+
</context>
|
|
21
|
+
|
|
22
|
+
<process>
|
|
23
|
+
Execute the rollback-job workflow from @~/.claude/deliver-great-systems/workflows/rollback-job.md end-to-end.
|
|
24
|
+
</process>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: dgs:run-job
|
|
3
|
+
description: Execute a milestone build job
|
|
4
|
+
argument-hint: "<version> [--dry-run]"
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Bash
|
|
8
|
+
- Glob
|
|
9
|
+
- Grep
|
|
10
|
+
- Write
|
|
11
|
+
- Task
|
|
12
|
+
---
|
|
13
|
+
<objective>
|
|
14
|
+
Execute a pending or partially-completed milestone job, spawning an isolated subagent per step. Supports --dry-run mode to preview steps without executing them.
|
|
15
|
+
|
|
16
|
+
Reads the job file, loops through pending steps, spawns a fresh subagent for each DGS command, updates the job file with status and timestamps in real-time, handles failures with immediate halt, manages the dynamic audit-gap-fix cycle, and moves completed jobs to the completed/ directory.
|
|
17
|
+
|
|
18
|
+
Context budget: ~10-15% orchestrator, 100% fresh per subagent.
|
|
19
|
+
</objective>
|
|
20
|
+
|
|
21
|
+
<execution_context>
|
|
22
|
+
@~/.claude/deliver-great-systems/workflows/run-job.md
|
|
23
|
+
</execution_context>
|
|
24
|
+
|
|
25
|
+
<context>
|
|
26
|
+
Version: $ARGUMENTS
|
|
27
|
+
|
|
28
|
+
The version argument identifies which milestone job to execute (e.g., `v6`, `v6.0`).
|
|
29
|
+
State is resolved in-workflow via `dgs-tools.cjs jobs find-job`, `parse`, `update-step`, `update-header`, `move`, and `insert-steps` CLI calls.
|
|
30
|
+
</context>
|
|
31
|
+
|
|
32
|
+
<process>
|
|
33
|
+
Execute the run-job workflow from @~/.claude/deliver-great-systems/workflows/run-job.md end-to-end.
|
|
34
|
+
Preserve all workflow gates (job location, step execution, failure handling, gap-fix cycle, completion).
|
|
35
|
+
</process>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: dgs:search
|
|
3
|
+
description: Search across ideas, specs, docs, and projects
|
|
4
|
+
argument-hint: "query" [--ideas-only] [--specs-only] [--docs-only] [--include-rejected] [--tags TAG1,TAG2]
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Bash
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
<objective>
|
|
11
|
+
Search all DGS content (ideas, specs, docs, projects) for keyword matches with scope and tag filters. Display results grouped by type with context snippets.
|
|
12
|
+
|
|
13
|
+
Routes to the search workflow which handles:
|
|
14
|
+
- Argument parsing (query string, scope flags, tag filter)
|
|
15
|
+
- Executing search via dgs-tools.cjs
|
|
16
|
+
- Formatting grouped results with titles, paths, and snippets
|
|
17
|
+
- Overflow indicators for large result sets
|
|
18
|
+
</objective>
|
|
19
|
+
|
|
20
|
+
<execution_context>
|
|
21
|
+
@~/.claude/deliver-great-systems/workflows/search.md
|
|
22
|
+
</execution_context>
|
|
23
|
+
|
|
24
|
+
<context>
|
|
25
|
+
Arguments: $ARGUMENTS (query string and optional filter flags)
|
|
26
|
+
|
|
27
|
+
Search data is fetched in-workflow via `dgs-tools.cjs search`.
|
|
28
|
+
</context>
|
|
29
|
+
|
|
30
|
+
<process>
|
|
31
|
+
**Follow the search workflow** from `@~/.claude/deliver-great-systems/workflows/search.md`.
|
|
32
|
+
|
|
33
|
+
The workflow handles all logic including:
|
|
34
|
+
1. Parsing the query and filter flags from arguments
|
|
35
|
+
2. Prompting for a query if none provided
|
|
36
|
+
3. Running search via dgs-tools.cjs with applicable flags
|
|
37
|
+
4. Formatting grouped output by type (Ideas, Specs, Documents, Projects)
|
|
38
|
+
5. Displaying titles, paths, context snippets, and overflow counts
|
|
39
|
+
6. Showing total match count or empty-state message
|
|
40
|
+
</process>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: dgs:set-profile
|
|
3
|
+
description: Switch model profile for DGS agents (quality/balanced/budget)
|
|
4
|
+
argument-hint: <profile>
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Write
|
|
8
|
+
- Bash
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
<objective>
|
|
12
|
+
Switch the model profile used by DGS agents. Controls which Claude model each agent uses, balancing quality vs token spend.
|
|
13
|
+
|
|
14
|
+
Routes to the set-profile workflow which handles:
|
|
15
|
+
- Argument validation (quality/balanced/budget)
|
|
16
|
+
- Config file creation if missing
|
|
17
|
+
- Profile update in config.json
|
|
18
|
+
- Confirmation with model table display
|
|
19
|
+
</objective>
|
|
20
|
+
|
|
21
|
+
<execution_context>
|
|
22
|
+
@~/.claude/deliver-great-systems/workflows/set-profile.md
|
|
23
|
+
</execution_context>
|
|
24
|
+
|
|
25
|
+
<process>
|
|
26
|
+
**Follow the set-profile workflow** from `@~/.claude/deliver-great-systems/workflows/set-profile.md`.
|
|
27
|
+
|
|
28
|
+
The workflow handles all logic including:
|
|
29
|
+
1. Profile argument validation
|
|
30
|
+
2. Config file ensuring
|
|
31
|
+
3. Config reading and updating
|
|
32
|
+
4. Model table generation from MODEL_PROFILES
|
|
33
|
+
5. Confirmation display
|
|
34
|
+
</process>
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: dgs:settings
|
|
3
|
+
description: Configure DGS workflow toggles, model profile, and cross-LLM review settings
|
|
4
|
+
allowed-tools:
|
|
5
|
+
- Read
|
|
6
|
+
- Write
|
|
7
|
+
- Bash
|
|
8
|
+
- AskUserQuestion
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
<objective>
|
|
12
|
+
Interactive configuration of DGS workflow agents, model profile, and cross-LLM review settings via multi-question prompt.
|
|
13
|
+
|
|
14
|
+
Routes to the settings workflow which handles:
|
|
15
|
+
- Config existence ensuring
|
|
16
|
+
- Current settings reading and parsing
|
|
17
|
+
- Interactive workflow settings prompt (model, research, plan_check, verifier, branching)
|
|
18
|
+
- Interactive review settings prompt (OpenAI key/model, Gemini key/model, max rounds)
|
|
19
|
+
- Config merging and writing (including review section)
|
|
20
|
+
- Gitignore safety check when API keys are configured
|
|
21
|
+
- Confirmation display with quick command references
|
|
22
|
+
</objective>
|
|
23
|
+
|
|
24
|
+
<execution_context>
|
|
25
|
+
@~/.claude/deliver-great-systems/workflows/settings.md
|
|
26
|
+
</execution_context>
|
|
27
|
+
|
|
28
|
+
<process>
|
|
29
|
+
**Follow the settings workflow** from `@~/.claude/deliver-great-systems/workflows/settings.md`.
|
|
30
|
+
|
|
31
|
+
The workflow handles all logic including:
|
|
32
|
+
1. Config file creation with defaults if missing
|
|
33
|
+
2. Current config reading
|
|
34
|
+
3. Interactive settings presentation with pre-selection
|
|
35
|
+
4. Answer parsing and config merging
|
|
36
|
+
5. File writing
|
|
37
|
+
6. Confirmation display
|
|
38
|
+
</process>
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: dgs:switch-project
|
|
3
|
+
description: Switch active project context
|
|
4
|
+
argument-hint: "[project-name]"
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Bash
|
|
8
|
+
- AskUserQuestion
|
|
9
|
+
---
|
|
10
|
+
<objective>
|
|
11
|
+
Switch the active project context. If a project name is provided, switches immediately. If no name is given, shows a picker with all active projects.
|
|
12
|
+
|
|
13
|
+
After switching, all DGS commands operate in the new project's context (its .planning/ directory, repos, and state).
|
|
14
|
+
</objective>
|
|
15
|
+
|
|
16
|
+
<process>
|
|
17
|
+
|
|
18
|
+
## 1. Check Arguments
|
|
19
|
+
|
|
20
|
+
If `$ARGUMENTS` contains a project name, go to step 3.
|
|
21
|
+
|
|
22
|
+
If no arguments provided, go to step 2.
|
|
23
|
+
|
|
24
|
+
## 2. Interactive Picker
|
|
25
|
+
|
|
26
|
+
List available projects:
|
|
27
|
+
```bash
|
|
28
|
+
LIST=$(node ~/.claude/deliver-great-systems/bin/dgs-tools.cjs projects list --raw)
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Parse JSON. Extract active project names from `active` array.
|
|
32
|
+
|
|
33
|
+
If no active projects: display "No active projects found. Run `/dgs:new-project` to create one." and exit.
|
|
34
|
+
|
|
35
|
+
Use AskUserQuestion to present the active project names and ask the user to pick one. Use the selected name as the target.
|
|
36
|
+
|
|
37
|
+
## 3. Switch Project
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
RESULT=$(node ~/.claude/deliver-great-systems/bin/dgs-tools.cjs projects switch "$PROJECT_NAME" --raw)
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Parse JSON response.
|
|
44
|
+
|
|
45
|
+
**If `switched: true`:**
|
|
46
|
+
```
|
|
47
|
+
DGS > PROJECT SWITCHED
|
|
48
|
+
|
|
49
|
+
Active project: {slug}
|
|
50
|
+
Phase: {status.phase}
|
|
51
|
+
Status: {status.status}
|
|
52
|
+
Progress: {status.progress}%
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
**If error:**
|
|
56
|
+
Display the error message from the response. Suggest `/dgs:list-projects` to see available projects.
|
|
57
|
+
|
|
58
|
+
</process>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: dgs:undo-consolidation
|
|
3
|
+
description: Undo a consolidation — restore source ideas to pending and delete the consolidated idea
|
|
4
|
+
argument-hint: "<consolidated-idea-id>"
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Write
|
|
8
|
+
- Bash
|
|
9
|
+
- Grep
|
|
10
|
+
- Glob
|
|
11
|
+
- AskUserQuestion
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
<objective>
|
|
15
|
+
Undo a previous idea consolidation. Restores all source ideas from consolidated/ back to pending/ and deletes the consolidated result idea.
|
|
16
|
+
|
|
17
|
+
**Two modes:**
|
|
18
|
+
- **With idea ID** (`/dgs:undo-consolidation 5`): Undoes that specific consolidated idea
|
|
19
|
+
- **Without idea ID** (`/dgs:undo-consolidation`): Lists consolidated ideas with `consolidated_from` and prompts for selection
|
|
20
|
+
|
|
21
|
+
The workflow validates the idea is a consolidated result, displays the affected ideas, confirms with the user, calls the CLI for the atomic undo operation, and shows the result.
|
|
22
|
+
</objective>
|
|
23
|
+
|
|
24
|
+
<execution_context>
|
|
25
|
+
@~/.claude/deliver-great-systems/workflows/undo-consolidation.md
|
|
26
|
+
</execution_context>
|
|
27
|
+
|
|
28
|
+
<context>
|
|
29
|
+
Arguments: $ARGUMENTS (consolidated idea ID)
|
|
30
|
+
</context>
|
|
31
|
+
|
|
32
|
+
<process>
|
|
33
|
+
**Follow the undo-consolidation workflow** from `@~/.claude/deliver-great-systems/workflows/undo-consolidation.md`.
|
|
34
|
+
|
|
35
|
+
The workflow handles all logic including:
|
|
36
|
+
1. Argument parsing (consolidated idea ID extraction)
|
|
37
|
+
2. Validation that the idea exists and has `consolidated_from`
|
|
38
|
+
3. Display of the consolidated idea and its source ideas
|
|
39
|
+
4. User confirmation before proceeding
|
|
40
|
+
5. Calling dgs-tools.cjs ideas undo-consolidation for atomic operation
|
|
41
|
+
6. Confirmation output with undo instructions
|
|
42
|
+
</process>
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: dgs:update-idea
|
|
3
|
+
description: Update an existing idea's content or append a note
|
|
4
|
+
argument-hint: <idea-id> [--note "text"]
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Write
|
|
8
|
+
- Bash
|
|
9
|
+
- AskUserQuestion
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
<objective>
|
|
13
|
+
Update an existing idea's fields (title, body, tags) interactively, or append a timestamped note via the --note flag.
|
|
14
|
+
|
|
15
|
+
Routes to the update-idea workflow which handles:
|
|
16
|
+
- Argument parsing (idea ID, --note flag)
|
|
17
|
+
- Idea lookup across all states
|
|
18
|
+
- Interactive field selection and prompting (without --note)
|
|
19
|
+
- Timestamped note appending (with --note)
|
|
20
|
+
- File update with timestamp refresh
|
|
21
|
+
- Git commit for audit trail
|
|
22
|
+
</objective>
|
|
23
|
+
|
|
24
|
+
<execution_context>
|
|
25
|
+
@~/.claude/deliver-great-systems/workflows/update-idea.md
|
|
26
|
+
</execution_context>
|
|
27
|
+
|
|
28
|
+
<context>
|
|
29
|
+
Arguments: $ARGUMENTS (idea ID required, optional --note "text")
|
|
30
|
+
|
|
31
|
+
Idea state is resolved in-workflow via `dgs-tools.cjs ideas list`.
|
|
32
|
+
</context>
|
|
33
|
+
|
|
34
|
+
<process>
|
|
35
|
+
**Follow the update-idea workflow** from `@~/.claude/deliver-great-systems/workflows/update-idea.md`.
|
|
36
|
+
|
|
37
|
+
The workflow handles all logic including:
|
|
38
|
+
1. Parsing idea ID and --note flag from arguments
|
|
39
|
+
2. Finding the idea file across all states
|
|
40
|
+
3. Interactive field selection (title, body, tags) or note appending
|
|
41
|
+
4. Calling dgs-tools.cjs ideas update/append-note
|
|
42
|
+
5. Git commit for audit trail
|
|
43
|
+
6. Minimal confirmation
|
|
44
|
+
</process>
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: dgs:update
|
|
3
|
+
description: Update DGS to latest version with changelog display
|
|
4
|
+
allowed-tools:
|
|
5
|
+
- Bash
|
|
6
|
+
- AskUserQuestion
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<objective>
|
|
10
|
+
Check for DGS updates, install if available, and display what changed.
|
|
11
|
+
|
|
12
|
+
Routes to the update workflow which handles:
|
|
13
|
+
- Version detection (local vs global installation)
|
|
14
|
+
- npm version checking
|
|
15
|
+
- Changelog fetching and display
|
|
16
|
+
- User confirmation with clean install warning
|
|
17
|
+
- Update execution and cache clearing
|
|
18
|
+
- Restart reminder
|
|
19
|
+
</objective>
|
|
20
|
+
|
|
21
|
+
<execution_context>
|
|
22
|
+
@~/.claude/deliver-great-systems/workflows/update.md
|
|
23
|
+
</execution_context>
|
|
24
|
+
|
|
25
|
+
<process>
|
|
26
|
+
**Follow the update workflow** from `@~/.claude/deliver-great-systems/workflows/update.md`.
|
|
27
|
+
|
|
28
|
+
The workflow handles all logic including:
|
|
29
|
+
1. Installed version detection (local/global)
|
|
30
|
+
2. Latest version checking via npm
|
|
31
|
+
3. Version comparison
|
|
32
|
+
4. Changelog fetching and extraction
|
|
33
|
+
5. Clean install warning display
|
|
34
|
+
6. User confirmation
|
|
35
|
+
7. Update execution
|
|
36
|
+
8. Cache clearing
|
|
37
|
+
</process>
|