godpowers 1.6.22 → 1.6.23
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/AGENTS.md +6 -0
- package/CHANGELOG.md +40 -0
- package/INSPIRATION.md +6 -0
- package/README.md +5 -5
- package/RELEASE.md +45 -64
- package/SKILL.md +24 -4
- package/agents/god-orchestrator.md +18 -3
- package/agents/god-reconciler.md +52 -5
- package/agents/god-updater.md +84 -2
- package/hooks/pre-tool-use.sh +13 -1
- package/hooks/session-start.sh +12 -0
- package/lib/events.js +6 -0
- package/lib/feature-awareness.js +12 -0
- package/lib/have-nots-validator.js +2 -2
- package/lib/workflow-runner.js +4 -0
- package/package.json +2 -2
- package/references/HAVE-NOTS.md +16 -0
- package/references/orchestration/MODE-DETECTION.md +36 -3
- package/references/orchestration/README.md +5 -2
- package/references/planning/ROADMAP-ANTIPATTERNS.md +1 -1
- package/references/shared/ORCHESTRATORS.md +42 -11
- package/references/shared/README.md +4 -4
- package/schema/events.v1.json +9 -0
- package/schema/intent.v1.yaml.json +5 -1
- package/schema/recipe.v1.json +2 -1
- package/schema/routing.v1.json +20 -0
- package/schema/state.v1.json +51 -0
- package/schema/workflow.v1.json +31 -2
- package/skills/god-mode.md +4 -1
- package/skills/god-reconcile.md +13 -4
- package/skills/god-version.md +1 -1
- package/templates/DOCS-UPDATE-LOG.md +14 -0
- package/templates/IMPORTED-CONTEXT.md +2 -0
- package/templates/INITIAL-FINDINGS.md +5 -0
- package/templates/PROGRESS.md +8 -0
- package/workflows/audit-only.yaml +12 -0
- package/workflows/bluefield-arc.yaml +16 -1
- package/workflows/brownfield-arc.yaml +17 -1
- package/workflows/deps-audit.yaml +13 -0
- package/workflows/docs-arc.yaml +23 -0
- package/workflows/feature-arc.yaml +14 -0
- package/workflows/full-arc.yaml +19 -0
- package/workflows/hotfix-arc.yaml +14 -0
- package/workflows/hygiene.yaml +6 -0
- package/workflows/migration-arc.yaml +15 -0
- package/workflows/postmortem.yaml +13 -0
- package/workflows/refactor-arc.yaml +14 -0
- package/workflows/spike.yaml +11 -0
|
@@ -29,6 +29,9 @@
|
|
|
29
29
|
- [HYPOTHESIS] BMAD context found: [paths or "none detected"].
|
|
30
30
|
- [HYPOTHESIS] Pillars context health: [present / partial / initialized].
|
|
31
31
|
- [HYPOTHESIS] Imported context artifact: [.godpowers/prep/IMPORTED-CONTEXT.md or "not created"].
|
|
32
|
+
- [HYPOTHESIS] Source-system sync-back path: [managed path or "not applicable"].
|
|
33
|
+
- [HYPOTHESIS] Host capability guarantee: [full / degraded / unknown].
|
|
34
|
+
- [HYPOTHESIS] Dogfood scenario relevance: [migration / sync-back / host / extension / suite / not applicable].
|
|
32
35
|
|
|
33
36
|
## Planning Implications
|
|
34
37
|
|
|
@@ -54,3 +57,5 @@
|
|
|
54
57
|
- [DECISION] If this artifact conflicts with `.godpowers/intent.yaml`, `.godpowers/state.json`, `PROGRESS.md`, or a completed Godpowers artifact, the Godpowers artifact wins.
|
|
55
58
|
- [DECISION] Pillars files under `agents/*.md` are the native project context layer for Godpowers commands.
|
|
56
59
|
- [DECISION] Imported GSD, Superpowers, and BMAD signals must be converted into Godpowers-native artifacts, not preserved as parallel state.
|
|
60
|
+
- [DECISION] Managed sync-back files may be written only by Godpowers-owned fences or companion paths.
|
|
61
|
+
- [DECISION] Host capability and dogfood findings inform routing, but completed Godpowers artifacts remain authoritative.
|
package/templates/PROGRESS.md
CHANGED
|
@@ -9,6 +9,8 @@ Started: [ISO 8601 timestamp]
|
|
|
9
9
|
Last updated: [ISO 8601 timestamp]
|
|
10
10
|
Progress: [0-100]% ([completed] of [total] steps complete; current step [n] of [total])
|
|
11
11
|
Current: [Tier N label] / [sub-step label]
|
|
12
|
+
Host guarantees: [full | degraded | unknown]
|
|
13
|
+
Action brief: [next command or user decision; readiness; top attention item]
|
|
12
14
|
|
|
13
15
|
## Project Description
|
|
14
16
|
|
|
@@ -34,6 +36,12 @@ What happened:
|
|
|
34
36
|
|
|
35
37
|
Next: [Next command or pause question]
|
|
36
38
|
|
|
39
|
+
Release readiness signals:
|
|
40
|
+
- Host capability status: [full | degraded | unknown | not checked]
|
|
41
|
+
- Dogfood status: [not-run | pass | fail | not applicable]
|
|
42
|
+
- Repo documentation sync: [fresh | drift detected | not checked]
|
|
43
|
+
- Repo surface sync: [fresh | drift detected | not checked]
|
|
44
|
+
|
|
37
45
|
## Tier Status
|
|
38
46
|
|
|
39
47
|
| Tier | Sub-step | Status | Artifact | Updated |
|
|
@@ -20,3 +20,15 @@ jobs:
|
|
|
20
20
|
uses: god-auditor@^1.0.0
|
|
21
21
|
with:
|
|
22
22
|
mode: full-audit
|
|
23
|
+
|
|
24
|
+
audit-closeout:
|
|
25
|
+
tier: 0
|
|
26
|
+
needs: audit-score
|
|
27
|
+
uses: god-orchestrator@^1.0.0
|
|
28
|
+
local-helpers:
|
|
29
|
+
- repo-doc-sync
|
|
30
|
+
- repo-surface-sync
|
|
31
|
+
- host-capabilities
|
|
32
|
+
with:
|
|
33
|
+
action: audit-closeout
|
|
34
|
+
dashboard: action-brief
|
|
@@ -14,7 +14,7 @@ metadata:
|
|
|
14
14
|
greenfield simulation audit against those constraints, then runs a
|
|
15
15
|
user-approved greenfieldification pass before the full project run.
|
|
16
16
|
|
|
17
|
-
on: [/god-
|
|
17
|
+
on: [/god-mode --bluefield]
|
|
18
18
|
|
|
19
19
|
jobs:
|
|
20
20
|
org-context:
|
|
@@ -128,3 +128,18 @@ jobs:
|
|
|
128
128
|
tier: 3
|
|
129
129
|
needs: harden
|
|
130
130
|
uses: god-launch-strategist@^1.0.0
|
|
131
|
+
|
|
132
|
+
final-sync:
|
|
133
|
+
tier: 0
|
|
134
|
+
needs: launch
|
|
135
|
+
uses: god-orchestrator@^1.0.0
|
|
136
|
+
local-helpers:
|
|
137
|
+
- feature-awareness
|
|
138
|
+
- repo-doc-sync
|
|
139
|
+
- repo-surface-sync
|
|
140
|
+
- host-capabilities
|
|
141
|
+
- checkpoint-sync
|
|
142
|
+
- pillars-sync-plan
|
|
143
|
+
with:
|
|
144
|
+
action: final-sync
|
|
145
|
+
dashboard: action-brief
|
|
@@ -14,7 +14,7 @@ metadata:
|
|
|
14
14
|
audit, then a user-approved greenfieldification pass before normal project-run
|
|
15
15
|
workflows.
|
|
16
16
|
|
|
17
|
-
on: [/god-
|
|
17
|
+
on: [/god-mode --brownfield]
|
|
18
18
|
|
|
19
19
|
jobs:
|
|
20
20
|
preflight:
|
|
@@ -84,3 +84,19 @@ jobs:
|
|
|
84
84
|
uses: god-orchestrator@^1.0.0
|
|
85
85
|
with:
|
|
86
86
|
action: brownfield-to-steady
|
|
87
|
+
|
|
88
|
+
final-sync:
|
|
89
|
+
tier: 0
|
|
90
|
+
needs: steady-state-handoff
|
|
91
|
+
uses: god-orchestrator@^1.0.0
|
|
92
|
+
local-helpers:
|
|
93
|
+
- feature-awareness
|
|
94
|
+
- source-sync-back
|
|
95
|
+
- repo-doc-sync
|
|
96
|
+
- repo-surface-sync
|
|
97
|
+
- host-capabilities
|
|
98
|
+
- checkpoint-sync
|
|
99
|
+
- pillars-sync-plan
|
|
100
|
+
with:
|
|
101
|
+
action: final-sync
|
|
102
|
+
dashboard: action-brief
|
|
@@ -54,3 +54,16 @@ jobs:
|
|
|
54
54
|
action: route-to
|
|
55
55
|
target: /god-upgrade
|
|
56
56
|
per: major-version-bump
|
|
57
|
+
|
|
58
|
+
deps-sync:
|
|
59
|
+
tier: 0
|
|
60
|
+
needs: [deps-patch-batch, deps-minor-per-package, deps-major-handoff]
|
|
61
|
+
uses: god-orchestrator@^1.0.0
|
|
62
|
+
local-helpers:
|
|
63
|
+
- repo-doc-sync
|
|
64
|
+
- repo-surface-sync
|
|
65
|
+
- checkpoint-sync
|
|
66
|
+
- pillars-sync-plan
|
|
67
|
+
with:
|
|
68
|
+
action: final-sync
|
|
69
|
+
dashboard: action-brief
|
package/workflows/docs-arc.yaml
CHANGED
|
@@ -15,8 +15,31 @@ metadata:
|
|
|
15
15
|
on: [/god-docs]
|
|
16
16
|
|
|
17
17
|
jobs:
|
|
18
|
+
mechanical-doc-sync:
|
|
19
|
+
tier: 0
|
|
20
|
+
uses: god-orchestrator@^1.0.0
|
|
21
|
+
local-helpers:
|
|
22
|
+
- repo-doc-sync
|
|
23
|
+
- repo-surface-sync
|
|
24
|
+
- host-capabilities
|
|
25
|
+
with:
|
|
26
|
+
action: local-helper-sync
|
|
27
|
+
scope: docs-and-repo-surface
|
|
28
|
+
|
|
18
29
|
docs-update:
|
|
19
30
|
tier: 1
|
|
31
|
+
needs: mechanical-doc-sync
|
|
20
32
|
uses: god-docs-writer@^1.0.0
|
|
21
33
|
with:
|
|
22
34
|
template: DOCS-UPDATE-LOG.md
|
|
35
|
+
|
|
36
|
+
docs-closure:
|
|
37
|
+
tier: 0
|
|
38
|
+
needs: docs-update
|
|
39
|
+
uses: god-orchestrator@^1.0.0
|
|
40
|
+
local-helpers:
|
|
41
|
+
- checkpoint-sync
|
|
42
|
+
- pillars-sync-plan
|
|
43
|
+
with:
|
|
44
|
+
action: docs-closeout
|
|
45
|
+
dashboard: action-brief
|
|
@@ -57,3 +57,17 @@ jobs:
|
|
|
57
57
|
uses: god-launch-strategist@^1.0.0
|
|
58
58
|
with:
|
|
59
59
|
mode: feature-flag-rollout
|
|
60
|
+
|
|
61
|
+
feature-sync:
|
|
62
|
+
tier: 0
|
|
63
|
+
needs: feature-soft-launch
|
|
64
|
+
uses: god-orchestrator@^1.0.0
|
|
65
|
+
local-helpers:
|
|
66
|
+
- source-sync-back
|
|
67
|
+
- repo-doc-sync
|
|
68
|
+
- repo-surface-sync
|
|
69
|
+
- checkpoint-sync
|
|
70
|
+
- pillars-sync-plan
|
|
71
|
+
with:
|
|
72
|
+
action: final-sync
|
|
73
|
+
dashboard: action-brief
|
package/workflows/full-arc.yaml
CHANGED
|
@@ -102,3 +102,22 @@ jobs:
|
|
|
102
102
|
max-new-access-items-per-pause: 1
|
|
103
103
|
origin-evidence-required: true
|
|
104
104
|
no-inferred-domains: true
|
|
105
|
+
|
|
106
|
+
final-sync:
|
|
107
|
+
tier: 0
|
|
108
|
+
needs: launch
|
|
109
|
+
uses: god-orchestrator@^1.0.0
|
|
110
|
+
local-helpers:
|
|
111
|
+
- feature-awareness
|
|
112
|
+
- source-sync-back
|
|
113
|
+
- repo-doc-sync
|
|
114
|
+
- repo-surface-sync
|
|
115
|
+
- route-quality-sync
|
|
116
|
+
- recipe-coverage-sync
|
|
117
|
+
- release-surface-sync
|
|
118
|
+
- host-capabilities
|
|
119
|
+
- checkpoint-sync
|
|
120
|
+
- pillars-sync-plan
|
|
121
|
+
with:
|
|
122
|
+
action: final-sync
|
|
123
|
+
dashboard: action-brief
|
|
@@ -57,3 +57,17 @@ jobs:
|
|
|
57
57
|
with:
|
|
58
58
|
action: schedule-postmortem
|
|
59
59
|
due: 48h
|
|
60
|
+
|
|
61
|
+
hotfix-sync:
|
|
62
|
+
tier: 0
|
|
63
|
+
needs: hotfix-postmortem-trigger
|
|
64
|
+
uses: god-orchestrator@^1.0.0
|
|
65
|
+
local-helpers:
|
|
66
|
+
- source-sync-back
|
|
67
|
+
- repo-doc-sync
|
|
68
|
+
- repo-surface-sync
|
|
69
|
+
- checkpoint-sync
|
|
70
|
+
- pillars-sync-plan
|
|
71
|
+
with:
|
|
72
|
+
action: final-sync
|
|
73
|
+
dashboard: action-brief
|
package/workflows/hygiene.yaml
CHANGED
|
@@ -38,6 +38,12 @@ jobs:
|
|
|
38
38
|
tier: 0
|
|
39
39
|
needs: [hygiene-audit, hygiene-deps, hygiene-docs]
|
|
40
40
|
uses: god-orchestrator@^1.0.0
|
|
41
|
+
local-helpers:
|
|
42
|
+
- repo-doc-sync
|
|
43
|
+
- repo-surface-sync
|
|
44
|
+
- host-capabilities
|
|
45
|
+
- checkpoint-sync
|
|
41
46
|
with:
|
|
42
47
|
action: compose-hygiene-report
|
|
43
48
|
output: .godpowers/HYGIENE-REPORT.md
|
|
49
|
+
dashboard: action-brief
|
|
@@ -71,3 +71,18 @@ jobs:
|
|
|
71
71
|
- uses: god-quality-reviewer@^1.0.0
|
|
72
72
|
on-pass: commit-atomic
|
|
73
73
|
skip-when: not-100pct-migrated
|
|
74
|
+
|
|
75
|
+
migration-sync:
|
|
76
|
+
tier: 0
|
|
77
|
+
needs: migration-contract
|
|
78
|
+
uses: god-orchestrator@^1.0.0
|
|
79
|
+
local-helpers:
|
|
80
|
+
- source-sync-back
|
|
81
|
+
- repo-doc-sync
|
|
82
|
+
- repo-surface-sync
|
|
83
|
+
- host-capabilities
|
|
84
|
+
- checkpoint-sync
|
|
85
|
+
- pillars-sync-plan
|
|
86
|
+
with:
|
|
87
|
+
action: final-sync
|
|
88
|
+
dashboard: action-brief
|
|
@@ -29,3 +29,16 @@ jobs:
|
|
|
29
29
|
with:
|
|
30
30
|
mode: runbook-updates
|
|
31
31
|
skip-when: no-runbook-gaps-identified
|
|
32
|
+
|
|
33
|
+
postmortem-sync:
|
|
34
|
+
tier: 0
|
|
35
|
+
needs: postmortem-runbook-update
|
|
36
|
+
uses: god-orchestrator@^1.0.0
|
|
37
|
+
local-helpers:
|
|
38
|
+
- repo-doc-sync
|
|
39
|
+
- repo-surface-sync
|
|
40
|
+
- checkpoint-sync
|
|
41
|
+
- pillars-sync-plan
|
|
42
|
+
with:
|
|
43
|
+
action: final-sync
|
|
44
|
+
dashboard: action-brief
|
|
@@ -57,3 +57,17 @@ jobs:
|
|
|
57
57
|
uses: god-deploy-engineer@^1.0.0
|
|
58
58
|
with:
|
|
59
59
|
mode: gradual-rollout
|
|
60
|
+
|
|
61
|
+
refactor-sync:
|
|
62
|
+
tier: 0
|
|
63
|
+
needs: refactor-deploy
|
|
64
|
+
uses: god-orchestrator@^1.0.0
|
|
65
|
+
local-helpers:
|
|
66
|
+
- source-sync-back
|
|
67
|
+
- repo-doc-sync
|
|
68
|
+
- repo-surface-sync
|
|
69
|
+
- checkpoint-sync
|
|
70
|
+
- pillars-sync-plan
|
|
71
|
+
with:
|
|
72
|
+
action: final-sync
|
|
73
|
+
dashboard: action-brief
|
package/workflows/spike.yaml
CHANGED
|
@@ -21,3 +21,14 @@ jobs:
|
|
|
21
21
|
with:
|
|
22
22
|
template: SPIKE.md
|
|
23
23
|
time-box: 1d
|
|
24
|
+
|
|
25
|
+
spike-closeout:
|
|
26
|
+
tier: 0
|
|
27
|
+
needs: spike-run
|
|
28
|
+
uses: god-orchestrator@^1.0.0
|
|
29
|
+
local-helpers:
|
|
30
|
+
- checkpoint-sync
|
|
31
|
+
- host-capabilities
|
|
32
|
+
with:
|
|
33
|
+
action: spike-closeout
|
|
34
|
+
dashboard: action-brief
|