godpowers 1.6.8 → 1.6.10
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/CHANGELOG.md +67 -0
- package/README.md +9 -8
- package/RELEASE.md +33 -32
- package/SKILL.md +91 -2
- package/agents/god-auditor.md +4 -4
- package/agents/god-coordinator.md +4 -4
- package/agents/god-deploy-engineer.md +1 -1
- package/agents/god-greenfieldifier.md +1 -1
- package/agents/god-launch-strategist.md +1 -1
- package/agents/god-observability-engineer.md +1 -1
- package/agents/god-orchestrator.md +82 -24
- package/agents/god-reconciler.md +1 -1
- package/bin/install.js +1 -1
- package/hooks/session-start.sh +2 -2
- package/lib/checkpoint.js +4 -1
- package/lib/context-writer.js +1 -1
- package/package.json +1 -1
- package/references/HAVE-NOTS.md +1 -1
- package/references/orchestration/SCALE-DETECTION.md +1 -1
- package/references/shared/GLOSSARY.md +1 -1
- package/references/shared/ORCHESTRATORS.md +1 -1
- package/routing/god-mode.yaml +1 -1
- package/routing/god-preflight.yaml +1 -1
- package/routing/recipes/add-feature-mid-arc-pause.yaml +4 -4
- package/routing/recipes/bluefield-org-aware.yaml +1 -1
- package/routing/recipes/brownfield-onboarding.yaml +1 -1
- package/routing/recipes/greenfield-fast.yaml +1 -1
- package/routing/recipes/greenfield-with-ideation.yaml +1 -1
- package/skills/god-agent-audit.md +7 -0
- package/skills/god-archaeology.md +7 -0
- package/skills/god-audit.md +11 -1
- package/skills/god-context-scan.md +13 -0
- package/skills/god-context.md +1 -1
- package/skills/god-deploy.md +1 -1
- package/skills/god-design-impact.md +8 -0
- package/skills/god-discuss.md +7 -0
- package/skills/god-doctor.md +17 -0
- package/skills/god-explore.md +8 -0
- package/skills/god-extract-learnings.md +1 -1
- package/skills/god-feature.md +1 -1
- package/skills/god-hotfix.md +1 -1
- package/skills/god-hygiene.md +8 -1
- package/skills/god-init.md +1 -1
- package/skills/god-launch.md +1 -1
- package/skills/god-lifecycle.md +33 -5
- package/skills/god-list-assumptions.md +13 -0
- package/skills/god-locate.md +16 -0
- package/skills/god-logs.md +1 -1
- package/skills/god-map-codebase.md +8 -0
- package/skills/god-mode.md +55 -17
- package/skills/god-next.md +32 -4
- package/skills/god-org-context.md +1 -1
- package/skills/god-preflight.md +18 -4
- package/skills/god-quick.md +1 -1
- package/skills/god-reconcile.md +6 -1
- package/skills/god-reconstruct.md +8 -0
- package/skills/god-refactor.md +23 -0
- package/skills/god-roadmap-check.md +10 -0
- package/skills/god-roadmap-update.md +1 -1
- package/skills/god-skip.md +1 -1
- package/skills/god-spike.md +7 -0
- package/skills/god-standards.md +7 -0
- package/skills/god-status.md +25 -0
- package/skills/god-suite-init.md +1 -1
- package/skills/god-suite-release.md +1 -1
- package/skills/god-suite-status.md +1 -1
- package/skills/god-suite-sync.md +1 -1
- package/skills/god-tech-debt.md +8 -0
- package/skills/god.md +23 -7
- package/workflows/bluefield-arc.yaml +1 -1
- package/workflows/brownfield-arc.yaml +1 -1
- package/workflows/feature-arc.yaml +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,73 @@ All notable changes to Godpowers will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.6.10] - 2026-05-16
|
|
9
|
+
|
|
10
|
+
Progress visibility and plain-language closeout patch.
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- Added a core user-facing vocabulary rule: visible output should say
|
|
14
|
+
"project run", "workflow", "phase", "current step", or "current milestone"
|
|
15
|
+
instead of unexplained internal "arc" jargon.
|
|
16
|
+
- Added `Planning visibility` blocks to status, next-step, God Mode, and
|
|
17
|
+
orchestrator closeout guidance. These blocks surface PRD status, roadmap
|
|
18
|
+
status, current milestone, and completion basis when those artifacts exist or
|
|
19
|
+
are expected.
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
- Reworded installer, session-start, `/god`, `/god-mode`, lifecycle, status,
|
|
23
|
+
routing, workflow, and specialist guidance to use plain project-run language
|
|
24
|
+
in user-visible text.
|
|
25
|
+
- Checkpoint and session-start summaries now display lifecycle `in-arc` as
|
|
26
|
+
"in progress" while preserving the internal state key for compatibility.
|
|
27
|
+
- God Mode completion guidance now ends with current status, planning
|
|
28
|
+
visibility, open items, and a concrete next recommendation.
|
|
29
|
+
|
|
30
|
+
### Guardrails
|
|
31
|
+
- Internal workflow names and state constants such as `full-arc.yaml` and
|
|
32
|
+
`in-arc` remain unchanged for compatibility.
|
|
33
|
+
- The patch changes guidance and display wording only. It does not add slash
|
|
34
|
+
commands, specialist agents, workflows, recipes, schemas, or public artifact
|
|
35
|
+
formats.
|
|
36
|
+
|
|
37
|
+
## [1.6.9] - 2026-05-16
|
|
38
|
+
|
|
39
|
+
Proposal closeout patch. Makes Godpowers end exploratory, diagnostic, audit,
|
|
40
|
+
status, lifecycle, and decision-support answers with concrete choices instead
|
|
41
|
+
of leaving the user to infer the next action.
|
|
42
|
+
|
|
43
|
+
### Added
|
|
44
|
+
- Added a core Proposal Closeout rule requiring a `Proposition:` block when
|
|
45
|
+
Godpowers gives a recommendation, proposal, exploratory plan, diagnostic
|
|
46
|
+
report, status report, audit report, lifecycle report, reconciliation report,
|
|
47
|
+
or decision-support response without directly launching work.
|
|
48
|
+
- Added proposition closeouts to `/god`, `/god-next`, `/god-status`,
|
|
49
|
+
`/god-lifecycle`, `/god-locate`, `/god-context-scan`, `/god-preflight`,
|
|
50
|
+
`/god-doctor`, `/god-audit`, `/god-hygiene`, `/god-standards`, and
|
|
51
|
+
`/god-agent-audit`.
|
|
52
|
+
- Added proposition closeouts to proposal-heavy planning and analysis commands:
|
|
53
|
+
`/god-discuss`, `/god-explore`, `/god-list-assumptions`, `/god-refactor`,
|
|
54
|
+
`/god-spike`, `/god-tech-debt`, `/god-archaeology`, `/god-map-codebase`,
|
|
55
|
+
`/god-reconstruct`, `/god-design-impact`, `/god-reconcile`, and
|
|
56
|
+
`/god-roadmap-check`.
|
|
57
|
+
|
|
58
|
+
### Changed
|
|
59
|
+
- Proposal-style outputs now mirror the clearer GSD pattern: implement a small
|
|
60
|
+
slice, implement the full route, discuss more, inspect status, or run
|
|
61
|
+
`/god-mode` only when that is safe.
|
|
62
|
+
- `/god-next` and `/god-status` now explicitly distinguish partial progress,
|
|
63
|
+
full autonomous continuation, discussion, and inspection choices.
|
|
64
|
+
- Diagnostic commands now avoid recommending broad automation when blockers or
|
|
65
|
+
disk-state inconsistencies make that unsafe.
|
|
66
|
+
|
|
67
|
+
### Guardrails
|
|
68
|
+
- Pure completion commands can still use their normal `Suggested next` line
|
|
69
|
+
after a verified artifact is produced.
|
|
70
|
+
- `/god-mode` is not offered as a blanket answer when a blocker, failing gate,
|
|
71
|
+
manual repair, or unresolved ambiguity should be addressed first.
|
|
72
|
+
- The patch changes guidance only. It does not add slash commands, specialist
|
|
73
|
+
agents, workflows, recipes, schemas, or public artifact formats.
|
|
74
|
+
|
|
8
75
|
## [1.6.8] - 2026-05-16
|
|
9
76
|
|
|
10
77
|
Staging deferral patch. Keeps Godpowers moving through local and CI-verifiable
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/aihxp/godpowers/actions/workflows/ci.yml)
|
|
4
4
|
[](LICENSE)
|
|
5
|
-
[](CHANGELOG.md)
|
|
6
6
|
[](https://www.npmjs.com/package/godpowers)
|
|
7
7
|
|
|
8
8
|
**Ship fast. Ship right. Ship everything. Ship accountably.**
|
|
@@ -12,9 +12,10 @@ idea to hardened production. It runs as **slash commands inside your AI coding
|
|
|
12
12
|
tool** (Claude Code, Codex, Cursor, etc.) that orchestrate **specialist agents**
|
|
13
13
|
in fresh contexts to do the work.
|
|
14
14
|
|
|
15
|
-
Version 1.6.
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
Version 1.6.10 keeps the stable Godpowers surface while making progress more
|
|
16
|
+
visible: user-facing output now prefers "project run" over internal "arc"
|
|
17
|
+
jargon and status closeouts show PRD, roadmap, milestone, and completion
|
|
18
|
+
position when available.
|
|
18
19
|
|
|
19
20
|
It fuses four disciplines into one unified workflow:
|
|
20
21
|
|
|
@@ -57,7 +58,7 @@ Open your AI coding tool in any project directory and type:
|
|
|
57
58
|
/god-mode
|
|
58
59
|
```
|
|
59
60
|
|
|
60
|
-
That
|
|
61
|
+
That starts the autonomous project run. It will run all tiers from idea to hardened
|
|
61
62
|
production, pausing only when it has a real question for you.
|
|
62
63
|
|
|
63
64
|
### Just describe what you want
|
|
@@ -66,7 +67,7 @@ If you don't know which command to run, type free text after `/god`:
|
|
|
66
67
|
|
|
67
68
|
```
|
|
68
69
|
/god production is broken
|
|
69
|
-
/god add a feature without breaking the current
|
|
70
|
+
/god add a feature without breaking the current project run
|
|
70
71
|
/god I'm coming back after a week
|
|
71
72
|
```
|
|
72
73
|
|
|
@@ -106,7 +107,7 @@ when you open a new session in a Godpowers project.
|
|
|
106
107
|
| Command | What it does | Spawns agent |
|
|
107
108
|
|---------|--------------|--------------|
|
|
108
109
|
| `/god` | Front door: match free-text intent to a command sequence | (built-in) |
|
|
109
|
-
| `/god-mode` | Full autonomous
|
|
110
|
+
| `/god-mode` | Full autonomous project run | god-orchestrator |
|
|
110
111
|
| `/god-next` | Auto-detect and suggest the next command | (built-in) |
|
|
111
112
|
| `/god-init` | Start a project, detect mode and scale | (built-in) |
|
|
112
113
|
| `/god-prd` | Write the PRD | god-pm |
|
|
@@ -121,7 +122,7 @@ when you open a new session in a Godpowers project.
|
|
|
121
122
|
| `/god-launch` | Launch (gated on harden) | god-launch-strategist |
|
|
122
123
|
| `/god-harden` | Adversarial security review | god-harden-auditor |
|
|
123
124
|
| `/god-status` | Re-derive state from disk | (built-in) |
|
|
124
|
-
| `/god-preflight` | Read-only intake audit before
|
|
125
|
+
| `/god-preflight` | Read-only intake audit before project-run readiness and pillars | god-auditor |
|
|
125
126
|
| `/god-audit` | Score artifacts against have-nots | god-auditor |
|
|
126
127
|
| `/god-debug` | 4-phase systematic debug | god-debugger |
|
|
127
128
|
| `/god-review` | Two-stage code review | god-spec-reviewer + god-quality-reviewer |
|
package/RELEASE.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
# Godpowers 1.6.
|
|
1
|
+
# Godpowers 1.6.10 Release
|
|
2
2
|
|
|
3
3
|
Date: 2026-05-16
|
|
4
4
|
|
|
5
|
-
Godpowers 1.6.
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
Godpowers 1.6.10 makes progress easier to understand while work is running and
|
|
6
|
+
when it closes. The goal of this patch is to keep user-facing output from
|
|
7
|
+
requiring internal "arc" vocabulary and to show PRD, roadmap, milestone, and
|
|
8
|
+
completion position wherever status is reported.
|
|
9
9
|
|
|
10
10
|
## What is stable
|
|
11
11
|
|
|
@@ -24,34 +24,35 @@ when the user requests staging or reaches final sign-off.
|
|
|
24
24
|
- Extension pack compatibility range for the 1.x line
|
|
25
25
|
- Domain precision through `.godpowers/domain/GLOSSARY.md` and DG-01 through
|
|
26
26
|
DG-05 checks
|
|
27
|
+
- GSD-style proposition closeouts for exploratory, diagnostic, audit,
|
|
28
|
+
lifecycle, status, reconciliation, and decision-support outputs
|
|
29
|
+
- Plain-language project-run wording in user-facing reports
|
|
30
|
+
- Planning visibility blocks for PRD, roadmap, milestone, and completion basis
|
|
27
31
|
|
|
28
32
|
## What is new
|
|
29
33
|
|
|
30
|
-
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
a staging URL from a product name, brand name, README title, or common TLD.
|
|
53
|
-
If only local URLs exist, it runs local smoke, records deployed verification as
|
|
54
|
-
deferred, and continues.
|
|
34
|
+
- The core Godpowers skill now defines "arc" as internal vocabulary and tells
|
|
35
|
+
user-facing output to prefer "project run", "workflow", "phase", "current
|
|
36
|
+
step", or "current milestone".
|
|
37
|
+
- `/god-mode`, `god-orchestrator`, `/god-status`, `/god-next`, and
|
|
38
|
+
`/god-lifecycle` now include planning visibility guidance for PRD, roadmap,
|
|
39
|
+
milestone, and percent complete when the information is available.
|
|
40
|
+
- The installer, session-start hook, `/god` front door, routing descriptions,
|
|
41
|
+
workflow descriptions, and high-traffic skill propositions now use
|
|
42
|
+
project-run language instead of unexplained "arc" wording.
|
|
43
|
+
- Checkpoint and session-start summaries display lifecycle `in-arc` as
|
|
44
|
+
"in progress" while preserving the internal state key for compatibility.
|
|
45
|
+
|
|
46
|
+
## What 1.6.10 means
|
|
47
|
+
|
|
48
|
+
Godpowers 1.6.10 does not expand the public command surface. It changes how
|
|
49
|
+
Godpowers explains itself: the user should see the current project run, PRD,
|
|
50
|
+
roadmap, milestone, completion percentage, open items, and next action without
|
|
51
|
+
decoding internal terminology.
|
|
52
|
+
|
|
53
|
+
Internal workflow names and state constants such as `full-arc.yaml` and
|
|
54
|
+
`in-arc` remain unchanged for compatibility. Visible reports should translate
|
|
55
|
+
them to plain language.
|
|
55
56
|
|
|
56
57
|
Safe sync and unresolved Critical harden findings remain release-truth gates.
|
|
57
58
|
Per-repo Quarterback ownership remains intact for Mode D suite work.
|
|
@@ -61,8 +62,8 @@ Per-repo Quarterback ownership remains intact for Mode D suite work.
|
|
|
61
62
|
During the 1.x stability window, do not add broad new command families, change
|
|
62
63
|
schema formats, or rename public artifacts without evidence from real use.
|
|
63
64
|
|
|
64
|
-
The `v1.6.
|
|
65
|
-
`godpowers@1.6.
|
|
65
|
+
The `v1.6.10` git tag points to the release commit that matches the npm
|
|
66
|
+
`godpowers@1.6.10` package. Public publishes should prefer the tag-triggered
|
|
66
67
|
GitHub workflow so npm provenance, git history, and release notes stay aligned.
|
|
67
68
|
|
|
68
69
|
Allowed changes:
|
package/SKILL.md
CHANGED
|
@@ -67,11 +67,100 @@ answer a question, inspect first. When a term is resolved, record it in
|
|
|
67
67
|
`.godpowers/domain/GLOSSARY.md` with canonical spelling, avoided aliases,
|
|
68
68
|
relationships, and any unresolved ambiguity.
|
|
69
69
|
|
|
70
|
+
### 9. Proposal Closeout
|
|
71
|
+
When you answer with a recommendation, proposal, or exploratory plan and do not
|
|
72
|
+
make file edits, run commands, or hand off to another command, end with a
|
|
73
|
+
proposition block. The block must give the user concrete next moves instead of
|
|
74
|
+
leaving them at a dead stop.
|
|
75
|
+
|
|
76
|
+
This also applies to diagnostic, status, audit, lifecycle, reconciliation, and
|
|
77
|
+
decision-support reports when they end with suggestions, options, or a
|
|
78
|
+
recommended sequence.
|
|
79
|
+
|
|
80
|
+
Use this shape:
|
|
81
|
+
|
|
82
|
+
```
|
|
83
|
+
Proposition:
|
|
84
|
+
1. Implement partial: <smallest safe slice and command>
|
|
85
|
+
2. Implement complete: <larger command or project run>
|
|
86
|
+
3. Discuss more: <focused question or /god-discuss topic>
|
|
87
|
+
4. Run God Mode: /god-mode <optional flags or scope>
|
|
88
|
+
Recommended: <one option and why>
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
Only include options that actually fit the situation. If `/god-mode` is too
|
|
92
|
+
broad or unsafe for the request, say so and offer `/god-feature`,
|
|
93
|
+
`/god-refactor`, `/god-spike`, or `/god-discuss` instead.
|
|
94
|
+
|
|
95
|
+
### 10. Completion Closeout
|
|
96
|
+
When you complete work, especially from `/god-mode`, `/god-build`,
|
|
97
|
+
`/god-feature`, `/god-hotfix`, `/god-refactor`, `/god-quick`, or any command
|
|
98
|
+
that edits code or artifacts, do not stop at "complete" plus validation. End
|
|
99
|
+
with a disk-derived closeout that tells the user the current state and what is
|
|
100
|
+
next.
|
|
101
|
+
|
|
102
|
+
Use this shape:
|
|
103
|
+
|
|
104
|
+
```
|
|
105
|
+
Current status:
|
|
106
|
+
State: <complete | partial | blocked | complete with deferred item>
|
|
107
|
+
Progress: <pct>% (<done> of <total> steps complete; current step <n> of <total>) when available
|
|
108
|
+
Worktree: <clean | modified files unstaged | staged changes | mixed>
|
|
109
|
+
Index: <untouched | staged files listed>
|
|
110
|
+
|
|
111
|
+
Planning visibility:
|
|
112
|
+
PRD: <done | pending | missing | deferred> <artifact path when present>
|
|
113
|
+
Roadmap: <done | pending | missing | deferred> <artifact path when present>
|
|
114
|
+
Current milestone: <roadmap milestone, tier, or next planning gate when known>
|
|
115
|
+
Completion: <pct>% <brief basis, for example done steps over total tracked steps>
|
|
116
|
+
|
|
117
|
+
What changed:
|
|
118
|
+
1. <highest-signal change>
|
|
119
|
+
2. <highest-signal change>
|
|
120
|
+
|
|
121
|
+
Validation:
|
|
122
|
+
+ <command>: <result>
|
|
123
|
+
|
|
124
|
+
Open items:
|
|
125
|
+
1. <deferred staging, unstaged files, pending review, or none>
|
|
126
|
+
|
|
127
|
+
Next:
|
|
128
|
+
Recommended: <one concrete command or user decision>
|
|
129
|
+
Why: <one sentence tied to current state>
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
If the command intentionally did not stage, commit, push, or deploy, say that
|
|
133
|
+
plainly and explain what the user can do next. If deployed staging is deferred,
|
|
134
|
+
include the deferred artifact path or exact missing input. If the worktree has
|
|
135
|
+
pre-existing unrelated changes, say the index was left untouched and recommend
|
|
136
|
+
a scoped review or staging command rather than implying the project is fully
|
|
137
|
+
shipped.
|
|
138
|
+
|
|
139
|
+
### 11. User-Facing Vocabulary
|
|
140
|
+
Godpowers may use internal words such as "arc" in routing, recipes, and agent
|
|
141
|
+
implementation notes. Do not require the user to decode that word in visible
|
|
142
|
+
output.
|
|
143
|
+
|
|
144
|
+
Use these plain-language substitutions in user-facing responses:
|
|
145
|
+
- Say "project run" or "workflow" instead of "arc".
|
|
146
|
+
- Say "phase" or "current step" instead of "tier" unless the user has asked
|
|
147
|
+
for tier details. If tier detail helps, say both, for example
|
|
148
|
+
"Planning, Tier 1".
|
|
149
|
+
- Say "current milestone" or "roadmap step" when ROADMAP.md has a matching
|
|
150
|
+
milestone.
|
|
151
|
+
- If you must use "arc", define it once as "the end-to-end project workflow"
|
|
152
|
+
and then return to plain language.
|
|
153
|
+
|
|
154
|
+
Every status, completion, lifecycle, and next-step report should include PRD
|
|
155
|
+
and roadmap visibility when those files exist or are expected. Show whether
|
|
156
|
+
the PRD is done, whether the roadmap exists, which milestone or tier is active,
|
|
157
|
+
how close the tracked workflow is to completion, and the next concrete move.
|
|
158
|
+
|
|
70
159
|
---
|
|
71
160
|
|
|
72
161
|
## Operating Modes
|
|
73
162
|
|
|
74
|
-
### Mode A: Full
|
|
163
|
+
### Mode A: Full Project Run (greenfield)
|
|
75
164
|
Default. Idea to hardened production. All four tiers, all gates.
|
|
76
165
|
|
|
77
166
|
### Mode B: Gap Fill (existing codebase)
|
|
@@ -431,7 +520,7 @@ On resume:
|
|
|
431
520
|
- `--conservative`: Lower threshold for pausing. More human touchpoints.
|
|
432
521
|
- `--from=<tier>`: Start from a specific tier. Re-derives earlier state from disk.
|
|
433
522
|
- `--audit`: Score existing artifacts. Build nothing. Report gaps.
|
|
434
|
-
- `--dry-run`: Plan everything. Build nothing. Show the full
|
|
523
|
+
- `--dry-run`: Plan everything. Build nothing. Show the full project run.
|
|
435
524
|
|
|
436
525
|
---
|
|
437
526
|
|
package/agents/god-auditor.md
CHANGED
|
@@ -35,7 +35,7 @@ why.
|
|
|
35
35
|
6. If running with `mode: preflight`, do not run the artifact linter as the
|
|
36
36
|
main task. Inspect the repo and write `.godpowers/preflight/PREFLIGHT.md`.
|
|
37
37
|
7. If running with `mode: greenfield-simulation`, do not build anything.
|
|
38
|
-
Simulate the canonical Godpowers greenfield
|
|
38
|
+
Simulate the canonical Godpowers greenfield project run and compare it against the
|
|
39
39
|
current project evidence or org constraints.
|
|
40
40
|
|
|
41
41
|
## Mechanical vs interpretive split
|
|
@@ -252,16 +252,16 @@ Mode: [brownfield | bluefield]
|
|
|
252
252
|
bluefield workflows when the user wants the audit acted on.
|
|
253
253
|
- This audit does not treat imported GSD, Superpowers, BMAD, or org context as
|
|
254
254
|
source of truth.
|
|
255
|
-
- This audit does not block the
|
|
255
|
+
- This audit does not block the project run unless it finds a Critical security or
|
|
256
256
|
impossible planning contradiction.
|
|
257
257
|
```
|
|
258
258
|
|
|
259
259
|
Greenfield simulation rules:
|
|
260
260
|
- Brownfield: compare reconstructed artifacts, archaeology, debt assessment,
|
|
261
261
|
repo shape, tests, CI, deploy, observability, hardening, and launch evidence
|
|
262
|
-
against what the canonical greenfield
|
|
262
|
+
against what the canonical greenfield project run would have created.
|
|
263
263
|
- Bluefield: compare org context and constraints against the canonical
|
|
264
|
-
greenfield
|
|
264
|
+
greenfield project run before PRD so downstream agents know which choices are
|
|
265
265
|
constrained, missing, or open.
|
|
266
266
|
- Label every finding as DECISION, HYPOTHESIS, or OPEN QUESTION.
|
|
267
267
|
- Do not invent missing intent. Mark unknowns as OPEN QUESTION.
|
|
@@ -5,7 +5,7 @@ description: |
|
|
|
5
5
|
coordination: byte-identical file sync, cross-repo releases,
|
|
6
6
|
meta-linter findings, suite-level state aggregation. NEVER bypasses
|
|
7
7
|
individual orchestrators (the Quarterback rule holds per-repo);
|
|
8
|
-
spawns per-repo god-orchestrator for
|
|
8
|
+
spawns per-repo god-orchestrator for project-run work inside each repo.
|
|
9
9
|
|
|
10
10
|
Spawned by: /god-suite-init, /god-suite-status, /god-suite-sync,
|
|
11
11
|
/god-suite-release, /god-suite-patch
|
|
@@ -30,7 +30,7 @@ suite (the collection of repos), not individual repos.
|
|
|
30
30
|
|
|
31
31
|
## What you do NOT do
|
|
32
32
|
|
|
33
|
-
- Run
|
|
33
|
+
- Run a project run inside a single repo (that's the per-repo
|
|
34
34
|
`god-orchestrator`'s job)
|
|
35
35
|
- Make Quarterback-level decisions inside a repo (mode detection,
|
|
36
36
|
scale detection, tier orchestration)
|
|
@@ -82,7 +82,7 @@ If a handoff path is provided:
|
|
|
82
82
|
2. Run impact analysis: which sibling repos depend on this one?
|
|
83
83
|
3. For each affected sibling: write a per-repo orchestrator handoff file and
|
|
84
84
|
spawn its `god-orchestrator` with only a display-safe pointer for the
|
|
85
|
-
`version-bump` directive (NOT a full
|
|
85
|
+
`version-bump` directive (NOT a full project run)
|
|
86
86
|
4. Aggregate results into a release report
|
|
87
87
|
5. Update `.godpowers/suite-config.yaml` version-table
|
|
88
88
|
6. Append to SYNC-LOG.md
|
|
@@ -114,7 +114,7 @@ If a handoff path is provided:
|
|
|
114
114
|
only, you write the `suite.hubPath` field into each newly-registered
|
|
115
115
|
sibling's state.json. Any other field, in any other mode, is the
|
|
116
116
|
per-repo orchestrator's domain.
|
|
117
|
-
- You run a full
|
|
117
|
+
- You run a full project run on a sibling (that's beyond your scope)
|
|
118
118
|
- You promote `--strict` byte-identical drift to non-blocking when
|
|
119
119
|
user passed `--strict` (gate must hold)
|
|
120
120
|
- You write `.godpowers/suite-config.yaml` without user confirmation
|
|
@@ -65,7 +65,7 @@ Build is complete. All tests pass. `.godpowers/build/STATE.md` shows green.
|
|
|
65
65
|
only when needed by the next command, exact provider links only when a failed
|
|
66
66
|
check proves they are needed, and the command Godpowers will run after access
|
|
67
67
|
exists.
|
|
68
|
-
- Default behavior: do not pause mid-
|
|
68
|
+
- Default behavior: do not pause mid-run only to ask for
|
|
69
69
|
`STAGING_APP_URL=<staging-origin>`. Record deployed staging as deferred, keep
|
|
70
70
|
the exact smoke command in the waiting artifact, and continue through local
|
|
71
71
|
and CI-verifiable deploy readiness.
|
|
@@ -63,7 +63,7 @@ The plan must include:
|
|
|
63
63
|
|
|
64
64
|
- DECISION: Which findings are safe to action.
|
|
65
65
|
- DECISION: Which artifacts would change.
|
|
66
|
-
- HYPOTHESIS: Why each change better matches the canonical greenfield
|
|
66
|
+
- HYPOTHESIS: Why each change better matches the canonical greenfield project run.
|
|
67
67
|
- OPEN QUESTION: Any product, org, risk, or architecture choice that needs the
|
|
68
68
|
user.
|
|
69
69
|
- A per-artifact impact table for PRD, DESIGN, PRODUCT, ARCH, ROADMAP, STACK,
|
|
@@ -86,7 +86,7 @@ For each channel:
|
|
|
86
86
|
current. Never infer a launch URL from product name, repo name, package name,
|
|
87
87
|
README title, brand name, or common TLDs.
|
|
88
88
|
- If only production is known, do not treat it as staging. If no deployed
|
|
89
|
-
origin is known, do not pause mid-
|
|
89
|
+
origin is known, do not pause mid-run for the staging URL. Record deployed
|
|
90
90
|
launch verification as deferred and ask for
|
|
91
91
|
`STAGING_APP_URL=<deployed staging origin>` only when the user requests
|
|
92
92
|
staging or final project sign-off begins.
|
|
@@ -71,7 +71,7 @@ For each PRD success metric, define an SLO:
|
|
|
71
71
|
verification first.
|
|
72
72
|
- If a credential is truly required, append one exact access item to the single
|
|
73
73
|
waiting access bundle, with the command that will run next. Do not pause
|
|
74
|
-
mid-
|
|
74
|
+
mid-run just to request the deployed staging origin unless the user has
|
|
75
75
|
explicitly asked to stage now.
|
|
76
76
|
- Under `/god-mode --yolo`, continue through every local or CI-verifiable
|
|
77
77
|
observability check before pausing for external access.
|