godpowers 2.4.2 → 2.4.3
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 +30 -0
- package/README.md +9 -6
- package/RELEASE.md +33 -33
- package/agents/god-orchestrator.md +31 -1255
- package/bin/install.js +22 -19
- package/lib/command-families.js +10 -2
- package/package.json +3 -2
- package/references/orchestration/GOD-NEXT-RUNBOOK.md +32 -0
- package/references/orchestration/GOD-ORCHESTRATOR-RUNBOOK.md +1259 -0
- package/references/orchestration/README.md +6 -0
- package/references/shared/DASHBOARD-CONTRACT.md +93 -0
- package/references/shared/LOCKING.md +15 -0
- package/references/shared/README.md +2 -0
- package/routing/god-roadmap-check.yaml +1 -1
- package/skills/god-arch.md +1 -12
- package/skills/god-build.md +1 -12
- package/skills/god-deploy.md +1 -12
- package/skills/god-design.md +1 -12
- package/skills/god-feature.md +1 -12
- package/skills/god-harden.md +1 -12
- package/skills/god-hotfix.md +1 -12
- package/skills/god-launch.md +1 -12
- package/skills/god-link.md +1 -12
- package/skills/god-migrate.md +1 -3
- package/skills/god-next.md +34 -410
- package/skills/god-observe.md +1 -12
- package/skills/god-prd.md +1 -12
- package/skills/god-redo.md +1 -12
- package/skills/god-refactor.md +1 -12
- package/skills/god-repair.md +1 -12
- package/skills/god-repo.md +1 -12
- package/skills/god-restore.md +1 -12
- package/skills/god-roadmap-check.md +5 -0
- package/skills/god-roadmap.md +1 -12
- package/skills/god-rollback.md +1 -12
- package/skills/god-scan.md +1 -12
- package/skills/god-skip.md +1 -12
- package/skills/god-stack.md +1 -12
- package/skills/god-status.md +27 -204
- package/skills/god-story-build.md +1 -12
- package/skills/god-story-close.md +1 -12
- package/skills/god-story.md +1 -12
- package/skills/god-sync.md +1 -12
- package/skills/god-undo.md +1 -12
- package/skills/god-update-deps.md +1 -12
- package/skills/god-upgrade.md +1 -12
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,36 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.4.3] - 2026-06-09
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- Added three external CLI adoption canary case studies for sindresorhus/is,
|
|
14
|
+
expressjs/cors, and tinyhttp/tinyhttp with commit hashes, elapsed time,
|
|
15
|
+
zero-dollar local CLI cost, pause counts, and explicit host-run gaps.
|
|
16
|
+
- Added a shared Godpowers Dashboard contract and shared locking contract under
|
|
17
|
+
`references/shared/`.
|
|
18
|
+
- Added detailed runbook references for `god-orchestrator` and `/god-next`.
|
|
19
|
+
- Added CLI dispatch tests for status, next, quick-proof, automation, dogfood,
|
|
20
|
+
extension scaffold, and unknown-command branches.
|
|
21
|
+
- Added `npm run coverage:lib`, enforcing a 90 percent line coverage floor for
|
|
22
|
+
`lib/**/*.js` through c8.
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
- Slimmed `agents/god-orchestrator.md`, `skills/god-next.md`, and
|
|
26
|
+
`skills/god-status.md` into concise dispatch contracts that delegate
|
|
27
|
+
long-form operational detail to references.
|
|
28
|
+
- Replaced repeated skill locking boilerplate with one-line pointers to the
|
|
29
|
+
shared locking reference.
|
|
30
|
+
- Updated `npm run release:check` to run the full suite under the lib coverage
|
|
31
|
+
floor before audit and package checks.
|
|
32
|
+
- Updated package verification to pack into a temporary directory and clean the
|
|
33
|
+
generated tarball automatically.
|
|
34
|
+
- Marked `/god-roadmap-check` deprecated, removed it from the command-family
|
|
35
|
+
presentation, and locked non-full install profiles against installing it.
|
|
36
|
+
|
|
37
|
+
### Fixed
|
|
38
|
+
- Removed ignored root tarball and `.DS_Store` clutter before release.
|
|
39
|
+
|
|
10
40
|
## [2.4.2] - 2026-06-09
|
|
11
41
|
|
|
12
42
|
### Added
|
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.**
|
|
@@ -16,16 +16,19 @@ Want the short proof first? Start with [Quick Proof](docs/quick-proof.md) to
|
|
|
16
16
|
run `npx godpowers quick-proof --project=. --brief`, see outcome metrics, pick
|
|
17
17
|
a starter command set, and understand runtime expectations before reading the
|
|
18
18
|
full reference. The [First 10 Minute Proof Case Study](docs/case-studies/first-10-minute-proof.md)
|
|
19
|
-
shows the same evidence as a before-and-after adoption story.
|
|
19
|
+
shows the same evidence as a before-and-after adoption story. External
|
|
20
|
+
CLI-verifiable canaries now cover [sindresorhus/is](docs/case-studies/sindresorhus-is-adoption-canary.md),
|
|
21
|
+
[expressjs/cors](docs/case-studies/expressjs-cors-adoption-canary.md), and
|
|
22
|
+
[tinyhttp/tinyhttp](docs/case-studies/tinyhttp-adoption-canary.md), with host
|
|
23
|
+
slash-command gaps called out rather than hidden.
|
|
20
24
|
|
|
21
25
|
Godpowers makes AI coding accountable: every serious run should leave disk
|
|
22
26
|
state, artifacts, validation gates, host guarantees, and a next action. Code is
|
|
23
27
|
only one output. The project memory and proof trail matter too.
|
|
24
28
|
|
|
25
|
-
Version 2.4.
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
clean package hygiene before publish.
|
|
29
|
+
Version 2.4.3 keeps the 2.4 command-family UX and adds external CLI canary
|
|
30
|
+
evidence, prompt-size guardrails, legacy command quarantine, lib coverage
|
|
31
|
+
gating, and temp-directory package verification before publish.
|
|
29
32
|
|
|
30
33
|
Maintainer hardening continues on the 2.x line with small, audited public
|
|
31
34
|
surface updates when they close real workflow gaps. The 2.1.0 patch closes a command-injection vector in the
|
package/RELEASE.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
# Godpowers 2.4.
|
|
1
|
+
# Godpowers 2.4.3 Release
|
|
2
2
|
|
|
3
3
|
> Status: Ready for package verification
|
|
4
4
|
> Date: 2026-06-09
|
|
5
5
|
|
|
6
|
-
Godpowers 2.4.
|
|
7
|
-
2.4 command-family UX intact while
|
|
8
|
-
|
|
9
|
-
publish.
|
|
6
|
+
Godpowers 2.4.3 is a review-followup release for the 2.4 line. It keeps the
|
|
7
|
+
2.4 command-family UX intact while adding external CLI proof, prompt-size
|
|
8
|
+
guardrails, legacy surface quarantine, lib coverage gating, and clean package
|
|
9
|
+
verification before publish.
|
|
10
10
|
|
|
11
11
|
## What's in this release
|
|
12
12
|
|
|
@@ -17,42 +17,42 @@ publish.
|
|
|
17
17
|
|
|
18
18
|
## Highlights
|
|
19
19
|
|
|
20
|
-
-
|
|
21
|
-
|
|
22
|
-
-
|
|
23
|
-
|
|
24
|
-
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
- `npm run coverage`
|
|
31
|
-
|
|
32
|
-
|
|
20
|
+
- Three external CLI adoption canary case studies now cover sindresorhus/is,
|
|
21
|
+
expressjs/cors, and tinyhttp/tinyhttp, including commit hashes, elapsed time,
|
|
22
|
+
zero-dollar local CLI cost, pause counts, and explicit host-run gaps.
|
|
23
|
+
- `agents/god-orchestrator.md`, `skills/god-next.md`, and
|
|
24
|
+
`skills/god-status.md` are now concise dispatch contracts that delegate
|
|
25
|
+
detailed runbook content to `references/`.
|
|
26
|
+
- Repeated skill locking boilerplate now points to
|
|
27
|
+
`references/shared/LOCKING.md`.
|
|
28
|
+
- `/god-roadmap-check` is deprecated, kept for full-profile compatibility, and
|
|
29
|
+
excluded from non-full installer profiles by regression test.
|
|
30
|
+
- `npm run coverage:lib` enforces a 90 percent line coverage floor for
|
|
31
|
+
`lib/**/*.js`.
|
|
32
|
+
- `npm run release:check` runs the full suite under the lib coverage floor
|
|
33
|
+
before audit and package verification.
|
|
34
|
+
- Package verification now creates the npm tarball in a temporary directory and
|
|
35
|
+
removes it automatically.
|
|
33
36
|
|
|
34
37
|
## Validation
|
|
35
38
|
|
|
36
|
-
- `node scripts/
|
|
37
|
-
- `node scripts/test-
|
|
38
|
-
- `node scripts/test-
|
|
39
|
-
- `node scripts/
|
|
40
|
-
- `node scripts/
|
|
41
|
-
- `node scripts/
|
|
39
|
+
- `node scripts/static-check.js` green
|
|
40
|
+
- `node scripts/test-cli-dispatch.js` green
|
|
41
|
+
- `node scripts/test-installer-profiles.js` green
|
|
42
|
+
- `node scripts/run-adoption-canary.js https://github.com/sindresorhus/is.git --output=docs/case-studies/sindresorhus-is-adoption-canary.md` green
|
|
43
|
+
- `node scripts/run-adoption-canary.js https://github.com/expressjs/cors.git --output=docs/case-studies/expressjs-cors-adoption-canary.md` green
|
|
44
|
+
- `node scripts/run-adoption-canary.js https://github.com/tinyhttp/tinyhttp.git --output=docs/case-studies/tinyhttp-adoption-canary.md` green
|
|
42
45
|
- `npm run release:check` required before publish
|
|
43
|
-
- `npm pack` creates a local `godpowers-2.4.2.tgz` tarball for package
|
|
44
|
-
inspection
|
|
45
46
|
|
|
46
47
|
## Upgrade
|
|
47
48
|
|
|
48
|
-
- `npm install -g godpowers@2.4.
|
|
49
|
+
- `npm install -g godpowers@2.4.3` or `npx godpowers@2.4.3`
|
|
49
50
|
- Re-run `/god-context` in each project to refresh installed runtime metadata
|
|
50
|
-
- No breaking changes for valid `.godpowers/` state.
|
|
51
|
-
manifests that were previously partially accepted now fail with parse errors.
|
|
51
|
+
- No breaking changes for valid `.godpowers/` state.
|
|
52
52
|
|
|
53
53
|
## Notes
|
|
54
54
|
|
|
55
|
-
- GitHub release creation for `v2.4.
|
|
56
|
-
- The tag should match the npm package version
|
|
57
|
-
- The `v2.4.
|
|
58
|
-
`godpowers@2.4.
|
|
55
|
+
- GitHub release creation for `v2.4.3`
|
|
56
|
+
- The tag should match the npm package version.
|
|
57
|
+
- The `v2.4.3` tag should point to the release commit that matches the npm
|
|
58
|
+
`godpowers@2.4.3` package.
|