godpowers 1.6.3 → 1.6.4
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 +29 -0
- package/README.md +5 -5
- package/RELEASE.md +21 -17
- package/agents/god-orchestrator.md +13 -2
- package/lib/router.js +32 -0
- package/package.json +1 -1
- package/routing/god-harden.yaml +3 -0
- package/routing/god-launch.yaml +3 -0
- package/routing/god-mode.yaml +3 -0
- package/routing/god-observe.yaml +3 -0
- package/skills/god-doctor.md +1 -1
- package/skills/god-mode.md +12 -0
- package/skills/god-next.md +5 -0
- package/skills/god-version.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,35 @@ 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.4] - 2026-05-16
|
|
9
|
+
|
|
10
|
+
Release gate propagation patch. Keeps the 1.6 command surface stable while
|
|
11
|
+
making the safe sync and Critical harden gates apply to direct commands,
|
|
12
|
+
`/god-mode`, and `/god-mode --yolo`.
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- Added executable router support for `no-critical-findings`.
|
|
16
|
+
- Added safe-sync prerequisites to `/god-observe`, `/god-harden`,
|
|
17
|
+
`/god-launch`, and `/god-mode`.
|
|
18
|
+
- Added regression tests proving safe sync blocks direct Tier 3 commands and
|
|
19
|
+
`/god-mode`.
|
|
20
|
+
- Added regression tests proving `/god-launch` blocks unresolved Critical
|
|
21
|
+
harden findings and allows passed harden gates.
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
- `god-orchestrator` now explicitly evaluates router prerequisites before
|
|
25
|
+
command dispatch instead of relying only on structural tier order.
|
|
26
|
+
- `/god-mode --yolo` now documents safe sync and unresolved Critical harden
|
|
27
|
+
findings as release-truth gates that cannot be bypassed.
|
|
28
|
+
- Generated routing metadata now preserves per-prerequisite auto-complete
|
|
29
|
+
commands so future generated Tier 3 routes keep the safe sync gate.
|
|
30
|
+
|
|
31
|
+
### Guardrails
|
|
32
|
+
- This patch does not add slash commands, agents, workflows, recipes, schemas,
|
|
33
|
+
or public artifact formats.
|
|
34
|
+
- `--yolo` can still auto-pick defaults, but it cannot auto-accept unresolved
|
|
35
|
+
release truth blockers.
|
|
36
|
+
|
|
8
37
|
## [1.6.3] - 2026-05-16
|
|
9
38
|
|
|
10
39
|
Safe sync routing patch. Keeps the 1.6 command surface stable while making
|
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,10 +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
|
-
`/god-
|
|
18
|
-
|
|
15
|
+
Version 1.6.4 hardens Godpowers routing around release truth: safe-sync
|
|
16
|
+
blockers and unresolved Critical harden findings now gate direct Tier 3
|
|
17
|
+
commands, `/god-mode`, and `/god-mode --yolo`, while Codex installs keep
|
|
18
|
+
per-agent TOML metadata for all 39 specialist agents.
|
|
19
19
|
|
|
20
20
|
It fuses four disciplines into one unified workflow:
|
|
21
21
|
|
package/RELEASE.md
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
# Godpowers 1.6.
|
|
1
|
+
# Godpowers 1.6.4 Release
|
|
2
2
|
|
|
3
3
|
Date: 2026-05-16
|
|
4
4
|
|
|
5
|
-
Godpowers 1.6.
|
|
6
|
-
The goal of this patch is to make
|
|
7
|
-
|
|
5
|
+
Godpowers 1.6.4 hardens release-truth routing around the stable 1.6 surface.
|
|
6
|
+
The goal of this patch is to make safe sync and unresolved Critical harden
|
|
7
|
+
findings block direct Tier 3 commands, `/god-mode`, and `/god-mode --yolo`,
|
|
8
|
+
without changing the public command surface.
|
|
8
9
|
|
|
9
10
|
## What is stable
|
|
10
11
|
|
|
@@ -14,7 +15,8 @@ sync blockers before Tier 3 work, without changing the public command surface.
|
|
|
14
15
|
- 36 intent recipes
|
|
15
16
|
- 15-runtime installer
|
|
16
17
|
- Codex installs with 39 generated `god-*.toml` agent metadata files
|
|
17
|
-
- Safe-sync routing before deploy, observe, harden, or
|
|
18
|
+
- Safe-sync routing before deploy, observe, harden, launch, or god-mode work
|
|
19
|
+
- Critical harden finding gate before launch
|
|
18
20
|
- Native Pillars project context through `AGENTS.md` and `agents/*.md`
|
|
19
21
|
- `.godpowers/` workflow state and artifact layout
|
|
20
22
|
- Core schemas: intent, state, events, workflow, routing, recipes, extension
|
|
@@ -27,18 +29,20 @@ sync blockers before Tier 3 work, without changing the public command surface.
|
|
|
27
29
|
|
|
28
30
|
- `/god-next` detects `.godpowers/sync/SAFE-SYNC-PLAN.md` and routes to
|
|
29
31
|
`/god-reconcile Release Truth And Safe Sync` before `/god-deploy`.
|
|
30
|
-
- `/god-
|
|
31
|
-
|
|
32
|
-
- `/god-
|
|
33
|
-
|
|
34
|
-
-
|
|
35
|
-
|
|
32
|
+
- Direct `/god-observe`, `/god-harden`, `/god-launch`, and `/god-mode`
|
|
33
|
+
invocations also require `safe-sync-clear`.
|
|
34
|
+
- `/god-launch` now executes the `no-critical-findings` prerequisite instead
|
|
35
|
+
of treating it as an unknown pass-through check.
|
|
36
|
+
- `god-orchestrator` now checks router prerequisites before command dispatch,
|
|
37
|
+
including under `--yolo`.
|
|
38
|
+
- Router tests cover unresolved safe sync plans, checkpoint blockers, direct
|
|
39
|
+
Tier 3 gates, `/god-mode`, unresolved Critical findings, and resolved gates.
|
|
36
40
|
|
|
37
|
-
## What 1.6.
|
|
41
|
+
## What 1.6.4 means
|
|
38
42
|
|
|
39
|
-
Godpowers 1.6.
|
|
40
|
-
runtime decision path so project truth can override
|
|
41
|
-
|
|
43
|
+
Godpowers 1.6.4 does not expand the public command surface. It tightens the
|
|
44
|
+
runtime decision path so project truth can override structural tier order for
|
|
45
|
+
safe sync and harden Critical gates.
|
|
42
46
|
|
|
43
47
|
The domain glossary remains preparation context. PRD, ARCH, ROADMAP, STACK,
|
|
44
48
|
docs, and Pillars files still carry durable decisions for their own domains.
|
|
@@ -48,8 +52,8 @@ docs, and Pillars files still carry durable decisions for their own domains.
|
|
|
48
52
|
During the 1.x stability window, do not add broad new command families, change
|
|
49
53
|
schema formats, or rename public artifacts without evidence from real use.
|
|
50
54
|
|
|
51
|
-
The `v1.6.
|
|
52
|
-
`godpowers@1.6.
|
|
55
|
+
The `v1.6.4` git tag points to the release commit that matches the npm
|
|
56
|
+
`godpowers@1.6.4` package. Public publishes should prefer the tag-triggered
|
|
53
57
|
GitHub workflow so npm provenance, git history, and release notes stay aligned.
|
|
54
58
|
|
|
55
59
|
Allowed changes:
|
|
@@ -223,6 +223,14 @@ When deciding what to spawn next, query the routing definition:
|
|
|
223
223
|
- `standards.have-nots` -> which have-nots to verify
|
|
224
224
|
- `success-path.next-recommended` -> what to suggest next
|
|
225
225
|
|
|
226
|
+
Before spawning a command, evaluate `lib/router.js checkPrerequisites(command,
|
|
227
|
+
projectRoot)`. Missing prerequisites are authoritative even when the tier
|
|
228
|
+
order suggests the command is structurally next. If `safe-sync-clear` fails,
|
|
229
|
+
route to `/god-reconcile Release Truth And Safe Sync` before deploy, observe,
|
|
230
|
+
harden, launch, broad migration, or resume work. If `no-critical-findings`
|
|
231
|
+
fails, launch remains blocked until harden is fixed and re-verified or risk is
|
|
232
|
+
explicitly accepted in writing.
|
|
233
|
+
|
|
226
234
|
Between every tier, run god-standards-check on the produced artifact (if
|
|
227
235
|
the routing config has a `standards` section). Standards check uses fresh
|
|
228
236
|
context, independent of the producing agent, so it catches drift the
|
|
@@ -646,11 +654,14 @@ Auto-resolve all pause categories EXCEPT:
|
|
|
646
654
|
|
|
647
655
|
**Impossible preflight routing contradictions pause, even with --yolo.**
|
|
648
656
|
|
|
657
|
+
**Unresolved safe sync blockers pause or route to reconcile, even with --yolo.**
|
|
658
|
+
|
|
649
659
|
Rationale: shipping with a known Critical vulnerability is a category of risk
|
|
650
660
|
that should never be auto-accepted. A preflight contradiction means the repo
|
|
651
661
|
evidence does not support any safe next route. If god-harden-auditor returns
|
|
652
|
-
Critical findings, or preflight cannot choose
|
|
653
|
-
routes from evidence, --yolo does NOT skip. Pause
|
|
662
|
+
Critical findings, unresolved safe sync blockers, or preflight cannot choose
|
|
663
|
+
between mutually exclusive routes from evidence, --yolo does NOT skip. Pause
|
|
664
|
+
for human resolution when no safe automatic reconcile route exists.
|
|
654
665
|
|
|
655
666
|
These are the only --yolo carve-outs. All other pauses are auto-resolved with
|
|
656
667
|
the agent's documented default, and all repairable mechanical failures are
|
package/lib/router.js
CHANGED
|
@@ -19,6 +19,7 @@ const SAFE_SYNC_DONE_FILES = [
|
|
|
19
19
|
'.godpowers/sync/SAFE-SYNC-DONE.md',
|
|
20
20
|
'.godpowers/sync/SAFE-SYNC-RESOLVED.md'
|
|
21
21
|
];
|
|
22
|
+
const HARDEN_FINDINGS = '.godpowers/harden/FINDINGS.md';
|
|
22
23
|
|
|
23
24
|
let _cache = null;
|
|
24
25
|
|
|
@@ -116,6 +117,10 @@ function evaluateCheck(check, projectRoot) {
|
|
|
116
117
|
return detectSafeSyncBlocker(projectRoot) === null;
|
|
117
118
|
}
|
|
118
119
|
|
|
120
|
+
if (check === 'no-critical-findings') {
|
|
121
|
+
return hasNoCriticalFindings(projectRoot);
|
|
122
|
+
}
|
|
123
|
+
|
|
119
124
|
// mode-A-greenfield: pass-through hint, treat as satisfiable
|
|
120
125
|
if (check.includes('greenfield') || check.includes('mode-A')) {
|
|
121
126
|
return !fs.existsSync(path.join(projectRoot, '.godpowers'));
|
|
@@ -303,6 +308,32 @@ function safeSyncSuggestion(reason, evidence) {
|
|
|
303
308
|
};
|
|
304
309
|
}
|
|
305
310
|
|
|
311
|
+
function hasNoCriticalFindings(projectRoot) {
|
|
312
|
+
const findingsPath = path.join(projectRoot, HARDEN_FINDINGS);
|
|
313
|
+
if (!fs.existsSync(findingsPath)) return false;
|
|
314
|
+
|
|
315
|
+
const findings = fs.readFileSync(findingsPath, 'utf8');
|
|
316
|
+
if (/\*\*Launch gate\*\*:\s*PASSED/i.test(findings) || /Launch gate:\s*PASSED/i.test(findings)) {
|
|
317
|
+
return true;
|
|
318
|
+
}
|
|
319
|
+
if (/\*\*Launch gate\*\*:\s*BLOCKED/i.test(findings) || /Launch gate:\s*BLOCKED/i.test(findings)) {
|
|
320
|
+
return false;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
const criticalCount = findings.match(/\|\s*Critical\s*\|\s*(\d+)\s*\|/i);
|
|
324
|
+
if (criticalCount) {
|
|
325
|
+
return Number(criticalCount[1]) === 0;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
const criticalSections = findings.match(/^###\s+\[CRITICAL-[^\n]+(?:\n(?!###\s+\[).*)*/gim) || [];
|
|
329
|
+
if (criticalSections.length === 0) return true;
|
|
330
|
+
|
|
331
|
+
return criticalSections.every(section => (
|
|
332
|
+
/\*\*Status\*\*:\s*(Fixed|Accepted-Risk)/i.test(section)
|
|
333
|
+
|| /Status:\s*(Fixed|Accepted-Risk)/i.test(section)
|
|
334
|
+
));
|
|
335
|
+
}
|
|
336
|
+
|
|
306
337
|
/**
|
|
307
338
|
* Clear cached routing (for tests).
|
|
308
339
|
*/
|
|
@@ -321,5 +352,6 @@ module.exports = {
|
|
|
321
352
|
suggestNext,
|
|
322
353
|
evaluateCheck,
|
|
323
354
|
detectSafeSyncBlocker,
|
|
355
|
+
hasNoCriticalFindings,
|
|
324
356
|
clearCache
|
|
325
357
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "godpowers",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.4",
|
|
4
4
|
"description": "AI-powered development system: 106 slash commands and 39 specialist agents that take a project from raw idea to hardened production. Runs inside Claude Code, Codex, Cursor, Windsurf, Gemini, and 10+ other AI coding tools.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"godpowers": "./bin/install.js"
|
package/routing/god-harden.yaml
CHANGED
|
@@ -10,6 +10,9 @@ prerequisites:
|
|
|
10
10
|
- check: state:tier-2.build.status == done
|
|
11
11
|
auto-complete: /god-build
|
|
12
12
|
human-required: true
|
|
13
|
+
- check: safe-sync-clear
|
|
14
|
+
auto-complete: /god-reconcile Release Truth And Safe Sync
|
|
15
|
+
human-required: true
|
|
13
16
|
|
|
14
17
|
execution:
|
|
15
18
|
spawns: [god-harden-auditor]
|
package/routing/god-launch.yaml
CHANGED
|
@@ -10,6 +10,9 @@ prerequisites:
|
|
|
10
10
|
- check: state:tier-3.harden.status == done
|
|
11
11
|
auto-complete: /god-harden
|
|
12
12
|
human-required: true
|
|
13
|
+
- check: safe-sync-clear
|
|
14
|
+
auto-complete: /god-reconcile Release Truth And Safe Sync
|
|
15
|
+
human-required: true
|
|
13
16
|
- check: no-critical-findings
|
|
14
17
|
auto-complete: /god-harden
|
|
15
18
|
human-required: true
|
package/routing/god-mode.yaml
CHANGED
|
@@ -10,6 +10,9 @@ prerequisites:
|
|
|
10
10
|
- check: file:.godpowers/PROGRESS.md OR mode-A-greenfield
|
|
11
11
|
auto-complete: /god-init
|
|
12
12
|
human-required: true
|
|
13
|
+
- check: safe-sync-clear
|
|
14
|
+
auto-complete: /god-reconcile Release Truth And Safe Sync
|
|
15
|
+
human-required: true
|
|
13
16
|
|
|
14
17
|
execution:
|
|
15
18
|
spawns: [god-orchestrator]
|
package/routing/god-observe.yaml
CHANGED
|
@@ -10,6 +10,9 @@ prerequisites:
|
|
|
10
10
|
- check: state:tier-3.deploy.status == done
|
|
11
11
|
auto-complete: /god-deploy
|
|
12
12
|
human-required: true
|
|
13
|
+
- check: safe-sync-clear
|
|
14
|
+
auto-complete: /god-reconcile Release Truth And Safe Sync
|
|
15
|
+
human-required: true
|
|
13
16
|
|
|
14
17
|
execution:
|
|
15
18
|
spawns: [god-observability-engineer]
|
package/skills/god-doctor.md
CHANGED
|
@@ -48,7 +48,7 @@ GODPOWERS DOCTOR
|
|
|
48
48
|
Install: claude (~/.claude/)
|
|
49
49
|
[OK] 106 skills installed
|
|
50
50
|
[OK] 39 agents installed
|
|
51
|
-
[OK] VERSION matches (1.6.
|
|
51
|
+
[OK] VERSION matches (1.6.4)
|
|
52
52
|
[WARN] routing/god-doctor.yaml exists but skill file did not until now
|
|
53
53
|
|
|
54
54
|
Project: /Users/.../my-project/.godpowers/
|
package/skills/god-mode.md
CHANGED
|
@@ -109,6 +109,14 @@ You are receiving a /god-mode invocation. Your job is to spawn the
|
|
|
109
109
|
- Instruction that brownfield and bluefield arcs run `/god-preflight`
|
|
110
110
|
automatically when `.godpowers/preflight/PREFLIGHT.md` is absent.
|
|
111
111
|
Greenfield arcs skip preflight unless the user explicitly requests it.
|
|
112
|
+
- Instruction to run routing prerequisites through `lib/router.js`
|
|
113
|
+
`checkPrerequisites` before every direct command dispatch. If
|
|
114
|
+
`safe-sync-clear` fails, run
|
|
115
|
+
`/god-reconcile Release Truth And Safe Sync` before deploy, observe,
|
|
116
|
+
harden, launch, broad migration, or resume work.
|
|
117
|
+
- Instruction that `--yolo` cannot bypass safe sync blockers or unresolved
|
|
118
|
+
Critical harden findings. These are release-truth gates, not preference
|
|
119
|
+
pauses.
|
|
112
120
|
|
|
113
121
|
6. Keep the spawn payload private. Do not echo or summarize raw Task input,
|
|
114
122
|
"Hard instructions", hidden orchestration rules, agent prompts, file
|
|
@@ -177,6 +185,10 @@ and logs decisions to `.godpowers/YOLO-DECISIONS.md`. Pillar sync proposals
|
|
|
177
185
|
generated from durable Godpowers artifact changes are auto-applied in this
|
|
178
186
|
mode and logged as YOLO decisions.
|
|
179
187
|
|
|
188
|
+
`--yolo` does not skip release-truth gates. If safe sync is unresolved, route
|
|
189
|
+
to `/god-reconcile Release Truth And Safe Sync`. If harden has unresolved
|
|
190
|
+
Critical findings, pause even under `--yolo`.
|
|
191
|
+
|
|
180
192
|
For brownfield and bluefield, `--yolo` still runs `/god-preflight` first when
|
|
181
193
|
`.godpowers/preflight/PREFLIGHT.md` is absent. The orchestrator then follows
|
|
182
194
|
the preflight report's safest recommended route automatically, logging that
|
package/skills/god-next.md
CHANGED
|
@@ -242,6 +242,11 @@ states that safe sync is a blocking red gate, suggest
|
|
|
242
242
|
The blocker is cleared when `.godpowers/sync/SAFE-SYNC-DONE.md` or
|
|
243
243
|
`.godpowers/sync/SAFE-SYNC-RESOLVED.md` exists.
|
|
244
244
|
|
|
245
|
+
### Critical harden findings block launch
|
|
246
|
+
If `.godpowers/harden/FINDINGS.md` says the launch gate is blocked, or lists
|
|
247
|
+
unresolved Critical findings, `/god-launch` prerequisites fail through
|
|
248
|
+
`no-critical-findings`. This applies in default mode and `--yolo`.
|
|
249
|
+
|
|
245
250
|
### Steady state with multiple workflow options
|
|
246
251
|
If lifecycle-phase = steady-state-active, route by user intent if provided
|
|
247
252
|
(use the User Intent Map below).
|
package/skills/god-version.md
CHANGED
|
@@ -14,7 +14,7 @@ Print version and a short capability summary.
|
|
|
14
14
|
## Output
|
|
15
15
|
|
|
16
16
|
```
|
|
17
|
-
Godpowers v1.6.
|
|
17
|
+
Godpowers v1.6.4
|
|
18
18
|
Install: /Users/.../.claude/ (matches package.json)
|
|
19
19
|
Surface: 106 skills, 39 agents, 13 workflows, 36 recipes
|
|
20
20
|
Schema: intent.v1, state.v1, events.v1, workflow.v1, routing.v1, recipe.v1
|