godpowers 1.0.0 → 1.6.1
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 +106 -5
- package/README.md +10 -6
- package/RELEASE.md +39 -23
- package/SKILL.md +9 -0
- package/agents/god-architect.md +17 -1
- package/agents/god-auditor.md +67 -6
- package/agents/god-docs-writer.md +5 -0
- package/agents/god-explorer.md +38 -2
- package/agents/god-orchestrator.md +24 -4
- package/agents/god-pm.md +10 -0
- package/agents/god-roadmapper.md +11 -0
- package/agents/god-stack-selector.md +8 -0
- package/lib/README.md +73 -21
- package/lib/artifact-linter.js +3 -1
- package/lib/have-nots-validator.js +174 -0
- package/package.json +8 -4
- package/references/HAVE-NOTS.md +24 -0
- package/references/building/README.md +7 -9
- package/references/planning/README.md +11 -8
- package/references/shipping/README.md +11 -10
- package/routing/god-mode.yaml +2 -1
- package/routing/god-preflight.yaml +36 -0
- package/routing/recipes/bluefield-org-aware.yaml +2 -0
- package/routing/recipes/brownfield-onboarding.yaml +4 -2
- package/skills/god-discuss.md +30 -6
- package/skills/god-doctor.md +2 -2
- package/skills/god-init.md +2 -2
- package/skills/god-lint.md +4 -1
- package/skills/god-mode.md +14 -2
- package/skills/god-next.md +5 -0
- package/skills/god-preflight.md +147 -0
- package/skills/god-version.md +2 -2
- package/templates/ARCH.md +3 -0
- package/templates/DOMAIN-GLOSSARY.md +50 -0
- package/workflows/bluefield-arc.yaml +13 -3
- package/workflows/brownfield-arc.yaml +13 -4
package/CHANGELOG.md
CHANGED
|
@@ -5,11 +5,112 @@ 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.1] - 2026-05-15
|
|
9
|
+
|
|
10
|
+
Release hardening patch. Keeps the 1.6 domain precision surface stable while
|
|
11
|
+
making package publication, release checks, and CI verification harder to drift.
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- Added `npm run release:check`, which runs the full test suite, audit checks,
|
|
15
|
+
and package contents verification.
|
|
16
|
+
- Added `scripts/check-package-contents.js` to assert that the npm payload
|
|
17
|
+
includes load-bearing runtime files and excludes local-only development files.
|
|
18
|
+
- Added `docs/RELEASE-CHECKLIST.md` for versioning, verification, package
|
|
19
|
+
surface, tag, npm provenance, and post-release cleanup.
|
|
20
|
+
- Added an explicit plan-mode E2E smoke test for the `/god-mode` full-arc
|
|
21
|
+
workflow against the `todo-app` fixture.
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
- CI now uses `npm ci`, runs audit checks, runs the E2E smoke path explicitly,
|
|
25
|
+
and keeps package checks aligned with local npm scripts.
|
|
26
|
+
- Test documentation now describes the current runtime and E2E smoke coverage
|
|
27
|
+
instead of stale scaffold-only plans.
|
|
28
|
+
- Runtime and reference README files now describe the implemented modules and
|
|
29
|
+
reference files instead of placeholder future work.
|
|
30
|
+
- Package tarballs are ignored by git, and package contents checks reject
|
|
31
|
+
generated tarballs.
|
|
32
|
+
- The release script now pushes the git tag and relies on the tag-triggered
|
|
33
|
+
GitHub Actions npm publish workflow for provenance.
|
|
34
|
+
|
|
35
|
+
### Guardrails
|
|
36
|
+
- This patch does not add new slash commands, agents, workflows, recipes, or
|
|
37
|
+
schemas.
|
|
38
|
+
- The 1.6 domain glossary behavior remains unchanged.
|
|
39
|
+
- Future npm publishes should use the tag-triggered GitHub workflow unless a
|
|
40
|
+
documented emergency requires a manual fallback.
|
|
41
|
+
|
|
42
|
+
## [1.6.0] - 2026-05-15
|
|
43
|
+
|
|
44
|
+
Domain precision release. Adds a Godpowers-native vocabulary layer so fuzzy or
|
|
45
|
+
overloaded project language is clarified before it enters PRD, architecture,
|
|
46
|
+
roadmap, stack, docs, or lint artifacts.
|
|
47
|
+
|
|
48
|
+
### Added
|
|
49
|
+
- Added `.godpowers/domain/GLOSSARY.md` as preparation context for canonical
|
|
50
|
+
terms, avoided aliases, relationships, example dialogue, source notes, and
|
|
51
|
+
unresolved ambiguities.
|
|
52
|
+
- Added `templates/DOMAIN-GLOSSARY.md`.
|
|
53
|
+
- Added domain glossary have-nots DG-01 through DG-05.
|
|
54
|
+
- Added mechanical linter coverage for missing avoided aliases,
|
|
55
|
+
implementation details in glossaries, unresolved ambiguities without owner or
|
|
56
|
+
due date, relationships using undefined terms, and behavior-heavy
|
|
57
|
+
definitions.
|
|
58
|
+
|
|
59
|
+
### Changed
|
|
60
|
+
- `/god-discuss` now runs domain grilling during next-phase scoping.
|
|
61
|
+
- `god-explorer` now inspects code or docs before asking the user when repo
|
|
62
|
+
evidence can answer a domain question.
|
|
63
|
+
- PM, architect, roadmapper, stack selector, and docs writer agents now read
|
|
64
|
+
`.godpowers/domain/GLOSSARY.md` when present.
|
|
65
|
+
- Architecture guidance now limits ADR creation to choices that are hard to
|
|
66
|
+
reverse, surprising without context, and based on a real tradeoff.
|
|
67
|
+
- Public release metadata, package version, and README badge now point to
|
|
68
|
+
1.6.0.
|
|
69
|
+
- Release history now has a `v1.6.0` git tag matching the published npm
|
|
70
|
+
package.
|
|
71
|
+
|
|
72
|
+
### Guardrails
|
|
73
|
+
- The domain glossary is preparation context only. It does not replace PRD,
|
|
74
|
+
ARCH, ROADMAP, STACK, docs, or Pillars files.
|
|
75
|
+
- The glossary stores domain language, not implementation details or technical
|
|
76
|
+
scratch notes.
|
|
77
|
+
- Unresolved vocabulary ambiguity must remain explicit as an open question with
|
|
78
|
+
owner and due date.
|
|
79
|
+
|
|
80
|
+
## [1.5.0] - 2026-05-14
|
|
81
|
+
|
|
82
|
+
Preflight intake release. Adds a read-only front gate before Godpowers applies
|
|
83
|
+
arc-ready direction, pillars scoring, archaeology, reconstruction, or refactor
|
|
84
|
+
work to projects with prior context.
|
|
85
|
+
|
|
86
|
+
### Added
|
|
87
|
+
- Added `/god-preflight`, a read-only intake audit that writes
|
|
88
|
+
`.godpowers/preflight/PREFLIGHT.md`.
|
|
89
|
+
- Added preflight scoring lenses for arc-ready, pillars, Godpowers,
|
|
90
|
+
ready-suite, refactor risk, and suite signals.
|
|
91
|
+
- Added preflight mode to `god-auditor`.
|
|
92
|
+
|
|
93
|
+
### Changed
|
|
94
|
+
- Brownfield workflows now run preflight before archaeology.
|
|
95
|
+
- Bluefield workflows now run org context, then preflight, before the
|
|
96
|
+
constrained arc begins.
|
|
97
|
+
- `/god-mode --yolo` now auto-runs preflight for brownfield and bluefield,
|
|
98
|
+
follows the safest recommended route, and logs that choice to
|
|
99
|
+
`.godpowers/YOLO-DECISIONS.md`.
|
|
100
|
+
- Public release metadata, package version, and README badge now point to
|
|
101
|
+
1.5.0.
|
|
102
|
+
|
|
103
|
+
### Guardrails
|
|
104
|
+
- Greenfield workflows skip preflight unless explicitly requested.
|
|
105
|
+
- Preflight is read-only and does not create PRDs, architecture docs, pillar
|
|
106
|
+
reports, refactor patches, or source-code changes.
|
|
107
|
+
- `--yolo` still pauses for Critical security findings and impossible preflight
|
|
108
|
+
routing contradictions.
|
|
109
|
+
|
|
8
110
|
## [1.0.0] - 2026-05-14
|
|
9
111
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
them.
|
|
112
|
+
Stable 1.0 release. Promotes the shipped Godpowers surface to the stable 1.0
|
|
113
|
+
line so real users can adopt it without the project moving under them.
|
|
13
114
|
|
|
14
115
|
### Added
|
|
15
116
|
- Added 1.0 release notes and public adoption language.
|
|
@@ -21,8 +122,8 @@ them.
|
|
|
21
122
|
- Generated `AGENTS.md` now names Godpowers first, then explains that Pillars is
|
|
22
123
|
the native project context layer and `.godpowers/` remains the workflow state
|
|
23
124
|
and artifact layer.
|
|
24
|
-
- Release documentation now frames the project as stable for
|
|
25
|
-
|
|
125
|
+
- Release documentation now frames the project as stable for real-world use
|
|
126
|
+
rather than pre-launch expansion.
|
|
26
127
|
- The release script now checks the installer version through `package.json`,
|
|
27
128
|
matching the dynamic installer implementation.
|
|
28
129
|
|
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,9 @@ 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.
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
Version 1.6.1 hardens the release path around the 1.6 domain precision layer:
|
|
16
|
+
release checks now cover tests, audit, package contents, E2E smoke, and npm
|
|
17
|
+
payload verification before publishing.
|
|
18
18
|
|
|
19
19
|
It fuses four disciplines into one unified workflow:
|
|
20
20
|
|
|
@@ -23,6 +23,8 @@ It fuses four disciplines into one unified workflow:
|
|
|
23
23
|
truth before commands touch code.
|
|
24
24
|
- **Artifact discipline** - every sentence in every document is a labeled
|
|
25
25
|
decision, hypothesis, or open question. Mechanically verified failure modes.
|
|
26
|
+
- **Domain precision** - fuzzy or overloaded project language is challenged,
|
|
27
|
+
resolved, and stored in a domain glossary before it contaminates planning.
|
|
26
28
|
- **Execution engine** - fresh-context agents in parallel waves with atomic
|
|
27
29
|
commits. No context rot. No sequential bottlenecks.
|
|
28
30
|
- **Quality immune system** - TDD enforcement, two-stage code review (spec
|
|
@@ -118,6 +120,7 @@ when you open a new session in a Godpowers project.
|
|
|
118
120
|
| `/god-launch` | Launch (gated on harden) | god-launch-strategist |
|
|
119
121
|
| `/god-harden` | Adversarial security review | god-harden-auditor |
|
|
120
122
|
| `/god-status` | Re-derive state from disk | (built-in) |
|
|
123
|
+
| `/god-preflight` | Read-only intake audit before arc-ready and pillars | god-auditor |
|
|
121
124
|
| `/god-audit` | Score artifacts against have-nots | god-auditor |
|
|
122
125
|
| `/god-debug` | 4-phase systematic debug | god-debugger |
|
|
123
126
|
| `/god-review` | Two-stage code review | god-spec-reviewer + god-quality-reviewer |
|
|
@@ -204,6 +207,7 @@ Skill updates: PROGRESS.md
|
|
|
204
207
|
```
|
|
205
208
|
.godpowers/PROGRESS.md Cross-tier progress ledger
|
|
206
209
|
.godpowers/prd/PRD.md Product Requirements Document
|
|
210
|
+
.godpowers/domain/GLOSSARY.md Domain vocabulary and resolved ambiguities
|
|
207
211
|
.godpowers/arch/ARCH.md System Architecture
|
|
208
212
|
.godpowers/arch/adr/ Architecture Decision Records
|
|
209
213
|
.godpowers/roadmap/ROADMAP.md Sequenced Roadmap
|
|
@@ -288,9 +292,9 @@ Pi. T3 Code inherits from the underlying agent (Codex / Claude / OpenCode).
|
|
|
288
292
|
|
|
289
293
|
- [Getting Started](docs/getting-started.md)
|
|
290
294
|
- [Concepts](docs/concepts.md)
|
|
291
|
-
- [Command reference (all
|
|
295
|
+
- [Command reference (all 106 skills + 39 agents)](docs/reference.md)
|
|
292
296
|
- [Roadmap](docs/ROADMAP.md)
|
|
293
|
-
- [1.
|
|
297
|
+
- [1.5 Release Notes](RELEASE.md)
|
|
294
298
|
- [Changelog](CHANGELOG.md)
|
|
295
299
|
- [Inspiration](INSPIRATION.md)
|
|
296
300
|
|
package/RELEASE.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
# Godpowers 1.
|
|
1
|
+
# Godpowers 1.6.1 Release
|
|
2
2
|
|
|
3
|
-
Date: 2026-05-
|
|
3
|
+
Date: 2026-05-15
|
|
4
4
|
|
|
5
|
-
Godpowers 1.
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
Godpowers 1.6.1 hardens the release and package path around the 1.6 domain
|
|
6
|
+
precision release. The goal of this patch is to make tests, audit checks,
|
|
7
|
+
package contents, E2E smoke coverage, npm publishing, and GitHub release
|
|
8
|
+
metadata easier to verify before anything reaches users.
|
|
9
9
|
|
|
10
10
|
## What is stable
|
|
11
11
|
|
|
12
|
-
-
|
|
12
|
+
- 106 slash commands
|
|
13
13
|
- 39 specialist agents
|
|
14
14
|
- 13 executable workflows
|
|
15
15
|
- 36 intent recipes
|
|
@@ -19,24 +19,41 @@ evidence.
|
|
|
19
19
|
- Core schemas: intent, state, events, workflow, routing, recipes, extension
|
|
20
20
|
manifests
|
|
21
21
|
- Extension pack compatibility range for the 1.x line
|
|
22
|
+
- Domain precision through `.godpowers/domain/GLOSSARY.md` and DG-01 through
|
|
23
|
+
DG-05 checks
|
|
22
24
|
|
|
23
|
-
## What
|
|
25
|
+
## What is new
|
|
24
26
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
+
- `npm run release:check` now runs tests, audit checks, and package contents
|
|
28
|
+
verification as a single pre-release gate.
|
|
29
|
+
- `npm run pack:check` now asserts required npm payload files and rejects
|
|
30
|
+
local-only files instead of relying on visual dry-run output.
|
|
31
|
+
- CI now installs with `npm ci`, runs audit checks, runs E2E smoke explicitly,
|
|
32
|
+
and keeps package validation tied to local scripts.
|
|
33
|
+
- `docs/RELEASE-CHECKLIST.md` documents the expected release flow, tag flow,
|
|
34
|
+
npm provenance path, and post-release verification.
|
|
35
|
+
- `/god-mode` full-arc has a plan-mode E2E smoke test that verifies 10 jobs,
|
|
36
|
+
7 waves, and a generated `.godpowers/runs/.../plan.yaml` artifact.
|
|
37
|
+
- Stale placeholder docs for runtime libraries, references, and test strategy
|
|
38
|
+
now describe the implemented system.
|
|
27
39
|
|
|
28
|
-
|
|
29
|
-
`agents/context.md` and `agents/repo.md`, and routed pillar files for stack,
|
|
30
|
-
architecture, data, API, UI, auth, quality, deploy, and observe concerns.
|
|
40
|
+
## What 1.6.1 means
|
|
31
41
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
42
|
+
Godpowers 1.6.1 does not expand the public command surface. It tightens the
|
|
43
|
+
release discipline around the existing surface so local checks, CI checks, npm
|
|
44
|
+
payload contents, git tags, and GitHub release metadata agree.
|
|
35
45
|
|
|
36
|
-
|
|
46
|
+
The domain glossary remains preparation context. PRD, ARCH, ROADMAP, STACK,
|
|
47
|
+
docs, and Pillars files still carry durable decisions for their own domains.
|
|
37
48
|
|
|
38
|
-
|
|
39
|
-
|
|
49
|
+
## Stability policy
|
|
50
|
+
|
|
51
|
+
During the 1.x stability window, do not add broad new command families, change
|
|
52
|
+
schema formats, or rename public artifacts without evidence from real use.
|
|
53
|
+
|
|
54
|
+
The `v1.6.1` git tag points to the release commit that matches the npm
|
|
55
|
+
`godpowers@1.6.1` package. Public publishes should prefer the tag-triggered
|
|
56
|
+
GitHub workflow so npm provenance, git history, and release notes stay aligned.
|
|
40
57
|
|
|
41
58
|
Allowed changes:
|
|
42
59
|
|
|
@@ -44,7 +61,7 @@ Allowed changes:
|
|
|
44
61
|
- Documentation clarity
|
|
45
62
|
- Test coverage for frozen behavior
|
|
46
63
|
- Compatibility fixes for supported AI coding tools
|
|
47
|
-
- Small fixes that make existing 1.
|
|
64
|
+
- Small fixes that make existing 1.x behavior work as documented
|
|
48
65
|
|
|
49
66
|
Deferred changes:
|
|
50
67
|
|
|
@@ -56,6 +73,5 @@ Deferred changes:
|
|
|
56
73
|
|
|
57
74
|
## Adoption ask
|
|
58
75
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
should be shaped by those reports rather than by more speculative surface area.
|
|
76
|
+
Run `npm run release:check` before publishing changes. Report any release path
|
|
77
|
+
step that still depends on memory, manual inspection, or local machine state.
|
package/SKILL.md
CHANGED
|
@@ -60,6 +60,13 @@ Every piece of code passes two independent reviews:
|
|
|
60
60
|
|
|
61
61
|
Both must pass. Failing either blocks the commit.
|
|
62
62
|
|
|
63
|
+
### 8. Domain Precision
|
|
64
|
+
Before fuzzy language enters PRD, architecture, roadmap, stack, or docs
|
|
65
|
+
artifacts, challenge it against project vocabulary. If a code or doc scan can
|
|
66
|
+
answer a question, inspect first. When a term is resolved, record it in
|
|
67
|
+
`.godpowers/domain/GLOSSARY.md` with canonical spelling, avoided aliases,
|
|
68
|
+
relationships, and any unresolved ambiguity.
|
|
69
|
+
|
|
63
70
|
---
|
|
64
71
|
|
|
65
72
|
## Operating Modes
|
|
@@ -469,6 +476,8 @@ See individual tier sections above.
|
|
|
469
476
|
PROGRESS.md # Cross-tier progress ledger
|
|
470
477
|
prd/
|
|
471
478
|
PRD.md # Product Requirements Document
|
|
479
|
+
domain/
|
|
480
|
+
GLOSSARY.md # Domain vocabulary and resolved ambiguities
|
|
472
481
|
arch/
|
|
473
482
|
ARCH.md # System Architecture
|
|
474
483
|
adr/ # Architecture Decision Records
|
package/agents/god-architect.md
CHANGED
|
@@ -23,6 +23,8 @@ Before starting:
|
|
|
23
23
|
context.
|
|
24
24
|
- Optional: `.godpowers/prep/IMPORTED-CONTEXT.md` may exist as preparation
|
|
25
25
|
context.
|
|
26
|
+
- Optional: `.godpowers/domain/GLOSSARY.md` may exist as domain preparation
|
|
27
|
+
context.
|
|
26
28
|
- Optional: `.godpowers/design/DESIGN.md` and
|
|
27
29
|
`.godpowers/design/PRODUCT.md` may exist as early product-experience
|
|
28
30
|
preparation.
|
|
@@ -42,6 +44,12 @@ If `.godpowers/prep/IMPORTED-CONTEXT.md` exists, read its technical signals
|
|
|
42
44
|
before drafting ARCH. Use imported architecture, integration, risk, and stack
|
|
43
45
|
constraints as hypothesis-level input only.
|
|
44
46
|
|
|
47
|
+
If `.godpowers/domain/GLOSSARY.md` exists, read it before drafting ARCH. Use
|
|
48
|
+
canonical terms for entities, bounded contexts, services, data ownership,
|
|
49
|
+
trust boundaries, and ADR titles. Treat unresolved glossary ambiguities as
|
|
50
|
+
architecture `[OPEN QUESTION]` entries when they affect ownership, integration
|
|
51
|
+
contracts, state transitions, or external boundaries.
|
|
52
|
+
|
|
45
53
|
If `.godpowers/design/DESIGN.md` or `.godpowers/design/PRODUCT.md` exists,
|
|
46
54
|
read them before drafting ARCH. Use early design to identify user-facing
|
|
47
55
|
surfaces, routes, component boundaries, state flows, accessibility needs, and
|
|
@@ -49,12 +57,18 @@ where architecture must preserve product experience.
|
|
|
49
57
|
|
|
50
58
|
Rules:
|
|
51
59
|
- Do not let imported context override PRD NFRs or Godpowers state.
|
|
60
|
+
- Do not let glossary language override PRD NFRs or Godpowers state.
|
|
52
61
|
- Convert useful imported signals into ADR context, tradeoffs, or open
|
|
53
62
|
questions.
|
|
63
|
+
- Convert useful glossary signals into entity names, relationship language,
|
|
64
|
+
ADR context, bounded context names, or open questions.
|
|
54
65
|
- Convert useful design signals into containers, ADR context, UI boundary
|
|
55
66
|
descriptions, or open questions.
|
|
56
67
|
- If imported context conflicts with the PRD, the PRD wins and the conflict
|
|
57
68
|
becomes an `[OPEN QUESTION]`.
|
|
69
|
+
- If glossary language conflicts with PRD or code evidence, preserve the
|
|
70
|
+
stronger Godpowers artifact or direct code evidence and add an
|
|
71
|
+
`[OPEN QUESTION]`.
|
|
58
72
|
- If ARCH or ADRs create durable architectural truth, plan updates for
|
|
59
73
|
`agents/arch.md` and related pillars. In `--yolo`, apply those updates and
|
|
60
74
|
log them to `.godpowers/YOLO-DECISIONS.md`.
|
|
@@ -73,7 +87,9 @@ ADRs to `.godpowers/arch/adr/`.
|
|
|
73
87
|
2. **Container Diagram (C4 L2)** - major runtime containers with single clear
|
|
74
88
|
responsibilities. No shared responsibility without justification.
|
|
75
89
|
|
|
76
|
-
3. **Architecture Decision Records (ADRs)** - one per significant decision
|
|
90
|
+
3. **Architecture Decision Records (ADRs)** - one per significant decision
|
|
91
|
+
that is hard to reverse, surprising without context, and the result of a
|
|
92
|
+
real tradeoff:
|
|
77
93
|
- Context (what forced the decision)
|
|
78
94
|
- Decision (what was chosen)
|
|
79
95
|
- Rationale (why this over alternatives)
|
package/agents/god-auditor.md
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: god-auditor
|
|
3
3
|
description: |
|
|
4
|
-
|
|
5
|
-
pass/fail per have-not with prioritized remediation.
|
|
6
|
-
by orchestrator to verify gate checks.
|
|
4
|
+
Runs preflight intake, scores existing artifacts against all have-nots, and
|
|
5
|
+
reports pass/fail per have-not with prioritized remediation. Builds nothing.
|
|
6
|
+
Used by /god-preflight, /god-audit, and by orchestrator to verify gate checks.
|
|
7
7
|
|
|
8
|
-
Spawned by: /god-audit, god-orchestrator (gate checks)
|
|
8
|
+
Spawned by: /god-preflight, /god-audit, god-orchestrator (gate checks)
|
|
9
9
|
tools: Read, Bash, Grep, Glob
|
|
10
10
|
---
|
|
11
11
|
|
|
12
12
|
# God Auditor
|
|
13
13
|
|
|
14
|
-
Score artifacts. Build nothing. Report what fails and
|
|
14
|
+
Score artifacts or run preflight intake. Build nothing. Report what fails and
|
|
15
|
+
why.
|
|
15
16
|
|
|
16
17
|
## Process
|
|
17
18
|
|
|
@@ -31,7 +32,9 @@ Score artifacts. Build nothing. Report what fails and why.
|
|
|
31
32
|
4. If running for orchestrator gate check: return verdict only (any
|
|
32
33
|
error from mechanical pass = FAIL; any critical interpretive = FAIL).
|
|
33
34
|
5. If running for /god-audit: produce full report combining both passes.
|
|
34
|
-
6. If running with `mode:
|
|
35
|
+
6. If running with `mode: preflight`, do not run the artifact linter as the
|
|
36
|
+
main task. Inspect the repo and write `.godpowers/preflight/PREFLIGHT.md`.
|
|
37
|
+
7. If running with `mode: greenfield-simulation`, do not build anything.
|
|
35
38
|
Simulate the canonical Godpowers greenfield arc and compare it against the
|
|
36
39
|
current project evidence or org constraints.
|
|
37
40
|
|
|
@@ -152,6 +155,64 @@ Overall: 85%
|
|
|
152
155
|
For gate check (called by orchestrator): return PASS/FAIL with first failure
|
|
153
156
|
only (orchestrator wants speed, not full report).
|
|
154
157
|
|
|
158
|
+
For preflight, write `.godpowers/preflight/PREFLIGHT.md`:
|
|
159
|
+
|
|
160
|
+
```markdown
|
|
161
|
+
# Godpowers Preflight
|
|
162
|
+
|
|
163
|
+
Date: [timestamp]
|
|
164
|
+
Target: [path]
|
|
165
|
+
|
|
166
|
+
## Snapshot
|
|
167
|
+
- DECISION: Project type is [type] because [files or commands].
|
|
168
|
+
- HYPOTHESIS: Primary runtime appears to be [runtime] because [evidence].
|
|
169
|
+
- OPEN QUESTION: [question that blocks confident planning].
|
|
170
|
+
|
|
171
|
+
## Readiness Scores
|
|
172
|
+
| Lens | Score | Evidence | Main blocker |
|
|
173
|
+
|---|---:|---|---|
|
|
174
|
+
| Arc-ready | [0-100] | [specific files or absence] | [blocker] |
|
|
175
|
+
| Pillars | [0-100] | [specific files or absence] | [blocker] |
|
|
176
|
+
| Godpowers | [0-100] | [specific files or absence] | [blocker] |
|
|
177
|
+
| Ready-suite | [0-100 or N/A] | [specific files or absence] | [blocker] |
|
|
178
|
+
|
|
179
|
+
## Inventory
|
|
180
|
+
- DECISION: [thing found] at `[path]`.
|
|
181
|
+
- HYPOTHESIS: [thing inferred] from `[path]`.
|
|
182
|
+
|
|
183
|
+
## Blockers Before Arc-Ready
|
|
184
|
+
1. DECISION: [blocker].
|
|
185
|
+
Evidence: `[path]` or missing `[path]`.
|
|
186
|
+
Next move: [specific command or artifact].
|
|
187
|
+
|
|
188
|
+
## Pillar Weaknesses
|
|
189
|
+
1. DECISION: [weakness].
|
|
190
|
+
Evidence: `[path]` or missing `[path]`.
|
|
191
|
+
Impact: [why it matters].
|
|
192
|
+
|
|
193
|
+
## Refactor Risk
|
|
194
|
+
1. HYPOTHESIS: [risk].
|
|
195
|
+
Evidence: `[path]`.
|
|
196
|
+
Avoid until: [needed proof or test].
|
|
197
|
+
|
|
198
|
+
## Recommended Sequence
|
|
199
|
+
1. DECISION: Run [next command or task] first because [reason].
|
|
200
|
+
2. DECISION: Run [next command or task] second because [reason].
|
|
201
|
+
3. DECISION: Defer [task] until [condition].
|
|
202
|
+
```
|
|
203
|
+
|
|
204
|
+
Preflight rules:
|
|
205
|
+
- Inspect package manifests, lockfiles, build files, test config, CI config,
|
|
206
|
+
source layout, entry points, docs, ADRs, env examples, AGENTS.md, deploy
|
|
207
|
+
signals, observability signals, and ownership signals.
|
|
208
|
+
- Brownfield mode inspects existing codebase shape and refactor risk.
|
|
209
|
+
- Bluefield mode inspects org context, sibling conventions, shared packages,
|
|
210
|
+
deployment expectations, and quality bars.
|
|
211
|
+
- Greenfield mode skips preflight unless explicitly requested.
|
|
212
|
+
- Tie every score to repo evidence.
|
|
213
|
+
- Prefer "unknown" over confident invention.
|
|
214
|
+
- Do not modify application code or canonical planning artifacts.
|
|
215
|
+
|
|
155
216
|
For greenfield simulation audit, write
|
|
156
217
|
`.godpowers/audit/GREENFIELD-SIMULATION.md`:
|
|
157
218
|
|
|
@@ -20,8 +20,10 @@ Write docs that don't lie.
|
|
|
20
20
|
Identify:
|
|
21
21
|
- Existing docs (README, CONTRIBUTING, API docs, comments, etc.)
|
|
22
22
|
- Code surface (public APIs, exported functions, CLI commands, env vars)
|
|
23
|
+
- `.godpowers/domain/GLOSSARY.md` if present
|
|
23
24
|
- Doc gaps: code with no docs
|
|
24
25
|
- Doc drift: docs claiming things that aren't true
|
|
26
|
+
- Term drift: docs using avoided aliases or conflicting meanings
|
|
25
27
|
|
|
26
28
|
### 2. Verify Existing Docs Against Code
|
|
27
29
|
|
|
@@ -29,6 +31,8 @@ For every claim in existing docs:
|
|
|
29
31
|
- Find the corresponding code
|
|
30
32
|
- Verify the claim matches reality
|
|
31
33
|
- Flag drift (e.g., README says `npm start` but package.json has `npm run dev`)
|
|
34
|
+
- If `.godpowers/domain/GLOSSARY.md` exists, verify docs use canonical terms
|
|
35
|
+
unless a non-canonical term is quoted from an external source.
|
|
32
36
|
|
|
33
37
|
### 3. Write or Update
|
|
34
38
|
|
|
@@ -95,6 +99,7 @@ Date: [ISO 8601]
|
|
|
95
99
|
Docs FAIL if:
|
|
96
100
|
- Any claim contradicts the code
|
|
97
101
|
- Substitution test passes (reads generic)
|
|
102
|
+
- Avoided glossary aliases appear as current project language
|
|
98
103
|
- Examples don't actually run
|
|
99
104
|
- Runbooks have never been executed
|
|
100
105
|
- API docs out of sync with function signatures
|
package/agents/god-explorer.md
CHANGED
|
@@ -14,6 +14,10 @@ tools: Read, Write, Bash, WebSearch
|
|
|
14
14
|
You are a Socratic interviewer. Your job is NOT to write a PRD or architecture.
|
|
15
15
|
Your job is to help the user clarify what they actually want to build.
|
|
16
16
|
|
|
17
|
+
When spawned by `/god-discuss` with focus="next-phase-scoping", you also run a
|
|
18
|
+
domain grilling session. The goal is to sharpen project language before it
|
|
19
|
+
enters PRD, architecture, roadmap, stack, or docs artifacts.
|
|
20
|
+
|
|
17
21
|
## Process
|
|
18
22
|
|
|
19
23
|
### Phase 1: Listen
|
|
@@ -22,9 +26,19 @@ Read what the user gave you. Identify:
|
|
|
22
26
|
- Stated solution (often conflated with the problem)
|
|
23
27
|
- Stated audience
|
|
24
28
|
- Implicit assumptions
|
|
29
|
+
- Existing project-specific terms
|
|
30
|
+
- Terms that appear overloaded, vague, or inconsistent
|
|
31
|
+
|
|
32
|
+
Read `.godpowers/domain/GLOSSARY.md` if it exists. If it does not exist, create
|
|
33
|
+
it lazily from `templates/DOMAIN-GLOSSARY.md` only after the first term or
|
|
34
|
+
ambiguity is resolved.
|
|
35
|
+
|
|
36
|
+
If code or docs can answer a question, inspect them before asking the user.
|
|
37
|
+
Prefer repo evidence over a human question when the evidence is direct.
|
|
25
38
|
|
|
26
39
|
### Phase 2: Probe
|
|
27
|
-
Ask targeted questions, NOT open-ended ones
|
|
40
|
+
Ask targeted questions one at a time, NOT open-ended ones. Provide your
|
|
41
|
+
recommended answer with each question:
|
|
28
42
|
|
|
29
43
|
NOT: "Tell me more about your users."
|
|
30
44
|
YES: "You said 'developers'. Are these developers building products, or
|
|
@@ -40,6 +54,15 @@ Surface hidden assumptions:
|
|
|
40
54
|
- "You assume users will pay $X. What's the next-best alternative they'd
|
|
41
55
|
pay $0 for?"
|
|
42
56
|
|
|
57
|
+
Challenge domain language:
|
|
58
|
+
- If a term conflicts with `.godpowers/domain/GLOSSARY.md`, call it out
|
|
59
|
+
immediately and ask which meaning should win.
|
|
60
|
+
- If a term is fuzzy or overloaded, propose one canonical term and list aliases
|
|
61
|
+
to avoid.
|
|
62
|
+
- If relationships between terms matter, test them with concrete edge cases.
|
|
63
|
+
- Record resolved terms, avoided aliases, relationships, and ambiguities in
|
|
64
|
+
`.godpowers/domain/GLOSSARY.md` as they are resolved.
|
|
65
|
+
|
|
43
66
|
### Phase 3: Reframe
|
|
44
67
|
Present 2-3 alternative framings of the same problem:
|
|
45
68
|
|
|
@@ -63,10 +86,15 @@ Based on the conversation:
|
|
|
63
86
|
- Which framing has the strongest signal?
|
|
64
87
|
- What's the single most important question to answer next?
|
|
65
88
|
- What can be deferred until V2?
|
|
89
|
+
- Which canonical terms should downstream agents use?
|
|
90
|
+
- Which ambiguities block PRD, architecture, roadmap, stack, or docs work?
|
|
91
|
+
- Whether any decision deserves an ADR because it is hard to reverse,
|
|
92
|
+
surprising without context, and the result of a real tradeoff
|
|
66
93
|
|
|
67
94
|
## Output
|
|
68
95
|
|
|
69
|
-
|
|
96
|
+
For open-ended `/god-explore`, write `.godpowers/explore/[topic-slug].md`.
|
|
97
|
+
For `/god-discuss`, write `.godpowers/discussions/[topic-slug].md`.
|
|
70
98
|
|
|
71
99
|
```markdown
|
|
72
100
|
# Explored: [Topic]
|
|
@@ -84,6 +112,12 @@ Date: [timestamp]
|
|
|
84
112
|
- Q: [...] -> A: [...]
|
|
85
113
|
- Q: [...] -> A: [...]
|
|
86
114
|
|
|
115
|
+
## Domain language resolved
|
|
116
|
+
- [DECISION] [Canonical term]: [definition]. Avoid: [aliases].
|
|
117
|
+
|
|
118
|
+
## Domain ambiguities remaining
|
|
119
|
+
- [OPEN QUESTION] [Ambiguity]. Owner: [name]. Due: [date].
|
|
120
|
+
|
|
87
121
|
## Alternative framings considered
|
|
88
122
|
[Framings A, B, C with pros/cons]
|
|
89
123
|
|
|
@@ -99,6 +133,8 @@ Date: [timestamp]
|
|
|
99
133
|
- User has clarity (or confirms one framing as the direction)
|
|
100
134
|
- Output document exists with the seed for /god-prd
|
|
101
135
|
- Open questions explicitly listed (not buried in prose)
|
|
136
|
+
- Resolved domain terms are captured in `.godpowers/domain/GLOSSARY.md`
|
|
137
|
+
- Glossary updates contain no implementation details
|
|
102
138
|
|
|
103
139
|
## NOT Your Job
|
|
104
140
|
|
|
@@ -634,15 +634,25 @@ Never pause for:
|
|
|
634
634
|
Pass `--yolo` to every spawned specialist agent. They will auto-pick the
|
|
635
635
|
default at every pause condition and log the decision to YOLO-DECISIONS.md.
|
|
636
636
|
|
|
637
|
-
|
|
637
|
+
For brownfield and bluefield, run `/god-preflight` automatically before
|
|
638
|
+
archaeology, reconstruction, arc-ready, pillars, or refactor work when
|
|
639
|
+
`.godpowers/preflight/PREFLIGHT.md` is absent. Treat the preflight report as
|
|
640
|
+
the routing baseline. Under `--yolo`, auto-follow the safest recommended next
|
|
641
|
+
route and log the choice to `.godpowers/YOLO-DECISIONS.md`.
|
|
642
|
+
|
|
643
|
+
Auto-resolve all pause categories EXCEPT:
|
|
638
644
|
|
|
639
645
|
**Critical security findings ALWAYS pause, even with --yolo.**
|
|
640
646
|
|
|
647
|
+
**Impossible preflight routing contradictions pause, even with --yolo.**
|
|
648
|
+
|
|
641
649
|
Rationale: shipping with a known Critical vulnerability is a category of risk
|
|
642
|
-
that should never be auto-accepted.
|
|
643
|
-
|
|
650
|
+
that should never be auto-accepted. A preflight contradiction means the repo
|
|
651
|
+
evidence does not support any safe next route. If god-harden-auditor returns
|
|
652
|
+
Critical findings, or preflight cannot choose between mutually exclusive
|
|
653
|
+
routes from evidence, --yolo does NOT skip. Pause for human resolution.
|
|
644
654
|
|
|
645
|
-
|
|
655
|
+
These are the only --yolo carve-outs. All other pauses are auto-resolved with
|
|
646
656
|
the agent's documented default, and all repairable mechanical failures are
|
|
647
657
|
handled by the autonomous repair loop before the arc can be called complete.
|
|
648
658
|
|
|
@@ -974,6 +984,16 @@ Review and revise any that don't match your intent.
|
|
|
974
984
|
|
|
975
985
|
Append to YOLO-DECISIONS.md every time --yolo would have paused.
|
|
976
986
|
|
|
987
|
+
For preflight auto-routing, append:
|
|
988
|
+
|
|
989
|
+
```markdown
|
|
990
|
+
## Tier 0 / Preflight
|
|
991
|
+
- Pause: Select first brownfield or bluefield route from preflight findings
|
|
992
|
+
- Auto-picked: [command]
|
|
993
|
+
- Reason: [preflight evidence and safest-sequence rationale]
|
|
994
|
+
- Timestamp: [ISO 8601]
|
|
995
|
+
```
|
|
996
|
+
|
|
977
997
|
## Have-Nots Reference
|
|
978
998
|
|
|
979
999
|
The canonical have-nots catalog lives at `references/HAVE-NOTS.md` (115 named
|
package/agents/god-pm.md
CHANGED
|
@@ -44,13 +44,23 @@ If `.godpowers/prep/IMPORTED-CONTEXT.md` exists, read it before drafting the
|
|
|
44
44
|
PRD. Use product signals from GSD, Superpowers, BMAD, or similar systems as
|
|
45
45
|
hypothesis-level input only.
|
|
46
46
|
|
|
47
|
+
If `.godpowers/domain/GLOSSARY.md` exists, read it before drafting the PRD.
|
|
48
|
+
Use canonical terms from the glossary in problem statements, target users,
|
|
49
|
+
requirements, no-gos, and open questions. Treat unresolved glossary
|
|
50
|
+
ambiguities as PRD `[OPEN QUESTION]` entries when they affect scope,
|
|
51
|
+
acceptance criteria, or success metrics.
|
|
52
|
+
|
|
47
53
|
Rules:
|
|
48
54
|
- Do not copy imported text wholesale into the PRD.
|
|
49
55
|
- Do not treat imported context as source of truth.
|
|
56
|
+
- Do not let glossary terms override user intent or completed Godpowers
|
|
57
|
+
artifacts.
|
|
50
58
|
- Convert relevant imported product signals into `[HYPOTHESIS]` requirements,
|
|
51
59
|
success metrics, scope notes, no-gos, or open questions.
|
|
52
60
|
- If imported context conflicts with user intent or existing Godpowers state,
|
|
53
61
|
preserve the Godpowers state and add an `[OPEN QUESTION]`.
|
|
62
|
+
- If the glossary conflicts with user intent or existing Godpowers state,
|
|
63
|
+
preserve the Godpowers state and add an `[OPEN QUESTION]`.
|
|
54
64
|
- In PRD rationale, mention the source only when it materially changes a
|
|
55
65
|
requirement.
|
|
56
66
|
- If the PRD creates durable product truth, plan corresponding updates for
|