godpowers 3.0.1 → 3.11.0
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 +255 -2
- package/README.md +31 -14
- package/RELEASE.md +21 -33
- package/SKILL.md +71 -112
- package/bin/install.js +44 -0
- package/fixtures/gate/harden-pass/.godpowers/state.json +26 -0
- package/lib/README.md +1 -0
- package/lib/artifact-map.js +2 -1
- package/lib/cli-dispatch.js +449 -3
- package/lib/command-families.js +10 -2
- package/lib/evidence/.provenance.json +45 -0
- package/lib/evidence-import.js +147 -0
- package/lib/evidence.js +908 -0
- package/lib/gate.js +26 -15
- package/lib/install-profiles.js +4 -1
- package/lib/installer-args.js +241 -1
- package/lib/quarterback.js +183 -0
- package/lib/surface-profile.js +168 -0
- package/lib/work-report.js +137 -0
- package/package.json +2 -2
- package/references/orchestration/GOD-MODE-RUNBOOK.md +9 -14
- package/references/orchestration/GOD-ORCHESTRATOR-RUNBOOK.md +40 -82
- package/references/shared/DASHBOARD-CONTRACT.md +66 -29
- package/references/shared/README.md +1 -1
- package/routing/god-demo.yaml +35 -0
- package/routing/god-first-run.yaml +34 -0
- package/routing/god-surface.yaml +39 -0
- package/routing/recipes/try-safely.yaml +26 -0
- package/skills/god-agent-audit.md +5 -6
- package/skills/god-archaeology.md +5 -6
- package/skills/god-audit.md +6 -7
- package/skills/god-automation-setup.md +6 -7
- package/skills/god-automation-status.md +6 -7
- package/skills/god-context-scan.md +7 -8
- package/skills/god-demo.md +53 -0
- package/skills/god-design-impact.md +5 -6
- package/skills/god-discuss.md +5 -6
- package/skills/god-docs.md +5 -10
- package/skills/god-doctor.md +8 -9
- package/skills/god-dogfood.md +7 -10
- package/skills/god-explore.md +5 -7
- package/skills/god-first-run.md +64 -0
- package/skills/god-harden.md +5 -2
- package/skills/god-help.md +77 -51
- package/skills/god-hygiene.md +5 -6
- package/skills/god-lifecycle.md +11 -13
- package/skills/god-list-assumptions.md +7 -8
- package/skills/god-locate.md +7 -8
- package/skills/god-map-codebase.md +5 -6
- package/skills/god-migrate.md +6 -15
- package/skills/god-next.md +16 -17
- package/skills/god-preflight.md +7 -8
- package/skills/god-progress.md +7 -8
- package/skills/god-reconcile.md +5 -6
- package/skills/god-reconstruct.md +5 -7
- package/skills/god-refactor.md +6 -7
- package/skills/god-roadmap-check.md +6 -7
- package/skills/god-scan.md +5 -9
- package/skills/god-spike.md +5 -6
- package/skills/god-standards.md +5 -6
- package/skills/god-status.md +12 -10
- package/skills/god-surface.md +61 -0
- package/skills/god-sync.md +4 -8
- package/skills/god-tech-debt.md +5 -6
- package/skills/god-test-runtime.md +4 -8
- package/skills/god-version.md +1 -1
- package/skills/god.md +53 -52
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,259 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [3.11.0] - 2026-06-15
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- Added `lib/evidence-import.js` and the `npx godpowers import-ledger [--from
|
|
14
|
+
<path>]` CLI: a one-time, best-effort importer that copies an existing Mythify
|
|
15
|
+
`.mythify/` ledger into `.godpowers/ledger/` (verifications rebinding
|
|
16
|
+
plan/step to arc/substep, reflections, memory merged by key, lessons, and
|
|
17
|
+
outcomes). Records are appended; no state rollup and no gate events.
|
|
18
|
+
- Exported `readJsonl` and `appendJsonlAtomic` from `lib/evidence.js` for reuse.
|
|
19
|
+
|
|
20
|
+
### Notes
|
|
21
|
+
- This is the final item in `docs/FUSION-ARCHITECTURE.md`. With it, the native
|
|
22
|
+
fusion of Mythify's evidence engine and quarterback into Godpowers (Phases 0-3
|
|
23
|
+
plus the optional importer) is complete.
|
|
24
|
+
|
|
25
|
+
## [3.10.0] - 2026-06-15
|
|
26
|
+
|
|
27
|
+
### Added
|
|
28
|
+
- Added three read-only MCP tools to `@godpowers/mcp` (Phase 3, the final fusion
|
|
29
|
+
slice): `work_report` (wraps `lib/work-report.js`, forced peek so it never
|
|
30
|
+
advances the cursor), `route` (wraps `lib/quarterback.js`, never mutates
|
|
31
|
+
state), and `verification_history` (wraps `lib/evidence.js` history). All
|
|
32
|
+
carry `readOnlyHint:true` via the same `requireRuntime` bridge. The companion
|
|
33
|
+
now exposes eight read-only tools.
|
|
34
|
+
|
|
35
|
+
### Notes
|
|
36
|
+
- This release completes the native fusion of Mythify's evidence engine and
|
|
37
|
+
quarterback into Godpowers across Phases 0-3 (`docs/FUSION-ARCHITECTURE.md`):
|
|
38
|
+
the evidence producer, enforced close-on-evidence on the build and harden
|
|
39
|
+
gates, the quarterback entry router, the work report, reflections, memory,
|
|
40
|
+
lessons, outcome loops, and now the MCP read tools. Mutating verification stays
|
|
41
|
+
on the CLI and orchestrator path.
|
|
42
|
+
|
|
43
|
+
## [3.9.0] - 2026-06-15
|
|
44
|
+
|
|
45
|
+
### Added
|
|
46
|
+
- Added `evidence.outcome.start/check/stop/status` (Phase 3), rebound from
|
|
47
|
+
Mythify's `outcomes/<slug>/` store: a bounded retry loop with `goal.json` and
|
|
48
|
+
`iterations.jsonl` at `.godpowers/ledger/outcomes/<slug>/`. `check` runs the
|
|
49
|
+
verifier through `evidence.verify` (so the executed verdict is also written to
|
|
50
|
+
the main verifications ledger and rolled up), appends an iteration, and marks
|
|
51
|
+
the outcome succeeded, failed when the budget is exhausted, or still active.
|
|
52
|
+
- Added the `npx godpowers outcome start|check|stop|status <name> [--goal ...]
|
|
53
|
+
[--verify "<cmd>"] [--budget N] [--substep <id>] [--reason ...]` CLI subcommand.
|
|
54
|
+
|
|
55
|
+
### Notes
|
|
56
|
+
- Outcome state lives under the ledger; `check` is the only path that mutates
|
|
57
|
+
shared state, and it does so through the existing `evidence.verify` rollup. No
|
|
58
|
+
existing command behavior changed.
|
|
59
|
+
|
|
60
|
+
## [3.8.0] - 2026-06-15
|
|
61
|
+
|
|
62
|
+
### Added
|
|
63
|
+
- Added `evidence.lesson.add/list` (Phase 3), rebound from Mythify's lessons
|
|
64
|
+
store: append tagged lessons with project or global scope to
|
|
65
|
+
`.godpowers/ledger/lessons.jsonl` (or `~/.godpowers/lessons.jsonl` for global).
|
|
66
|
+
- Added the `npx godpowers lesson add|list "<lesson>" [--tags a,b] [--scope
|
|
67
|
+
project|global]` CLI subcommand.
|
|
68
|
+
|
|
69
|
+
### Changed
|
|
70
|
+
- `evidence.reflect()` now auto-records a project lesson tagged `auto-reflected`
|
|
71
|
+
when a reflection carries a lesson, matching the upstream reflect tool. The
|
|
72
|
+
reflection record itself is unchanged.
|
|
73
|
+
|
|
74
|
+
### Notes
|
|
75
|
+
- The lessons store is isolated: it never touches `state.json`, the
|
|
76
|
+
verifications ledger, or the event stream.
|
|
77
|
+
|
|
78
|
+
## [3.7.0] - 2026-06-15
|
|
79
|
+
|
|
80
|
+
### Added
|
|
81
|
+
- Added `evidence.memory.set/get/list/clear` (Phase 3), rebound from Mythify's
|
|
82
|
+
memory.json: a durable key/value store with categories fact, decision,
|
|
83
|
+
discovery, and state at `.godpowers/ledger/memory.json`. `set` upserts by key
|
|
84
|
+
and defaults the category to fact; `clear` removes one key or all entries;
|
|
85
|
+
writes go through `lib/atomic-write.js`.
|
|
86
|
+
- Added the `npx godpowers memory set|get|list|clear [<key>] [<value>]
|
|
87
|
+
[--category ...]` CLI subcommand.
|
|
88
|
+
|
|
89
|
+
### Notes
|
|
90
|
+
- The memory store is isolated: it never touches `state.json`, the verifications
|
|
91
|
+
ledger, or the event stream. No existing command behavior changed.
|
|
92
|
+
|
|
93
|
+
## [3.6.0] - 2026-06-15
|
|
94
|
+
|
|
95
|
+
### Added
|
|
96
|
+
- Added `evidence.reflect()` and `evidence.reflections()` (Phase 3), rebound from
|
|
97
|
+
Mythify's reflect tool: record action, outcome (success/partial/failure),
|
|
98
|
+
observation, root cause, next action, and an optional lesson to
|
|
99
|
+
`.godpowers/ledger/reflections.jsonl` with substep context.
|
|
100
|
+
- Added the `npx godpowers reflect --action "<...>" --outcome <...> --next "<...>"`
|
|
101
|
+
CLI subcommand (`--observation`, `--root-cause`, `--lesson`, `--substep`
|
|
102
|
+
optional).
|
|
103
|
+
|
|
104
|
+
### Changed
|
|
105
|
+
- Generalized the ledger jsonl append/read into shared `appendJsonlAtomic` and
|
|
106
|
+
`readJsonl` helpers in `lib/evidence.js` so verifications and reflections share
|
|
107
|
+
one atomic path. No change to the verifications record shape or behavior.
|
|
108
|
+
|
|
109
|
+
### Notes
|
|
110
|
+
- `reflect` is isolated: it never touches `state.json`, the verifications ledger,
|
|
111
|
+
or the event stream. No existing command behavior changed.
|
|
112
|
+
|
|
113
|
+
## [3.5.0] - 2026-06-15
|
|
114
|
+
|
|
115
|
+
### Added
|
|
116
|
+
- Added `lib/work-report.js`, the chat play-by-play (Phase 3) rebound from
|
|
117
|
+
Mythify's build_work_report. It reads the evidence ledger, surfaces an
|
|
118
|
+
Attention section for unverified records, summarizes passed/failed/attested,
|
|
119
|
+
and advances a report cursor at `.godpowers/ledger/reports/cursor.json` so a
|
|
120
|
+
fresh session emits only what is new.
|
|
121
|
+
- Added the read-only `npx godpowers report --since last` CLI subcommand
|
|
122
|
+
(`--since all` for full history, `--peek` to show without advancing the
|
|
123
|
+
cursor).
|
|
124
|
+
|
|
125
|
+
### Notes
|
|
126
|
+
- `report` is read-only beyond the report cursor and never mutates `state.json`;
|
|
127
|
+
no existing command behavior changed. This is the first Phase 3 slice; outcome
|
|
128
|
+
loops, memory, lessons, reflections, and MCP read tools remain to come.
|
|
129
|
+
|
|
130
|
+
## [3.4.0] - 2026-06-15
|
|
131
|
+
|
|
132
|
+
### Added
|
|
133
|
+
- Added `lib/quarterback.js`, the entry-level two-layer router (Phase 2 of the
|
|
134
|
+
fusion design). It composes `router.suggestNext` and `recipes.matchIntent` and
|
|
135
|
+
adds the two genes Godpowers lacked at entry: refuse-on-red (never start new
|
|
136
|
+
work when the latest executed verdict is red or harden findings carry an
|
|
137
|
+
unresolved Critical) and proportional ceremony (a one-line fix routes to
|
|
138
|
+
`/god-fast`, not an arc). The priority ladder is recover, resume, recovery,
|
|
139
|
+
brownfield, research, review, full, feature, trivial; first match wins.
|
|
140
|
+
- Added the read-only `npx godpowers route "<prompt>"` CLI subcommand, which
|
|
141
|
+
returns the chosen play with its next command, ceremony level, verification
|
|
142
|
+
strategy, and an evidence block (classification, latest verdict, active arc,
|
|
143
|
+
open findings). `route` never mutates state.
|
|
144
|
+
|
|
145
|
+
### Notes
|
|
146
|
+
- `route` is read-only and additive; no existing command behavior changed. The
|
|
147
|
+
quarterback reads the evidence ledger and harden findings to decide refuse-on-red.
|
|
148
|
+
|
|
149
|
+
## [3.3.0] - 2026-06-15
|
|
150
|
+
|
|
151
|
+
### Added
|
|
152
|
+
- Added the `npx godpowers can-close --substep <id>` CLI subcommand, a read-only
|
|
153
|
+
face over `evidence.canClose`. It exits zero only when the substep has the
|
|
154
|
+
evidence to close (executable-gated tiers need a passing executed record since
|
|
155
|
+
they went in-flight; other tiers accept an attested record), so skills and the
|
|
156
|
+
orchestrator can shell into the strict close gate the way they already shell
|
|
157
|
+
`gate` and `state advance`.
|
|
158
|
+
|
|
159
|
+
### Changed
|
|
160
|
+
- Wired the `GOD-ORCHESTRATOR-RUNBOOK` close loop to record executed evidence and
|
|
161
|
+
confirm `can-close` is green before advancing an executable-gated sub-step to
|
|
162
|
+
done. This completes the orchestrator side of the Phase 1 close-on-evidence
|
|
163
|
+
path (`docs/FUSION-ARCHITECTURE.md`). No existing command behavior changed; the
|
|
164
|
+
CLI addition is additive and the runbook change is prompt-level guidance.
|
|
165
|
+
|
|
166
|
+
## [3.2.0] - 2026-06-15
|
|
167
|
+
|
|
168
|
+
### Changed
|
|
169
|
+
- BEHAVIOR CHANGE: the `harden` gate now requires executed verification
|
|
170
|
+
evidence. `lib/gate.js`'s build-only executed-evidence requirement is
|
|
171
|
+
generalized to every executable-gated tier, driven by
|
|
172
|
+
`evidence.EXECUTED_REQUIRED_SUBSTEPS` (`build`, `deploy`, `harden`). The
|
|
173
|
+
harden gate now requires at least one passed and zero failed verification
|
|
174
|
+
commands in `state.json` `verification.commands[]`, in addition to its
|
|
175
|
+
no-Critical-findings check. A security tier can no longer close "done" without
|
|
176
|
+
an exit-code-backed passing record. Finding ids are tier-prefixed, so the
|
|
177
|
+
build tier keeps its `build-verification-*` contract and harden gains
|
|
178
|
+
`harden-verification-*`.
|
|
179
|
+
- Updated the `god-harden` skill to record the executed security check
|
|
180
|
+
(for example `npx godpowers verify "npm audit --omit=dev" --substep
|
|
181
|
+
tier-3.harden`) before running the harden gate.
|
|
182
|
+
|
|
183
|
+
### Added
|
|
184
|
+
- Added the `tier-3.harden` state-step mapping in `lib/artifact-map.js` so the
|
|
185
|
+
harden gate reads structured state evidence (matching `build`).
|
|
186
|
+
|
|
187
|
+
### Notes
|
|
188
|
+
- This is the first enforced close-on-evidence behavior change from the Phase 1
|
|
189
|
+
fusion design (`docs/FUSION-ARCHITECTURE.md`). Projects that closed a harden
|
|
190
|
+
step without a verification record must now run `godpowers verify` (or record
|
|
191
|
+
an attested record where no executable check applies) before the harden gate
|
|
192
|
+
passes. The build gate behavior is unchanged.
|
|
193
|
+
|
|
194
|
+
## [3.1.1] - 2026-06-15
|
|
195
|
+
|
|
196
|
+
### Added
|
|
197
|
+
- Added `evidence.canClose(substep)` to `lib/evidence.js`, the read-only strict
|
|
198
|
+
close-gate primitive rebound from Mythify's completion rule: a substep may
|
|
199
|
+
close only when evidence bound to it since it went in-flight supports the
|
|
200
|
+
close. Tier-appropriate per `docs/FUSION-ARCHITECTURE.md` section 4.2:
|
|
201
|
+
`build`/`deploy`/`harden` require the latest executed record to be
|
|
202
|
+
`verified:true`; other substeps accept an executed pass or an attested record,
|
|
203
|
+
and a failed executed record always blocks.
|
|
204
|
+
|
|
205
|
+
### Notes
|
|
206
|
+
- `canClose` is additive and read-only. It does not mutate state and is not yet
|
|
207
|
+
wired into `gate.js` or the close path; wiring it in (the deliberate
|
|
208
|
+
behavior change) is the remaining Phase 1 work tracked in
|
|
209
|
+
`docs/FUSION-ARCHITECTURE.md`. No existing behavior changed in this release.
|
|
210
|
+
|
|
211
|
+
## [3.1.0] - 2026-06-15
|
|
212
|
+
|
|
213
|
+
### Added
|
|
214
|
+
- Added the evidence producer in `lib/evidence.js`, vendored from the Mythify
|
|
215
|
+
Node engine (`mythify-mcp@3.6.3`, `verify_run`/`verify_claim`). `evidence.verify()`
|
|
216
|
+
executes a command, appends an exit-code-backed record to the new append-only
|
|
217
|
+
`.godpowers/ledger/verifications.jsonl`, rolls the latest verdict per command
|
|
218
|
+
into `state.json` `verification.commands[]` through `lib/state.js`, and emits
|
|
219
|
+
`gate.pass`/`gate.fail` to the hash-chained `runs/<id>/events.jsonl` stream.
|
|
220
|
+
`evidence.verifyClaim()` records a second-class attested record that never
|
|
221
|
+
rolls up.
|
|
222
|
+
- Added the `npx godpowers verify "<cmd>" --substep <id> --claim "<text>"` CLI
|
|
223
|
+
subcommand (with `--timeout`, and `--attest`/`--evidence` for attestations),
|
|
224
|
+
wired through `lib/cli-dispatch.js`.
|
|
225
|
+
- Added `lib/evidence/.provenance.json` recording the vendored engine's source,
|
|
226
|
+
version, commit, and adaptations, plus `scripts/sync-evidence-engine.js` to
|
|
227
|
+
re-pull the upstream engine, re-state the adaptations, and flag any upstream
|
|
228
|
+
record-shape drift for review.
|
|
229
|
+
- Added `docs/FUSION-ARCHITECTURE.md`, the canonical design for transplanting
|
|
230
|
+
Mythify's evidence engine and quarterback into Godpowers (Phases 0-3; this
|
|
231
|
+
release lands Phase 0).
|
|
232
|
+
|
|
233
|
+
### Changed
|
|
234
|
+
- `state.json` `verification.commands[]` is now reliably populated by the
|
|
235
|
+
evidence producer (previously specified in the schema but never written).
|
|
236
|
+
This is additive: the build gate reads the same shape, no gate behavior or
|
|
237
|
+
close-on-evidence logic changed (that is Phase 1).
|
|
238
|
+
|
|
239
|
+
## [3.0.2] - 2026-06-11
|
|
240
|
+
|
|
241
|
+
### Added
|
|
242
|
+
- Added `/god-first-run`, `/god-demo`, and `/god-surface` as concierge
|
|
243
|
+
entry points for onboarding, sandbox proof, and post-install surface control.
|
|
244
|
+
- Added the `try-safely` recipe for users who want a proof path before
|
|
245
|
+
touching their current project.
|
|
246
|
+
- Added `godpowers demo` and `godpowers surface` CLI helpers, including
|
|
247
|
+
dry-run and apply flows for runtime profile changes.
|
|
248
|
+
|
|
249
|
+
### Changed
|
|
250
|
+
- Changed default command guidance from catalog-first and dashboard-first
|
|
251
|
+
output to compact recommendations with `Next commands:` blocks.
|
|
252
|
+
- Updated `/god-help`, `/god`, `/god-next`, `/god-status`, and shared
|
|
253
|
+
dashboard contracts so full catalogs and full dashboards are opt-in.
|
|
254
|
+
- Updated README, roadmap, reference, release notes, architecture, and Pillar
|
|
255
|
+
context counts for the 120-command and 43-recipe public surface.
|
|
256
|
+
|
|
257
|
+
### Fixed
|
|
258
|
+
- Added package, routing, installer-profile, command-family, quick-proof, and
|
|
259
|
+
surface-profile tests for the new concierge surface.
|
|
260
|
+
- Refreshed repo documentation sync and repo surface sync evidence after the
|
|
261
|
+
new surface landed.
|
|
262
|
+
|
|
10
263
|
## [3.0.1] - 2026-06-11
|
|
11
264
|
|
|
12
265
|
### Changed
|
|
@@ -42,7 +295,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
42
295
|
- Routed `/god-observe` through the `ship` verb boundary based on Phase 2 host
|
|
43
296
|
proof evidence.
|
|
44
297
|
- Updated public docs, profile tests, command-family tests, and Phase 5
|
|
45
|
-
surface evidence for the
|
|
298
|
+
surface evidence for the 120-command surface.
|
|
46
299
|
|
|
47
300
|
### Deprecated
|
|
48
301
|
- Deprecated `/god-locate` in favor of `/god-status --locate`.
|
|
@@ -254,7 +507,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
254
507
|
Proof goal labels resolve through shipped `/god` recipes and routes.
|
|
255
508
|
|
|
256
509
|
### Changed
|
|
257
|
-
- Updated public surface counts to
|
|
510
|
+
- Updated public surface counts to 120 slash commands and 43 intent recipes
|
|
258
511
|
across release notes, reference docs, architecture maps, package metadata,
|
|
259
512
|
and project Pillars.
|
|
260
513
|
- Tightened public front-door recipe matching for starter phrases including
|
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.**
|
|
@@ -30,12 +30,19 @@ Godpowers makes AI coding accountable: every serious run should leave disk
|
|
|
30
30
|
state, artifacts, validation gates, host guarantees, and a next action. Code is
|
|
31
31
|
only one output. The project memory and proof trail matter too.
|
|
32
32
|
|
|
33
|
-
Version 3.0
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
33
|
+
Version 3.11.0 adds the optional one-time `.mythify/` ledger importer (`npx
|
|
34
|
+
godpowers import-ledger`), the final piece of the native fusion of Mythify's
|
|
35
|
+
evidence engine and quarterback into Godpowers. The fusion is now complete end
|
|
36
|
+
to end: the evidence producer, enforced close-on-evidence on the build and
|
|
37
|
+
harden gates, the quarterback entry router, the work report, reflections,
|
|
38
|
+
memory, lessons, outcome loops, the read-only MCP tools, and now a path to bring
|
|
39
|
+
existing Mythify ledgers along. The current 3.x line keeps
|
|
40
|
+
the omitted installer profile on `core`, keeps first-run, demo, and
|
|
41
|
+
surface-control entry points, preserves `--profile=full` for compatibility,
|
|
42
|
+
keeps locate and lifecycle views under `/god-status`, ships the optional
|
|
43
|
+
`@godpowers/mcp` companion package, and verifies docs, package contents, npm
|
|
44
|
+
metadata, GitHub release state, and published install behavior before public
|
|
45
|
+
release.
|
|
39
46
|
|
|
40
47
|
Maintainer hardening continues on the 3.x line with small, audited public
|
|
41
48
|
surface updates when they close real workflow gaps. Historical release details
|
|
@@ -124,6 +131,13 @@ npx godpowers --codex --local --profile=builder
|
|
|
124
131
|
npx godpowers --all --profile=maintainer
|
|
125
132
|
```
|
|
126
133
|
|
|
134
|
+
After install, switch or preview the visible surface without starting over:
|
|
135
|
+
|
|
136
|
+
```bash
|
|
137
|
+
npx godpowers surface --profile=builder --codex --global --dry-run
|
|
138
|
+
npx godpowers surface --profile=builder --codex --global --apply
|
|
139
|
+
```
|
|
140
|
+
|
|
127
141
|
Profiles are `core`, `builder`, `maintainer`, `suite`, and `full`. `core`
|
|
128
142
|
installs the front door, status, verb dispatchers, and `/god-mode`
|
|
129
143
|
compatibility. `full` preserves the complete command surface, while the smaller
|
|
@@ -217,13 +231,13 @@ same thing when you open a new session in a Godpowers project.
|
|
|
217
231
|
If the full command surface feels large, begin with one of these paths and only
|
|
218
232
|
learn the next command when Godpowers recommends it.
|
|
219
233
|
|
|
220
|
-
`/god-help` presents
|
|
221
|
-
|
|
222
|
-
commands remain direct shortcuts.
|
|
234
|
+
`/god-help` presents a short state-aware view by default. `/god-help all`
|
|
235
|
+
shows the complete catalog. Leaf commands remain direct shortcuts.
|
|
223
236
|
|
|
224
237
|
| Goal | Starter path |
|
|
225
238
|
|---|---|
|
|
226
|
-
| Start a product | `/god-init`, `/god-plan`, `/god-build` |
|
|
239
|
+
| Start a product | `/god-first-run`, `/god-init`, `/god-plan`, `/god-build` |
|
|
240
|
+
| Try safely | `/god-demo`, `/god-first-run`, `/god-init` |
|
|
227
241
|
| Add a feature | `/god-reconcile`, `/god-feature`, `/god-sync`, `/god-review` |
|
|
228
242
|
| Fix production | `/god-fix`, `/god-postmortem`, `/god-status` |
|
|
229
243
|
| Audit an existing repo | `/god-preflight`, `/god-archaeology`, `/god-reconstruct`, `/god-audit`, `/god-tech-debt` |
|
|
@@ -253,7 +267,10 @@ runtime that can execute Node:
|
|
|
253
267
|
```bash
|
|
254
268
|
npx godpowers status --project=.
|
|
255
269
|
npx godpowers next --project=.
|
|
270
|
+
npx godpowers demo --project=.
|
|
271
|
+
npx godpowers surface --profile=core --codex --global --dry-run
|
|
256
272
|
npx godpowers status --project=. --brief
|
|
273
|
+
npx godpowers status --project=. --full
|
|
257
274
|
npx godpowers status --project=. --json
|
|
258
275
|
npx godpowers quick-proof --project=.
|
|
259
276
|
npx godpowers state advance --step=prd --status=done --project=.
|
|
@@ -304,14 +321,14 @@ dependency to the main `godpowers` package:
|
|
|
304
321
|
|
|
305
322
|
```bash
|
|
306
323
|
npx godpowers mcp-info --project=.
|
|
307
|
-
npx -y -p godpowers@3.0
|
|
324
|
+
npx -y -p godpowers@3.11.0 -p @godpowers/mcp@3.11.0 godpowers-mcp serve --project=.
|
|
308
325
|
```
|
|
309
326
|
|
|
310
327
|
The companion exposes `status`, `next`, `gate_check`, `lint_artifact`, and
|
|
311
328
|
`trace_requirement`. Host registration is opt-in:
|
|
312
329
|
|
|
313
330
|
```bash
|
|
314
|
-
npx -y -p godpowers@3.0
|
|
331
|
+
npx -y -p godpowers@3.11.0 -p @godpowers/mcp@3.11.0 godpowers-mcp setup --host=codex --project=. --write
|
|
315
332
|
```
|
|
316
333
|
|
|
317
334
|
See [MCP Companion](docs/mcp.md) for package boundaries and setup details.
|
|
@@ -592,7 +609,7 @@ Pi. T3 Code inherits from the underlying agent (Codex / Claude / OpenCode).
|
|
|
592
609
|
- [Quick Proof](docs/quick-proof.md)
|
|
593
610
|
- [First 10 Minute Proof Case Study](docs/case-studies/first-10-minute-proof.md)
|
|
594
611
|
- [Concepts](docs/concepts.md)
|
|
595
|
-
- [Command reference (all
|
|
612
|
+
- [Command reference (all 120 skills + 40 agents)](docs/reference.md)
|
|
596
613
|
- [Feature awareness](docs/feature-awareness.md)
|
|
597
614
|
- [Adoption Canary](docs/adoption-canary.md)
|
|
598
615
|
- [Repository documentation sync](docs/repo-doc-sync.md)
|
package/RELEASE.md
CHANGED
|
@@ -1,53 +1,41 @@
|
|
|
1
|
-
# Godpowers 3.0
|
|
1
|
+
# Godpowers 3.11.0 Release
|
|
2
2
|
|
|
3
|
-
> Status:
|
|
4
|
-
> Date: 2026-06-
|
|
3
|
+
> Status: Prepared
|
|
4
|
+
> Date: 2026-06-15
|
|
5
5
|
|
|
6
|
-
[DECISION] Godpowers 3.0
|
|
7
|
-
[DECISION]
|
|
8
|
-
[DECISION] This release
|
|
9
|
-
[DECISION] This release updates stale README, roadmap, architecture, reference, MCP, release checklist, package metadata, and package version surfaces.
|
|
6
|
+
[DECISION] Godpowers 3.11.0 adds the optional one-time `.mythify/` ledger importer, the final item in the fusion design. With it, the native fusion of Mythify's evidence engine and quarterback into Godpowers (Phases 0-3 plus the optional importer) is complete.
|
|
7
|
+
[DECISION] The importer is optional, one-time, and additive: it appends imported records to the Godpowers ledger and does not roll up into `state.json` or emit gate events. No existing command behavior changes.
|
|
8
|
+
[DECISION] This release keeps `core` as the omitted installer profile, keeps `--profile=full` as the complete compatibility surface, and keeps the 3.1.0-3.10.0 evidence, close-gate, quarterback, work-report, reflections, memory, lessons, outcome, and MCP surface.
|
|
10
9
|
|
|
11
10
|
## What's in this release
|
|
12
11
|
|
|
13
|
-
- [DECISION]
|
|
14
|
-
- [DECISION]
|
|
15
|
-
- [DECISION]
|
|
16
|
-
- [DECISION]
|
|
17
|
-
- [DECISION] Five thin verb dispatch commands remain shipped: `/god-plan`, `/god-fix`, `/god-ship`, `/god-capture`, and `/god-extend`.
|
|
18
|
-
- [DECISION] Five read-only MCP tools remain available in `@godpowers/mcp`: `status`, `next`, `gate_check`, `lint_artifact`, and `trace_requirement`.
|
|
12
|
+
- [DECISION] New `lib/evidence-import.js` and `npx godpowers import-ledger [--from <path>]`.
|
|
13
|
+
- [DECISION] It copies an existing Mythify `.mythify/` ledger into `.godpowers/ledger/`: verifications (rebinding plan/step_id/step_title/step_status to arc/substep/substep_status), reflections, memory (merged by key), lessons (lessons/*.json to lessons.jsonl), and outcomes (goal.json + iterations.jsonl per slug).
|
|
14
|
+
- [DECISION] Records are appended; the import does not roll up into `state.json` or emit gate events.
|
|
15
|
+
- [DECISION] 120 slash commands, 40 specialist agents, 13 executable workflows, 43 intent recipes, and the 3.1.0-3.10.0 evidence, close-gate, quarterback, work-report, reflections, memory, lessons, outcome, and eight-tool MCP surface remain available.
|
|
19
16
|
|
|
20
17
|
## Changes
|
|
21
18
|
|
|
22
|
-
- [DECISION] `package.json`, `package-lock.json`, and `packages/mcp/package.json` now publish the 3.0
|
|
23
|
-
- [DECISION] README
|
|
24
|
-
- [DECISION] `docs/ROADMAP.md` now reports the 3.x public adoption window and the v3.0.1 current surface.
|
|
25
|
-
- [DECISION] `docs/RELEASE-CHECKLIST.md` now describes `npm run lint` as a separate static release-sensitive gate instead of claiming it runs inside `npm run release:check`.
|
|
26
|
-
- [DECISION] Architecture extension compatibility examples now match the shipped first-party pack range `>=2.0.0 <4.0.0`.
|
|
27
|
-
- [DECISION] MCP setup examples now pin `godpowers@3.0.1` and `@godpowers/mcp@3.0.1`.
|
|
28
|
-
- [DECISION] The quick proof regression test now guards adoption canary and release verification documentation links.
|
|
19
|
+
- [DECISION] `package.json`, `package-lock.json`, and `packages/mcp/package.json` now publish the 3.11.0 minor version.
|
|
20
|
+
- [DECISION] CHANGELOG, RELEASE notes, README, roadmap, reference, architecture, and the SECURITY supported-version series now describe the 3.11.0 importer and the completed fusion.
|
|
29
21
|
|
|
30
22
|
## Validation
|
|
31
23
|
|
|
32
|
-
- [DECISION] `npm run test:quick-proof` passed with 22 tests.
|
|
33
24
|
- [DECISION] `npm run lint` passed with 29 static checks.
|
|
34
|
-
- [DECISION] `
|
|
25
|
+
- [DECISION] `node scripts/test-evidence-import.js` passed with 4 importer tests, including the plan/step to arc/substep rebind.
|
|
26
|
+
- [DECISION] `node scripts/test-cli-dispatch.js` passed with 48 CLI dispatch tests, including the new `import-ledger` tests.
|
|
27
|
+
- [DECISION] `npm run release:check` passed `coverage:lib` above the 90 percent line floor for `lib/**/*.js` (evidence-import.js at 97 percent lines).
|
|
35
28
|
- [DECISION] `npm run release:check` passed `npm audit --omit=dev` with 0 vulnerabilities.
|
|
36
|
-
- [DECISION] `npm run release:check` passed public surface docs for version 3.0
|
|
37
|
-
- [DECISION] `npm run release:check` passed root package contents
|
|
38
|
-
- [DECISION] `npm run release:check` passed `@godpowers/mcp` package contents with 8 files.
|
|
39
|
-
- [DECISION] `npm pack --pack-destination /tmp/godpowers-release-3.0.1` produced `godpowers-3.0.1.tgz` with 548 files.
|
|
40
|
-
- [DECISION] `npm pack --workspace @godpowers/mcp --pack-destination /tmp/godpowers-release-3.0.1` produced `godpowers-mcp-3.0.1.tgz` with 8 files.
|
|
29
|
+
- [DECISION] `npm run release:check` passed public surface docs for version 3.11.0 with 120 skills, 40 agents, 13 workflows, and 43 recipes.
|
|
30
|
+
- [DECISION] `npm run release:check` passed root and `@godpowers/mcp` package contents.
|
|
41
31
|
|
|
42
32
|
## Upgrade
|
|
43
33
|
|
|
44
|
-
- [DECISION] Use `npm install -g godpowers@3.0
|
|
45
|
-
- [DECISION]
|
|
46
|
-
- [DECISION] Use `npx godpowers --profile=core` or omit `--profile` for the contracted default surface.
|
|
47
|
-
- [DECISION] Use optional MCP package install `npm install -g godpowers @godpowers/mcp` when the host can register MCP servers.
|
|
48
|
-
- [DECISION] Re-run `/god-context` in each project to refresh installed runtime metadata.
|
|
34
|
+
- [DECISION] Use `npm install -g godpowers@3.11.0` or `npx godpowers@3.11.0`.
|
|
35
|
+
- [DECISION] No migration is required. The importer is optional and additive; no other behavior changed.
|
|
49
36
|
|
|
50
37
|
## Notes
|
|
51
38
|
|
|
52
|
-
- [DECISION] The publish targets are npm `godpowers@3.0
|
|
39
|
+
- [DECISION] The publish targets are npm `godpowers@3.11.0`, npm `@godpowers/mcp@3.11.0`, and GitHub release `https://github.com/aihxp/godpowers/releases/tag/v3.11.0`.
|
|
53
40
|
- [DECISION] The tag-triggered GitHub publish workflow remains the preferred npm path because it publishes with provenance.
|
|
41
|
+
- [DECISION] This is the final planned release of the fusion design. Every phase (0-3) and the optional importer are implemented and shipped to main across 3.1.0-3.11.0.
|