godpowers 1.6.11 → 1.6.13

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.
@@ -22,6 +22,9 @@ Before reading routing data or calling runtime modules, resolve the Godpowers ru
22
22
  1. If `<projectRoot>/lib/router.js` exists, use the repository checkout runtime at `<projectRoot>`.
23
23
  2. Otherwise use the installed bundle at `<tool-config-dir>/godpowers-runtime`, where `<tool-config-dir>` is the directory that contains this installed skill, such as `~/.claude`, `~/.codex`, `~/.cursor`, `~/.windsurf`, or `~/.gemini`.
24
24
  3. Read routing definitions from `<runtimeRoot>/routing/*.yaml` and recipes from `<runtimeRoot>/routing/recipes/*.yaml`.
25
+ 4. For status output, load `<runtimeRoot>/lib/dashboard.js` and call
26
+ `dashboard.compute(projectRoot)`. Use `dashboard.render(result)` for the
27
+ shared dashboard section before adding route-specific detail.
25
28
 
26
29
  ## Three modes of invocation
27
30
 
@@ -333,11 +336,31 @@ recommending archaeology, reconstruction, project-run readiness, pillars, or ref
333
336
 
334
337
  ## Output Format
335
338
 
336
- ```
339
+ `/god-next` must emit the same Godpowers Dashboard shape used by
340
+ `/god-status`, then add routing detail and the proposition block.
341
+ Prefer the executable `lib/dashboard.js` output over manually recomputing the
342
+ same fields. If the module is unavailable, say
343
+ `Dashboard engine: unavailable, manual scan used`.
344
+
345
+ ```text
337
346
  Godpowers Next
338
347
 
339
- Current state: [where we are]
340
- Progress: [pct]% ([done] of [total] steps complete; current step [n] of [total])
348
+ Godpowers Dashboard
349
+
350
+ Current status:
351
+ State: proposal
352
+ Phase: [plain-language phase] (tier [human ordinal] of [human total])
353
+ Step: [current step label] (step [n] of [total steps])
354
+ Progress: [pct]% ([done] of [total] steps complete)
355
+ Worktree: [clean | modified files unstaged | staged changes | mixed]
356
+ Index: [untouched | staged files listed]
357
+
358
+ Planning visibility:
359
+ PRD: [done | pending | missing | deferred] [path when present]
360
+ Roadmap: [done | pending | missing | deferred] [path when present]
361
+ Current milestone: [roadmap milestone, phase, tier, or next planning gate]
362
+ Completion: [pct]% [basis from state.json, PROGRESS.md, or artifacts]
363
+
341
364
  Suggested next: [/god-X]
342
365
 
343
366
  Why: [one-line reason]
@@ -359,14 +382,21 @@ Previous tier had standards failures. Address before proceeding:
359
382
  Suggested: /god-redo [tier] OR /god-skip [tier] --reason="..."
360
383
 
361
384
  Proactive checks:
362
- Checkpoint: [fresh | refreshed | stale]
363
- Reviews: [none | N pending]
364
- Sync: [fresh | suggested | local helper ran]
365
- Docs: [fresh | suggested]
366
- Runtime: [not-applicable | suggested | ran]
367
- Security: [clear | suggested]
368
- Dependencies: [clear | suggested]
369
- Hygiene: [fresh | suggested]
385
+ Checkpoint: [fresh | refreshed | missing | stale]
386
+ Reviews: [none | N pending, suggest /god-review-changes]
387
+ Sync: [fresh | missing | stale | local helper ran | suggest /god-sync]
388
+ Docs: [fresh | possible drift, suggest /god-docs]
389
+ Runtime: [not-applicable | known URL, suggest /god-test-runtime | no known URL, defer deployed verification]
390
+ Security: [clear | sensitive files changed, suggest /god-harden]
391
+ Dependencies: [clear | dependency files changed, suggest /god-update-deps]
392
+ Hygiene: [fresh | stale, suggest /god-hygiene]
393
+
394
+ Open items:
395
+ 1. [missing prerequisite, blocker, pending review, or none]
396
+
397
+ Next:
398
+ Recommended: [/god-X or exact user decision]
399
+ Why: [one sentence tied to disk state]
370
400
  ```
371
401
 
372
402
  ## Proposition Closeout
@@ -15,8 +15,12 @@ Re-derive state from disk. Your memory is not authoritative. The file system is.
15
15
 
16
16
  1. Check if `.godpowers/PROGRESS.md` exists
17
17
  - If not: "No Godpowers project found. Run `god init` to start."
18
- 2. Read PROGRESS.md for recorded state
19
- 3. Scan ALL artifact paths on disk:
18
+ 2. Resolve the runtime root and load `<runtimeRoot>/lib/dashboard.js`.
19
+ 3. Call `dashboard.compute(projectRoot)` and use the returned object as the
20
+ primary dashboard source.
21
+ 4. Read PROGRESS.md for recorded state when state.json is missing or when you
22
+ need to explain legacy progress.
23
+ 5. Scan ALL artifact paths on disk:
20
24
  - `.godpowers/prd/PRD.md`
21
25
  - `.godpowers/arch/ARCH.md`
22
26
  - `.godpowers/roadmap/ROADMAP.md`
@@ -29,12 +33,13 @@ Re-derive state from disk. Your memory is not authoritative. The file system is.
29
33
  - `.godpowers/harden/FINDINGS.md`
30
34
  - `.godpowers/SYNC-LOG.md`
31
35
  - `.godpowers/CHECKPOINT.md`
32
- 4. For each artifact found: run a lightweight have-nots check
33
- 5. Compare disk state to PROGRESS.md state:
36
+ 6. For each artifact found: run a lightweight have-nots check
37
+ 7. Compare disk state to PROGRESS.md state:
34
38
  - If PROGRESS.md says "done" but artifact is missing: FLAG as phantom resume
35
39
  - If artifact exists but PROGRESS.md says "pending": FLAG as untracked work
36
- 6. Report:
40
+ 8. Report the Godpowers Dashboard from `dashboard.render(result)`:
37
41
  - Current mode and scale
42
+ - Current phase, tier number, step label, and step number
38
43
  - Progress summary: percentage, completed step count, current step number
39
44
  - Planning visibility: PRD status, roadmap status, active milestone, and
40
45
  completion basis
@@ -45,17 +50,26 @@ Re-derive state from disk. Your memory is not authoritative. The file system is.
45
50
  - Per-tier status (with disk verification)
46
51
  - Any inconsistencies between PROGRESS.md and disk
47
52
  - Suggested next action
48
- 7. If inconsistencies found: offer to repair PROGRESS.md to match disk truth
53
+ 9. If inconsistencies found: offer to repair PROGRESS.md to match disk truth
54
+
55
+ If the runtime module is unavailable, fall back to the manual scan below and
56
+ say `Dashboard engine: unavailable, manual scan used`.
49
57
 
50
58
  ## Output Format
51
59
 
52
- ```
53
- Godpowers Status
60
+ ```text
61
+ Godpowers Dashboard
54
62
 
55
63
  Mode: A (greenfield) Scale: medium
56
64
  Started: 2026-05-09
57
- Progress: 15% (2 of 13 steps complete; current step 3 of 13)
58
- Current: Tier 1 Planning / Architecture
65
+
66
+ Current status:
67
+ State: in progress
68
+ Phase: Planning (tier 2 of 4, internal tier-1)
69
+ Step: Architecture (step 3 of 13)
70
+ Progress: 15% (2 of 13 steps complete)
71
+ Worktree: clean
72
+ Index: untouched
59
73
 
60
74
  Planning visibility:
61
75
  PRD: done .godpowers/prd/PRD.md
@@ -83,6 +97,7 @@ Proactive opportunities:
83
97
  Sync: fresh
84
98
  Docs: possible drift, suggest /god-docs
85
99
  Runtime: known local URL, suggest /god-test-runtime
100
+ Automation: available via codex-app, suggest /god-automation-setup
86
101
  Security: clear
87
102
  Dependencies: clear
88
103
  Hygiene: stale, suggest /god-hygiene
@@ -121,7 +136,12 @@ Suite (Mode D) status:
121
136
  This repo is a sibling of suite "my-products" (hub: ../hub)
122
137
  Run /god-suite-status to see all 3 repos and meta-linter findings.
123
138
 
124
- Next: god roadmap
139
+ Open items:
140
+ 1. Roadmap and stack are still pending
141
+
142
+ Next:
143
+ Recommended: /god-roadmap
144
+ Why: architecture is done and the roadmap is the next planning gate.
125
145
  ```
126
146
 
127
147
  ## Proposition Closeout
@@ -155,6 +175,8 @@ Report:
155
175
  `docs drift-check already logged`
156
176
  - Runtime: `not-applicable`, `known URL, suggest /god-test-runtime`, or
157
177
  `no known URL, defer deployed verification`
178
+ - Automation: `not configured`, `<N> active`, or
179
+ `available via <provider>, suggest /god-automation-setup`
158
180
  - Security: `clear` or `sensitive files changed, suggest /god-harden`
159
181
  - Dependencies: `clear` or `dependency files changed, suggest /god-update-deps`
160
182
  - Hygiene: `fresh` or `stale, suggest /god-hygiene`
@@ -16,7 +16,7 @@ Print version and a short capability summary.
16
16
  ```
17
17
  Godpowers v1.6.6
18
18
  Install: /Users/.../.claude/ (matches package.json)
19
- Surface: 106 skills, 39 agents, 13 workflows, 36 recipes
19
+ Surface: 108 skills, 39 agents, 13 workflows, 36 recipes
20
20
  Schema: intent.v1, state.v1, events.v1, workflow.v1, routing.v1, recipe.v1
21
21
  External integrations available: impeccable, agent-browser (others lazy)
22
22
  ```