godpowers 1.6.21 → 1.6.23
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/AGENTS.md +6 -0
- package/CHANGELOG.md +75 -0
- package/INSPIRATION.md +6 -0
- package/README.md +25 -9
- package/RELEASE.md +50 -58
- package/SKILL.md +24 -4
- package/agents/god-orchestrator.md +18 -3
- package/agents/god-reconciler.md +52 -5
- package/agents/god-updater.md +84 -2
- package/bin/install.js +81 -1
- package/fixtures/dogfood/extension-authoring/manifest.json +13 -0
- package/fixtures/dogfood/half-migrated-gsd/.planning/PROJECT.md +5 -0
- package/fixtures/dogfood/half-migrated-gsd/.planning/REQUIREMENTS.md +5 -0
- package/fixtures/dogfood/half-migrated-gsd/.planning/ROADMAP.md +5 -0
- package/fixtures/dogfood/half-migrated-gsd/manifest.json +16 -0
- package/fixtures/dogfood/host-degraded/manifest.json +5 -0
- package/fixtures/dogfood/host-full/home/.codex/agents/god-orchestrator.toml +2 -0
- package/fixtures/dogfood/host-full/manifest.json +5 -0
- package/fixtures/dogfood/suite-release-dry-run/.godpowers/suite-config.yaml +9 -0
- package/fixtures/dogfood/suite-release-dry-run/manifest.json +7 -0
- package/fixtures/dogfood/suite-release-dry-run/repo-a/package.json +4 -0
- package/fixtures/dogfood/suite-release-dry-run/repo-b/package.json +7 -0
- package/hooks/pre-tool-use.sh +13 -1
- package/hooks/session-start.sh +12 -0
- package/lib/README.md +3 -0
- package/lib/dashboard.js +30 -1
- package/lib/dogfood-runner.js +193 -0
- package/lib/events.js +6 -0
- package/lib/extension-authoring.js +154 -0
- package/lib/feature-awareness.js +30 -0
- package/lib/have-nots-validator.js +2 -2
- package/lib/host-capabilities.js +125 -0
- package/lib/release-surface-sync.js +6 -0
- package/lib/repo-surface-sync.js +58 -0
- package/lib/suite-state.js +90 -1
- package/lib/workflow-runner.js +4 -0
- package/package.json +5 -4
- package/references/HAVE-NOTS.md +16 -0
- package/references/orchestration/MODE-DETECTION.md +36 -3
- package/references/orchestration/README.md +5 -2
- package/references/planning/ROADMAP-ANTIPATTERNS.md +1 -1
- package/references/shared/ORCHESTRATORS.md +42 -11
- package/references/shared/README.md +4 -4
- package/routing/god-dogfood.yaml +35 -0
- package/schema/events.v1.json +9 -0
- package/schema/intent.v1.yaml.json +5 -1
- package/schema/recipe.v1.json +2 -1
- package/schema/routing.v1.json +20 -0
- package/schema/state.v1.json +51 -0
- package/schema/workflow.v1.json +31 -2
- package/skills/god-doctor.md +1 -1
- package/skills/god-dogfood.md +63 -0
- package/skills/god-mode.md +4 -1
- package/skills/god-reconcile.md +13 -4
- package/skills/god-version.md +2 -2
- package/templates/DOCS-UPDATE-LOG.md +14 -0
- package/templates/IMPORTED-CONTEXT.md +2 -0
- package/templates/INITIAL-FINDINGS.md +5 -0
- package/templates/PROGRESS.md +8 -0
- package/workflows/audit-only.yaml +12 -0
- package/workflows/bluefield-arc.yaml +16 -1
- package/workflows/brownfield-arc.yaml +17 -1
- package/workflows/deps-audit.yaml +13 -0
- package/workflows/docs-arc.yaml +23 -0
- package/workflows/feature-arc.yaml +14 -0
- package/workflows/full-arc.yaml +19 -0
- package/workflows/hotfix-arc.yaml +14 -0
- package/workflows/hygiene.yaml +6 -0
- package/workflows/migration-arc.yaml +15 -0
- package/workflows/postmortem.yaml +13 -0
- package/workflows/refactor-arc.yaml +14 -0
- package/workflows/spike.yaml +11 -0
package/AGENTS.md
CHANGED
|
@@ -15,10 +15,14 @@ projects from raw idea to hardened production.
|
|
|
15
15
|
|
|
16
16
|
- `SKILL.md` is the main entry point, loaded by AI coding tools
|
|
17
17
|
- `skills/` contains individual command skills (one per file)
|
|
18
|
+
- `routing/` contains command routing metadata and intent recipes
|
|
19
|
+
- `workflows/` contains executable workflow YAML
|
|
18
20
|
- `references/` contains per-tier reference material (antipatterns, examples)
|
|
19
21
|
- `bin/` contains the CLI installer and `god` command
|
|
22
|
+
- `lib/` contains executable runtime helpers, sync checks, dogfood, dashboard, and release logic
|
|
20
23
|
- `scripts/` contains validation and testing scripts
|
|
21
24
|
- `templates/` contains artifact templates
|
|
25
|
+
- `fixtures/dogfood/` contains messy-repo release dogfood scenarios
|
|
22
26
|
|
|
23
27
|
## Conventions
|
|
24
28
|
|
|
@@ -27,6 +31,8 @@ projects from raw idea to hardened production.
|
|
|
27
31
|
- Every tier skill documents its have-nots (failure modes)
|
|
28
32
|
- Artifacts are written to `.godpowers/<tier>/` paths
|
|
29
33
|
- State is tracked in `.godpowers/PROGRESS.md`
|
|
34
|
+
- Dashboard state is computed by `lib/dashboard.js`
|
|
35
|
+
- Repo docs, repo surface, route quality, recipe coverage, release surface, host capability, and dogfood checks are executable release gates
|
|
30
36
|
- Disk state is authoritative; conversation memory is not
|
|
31
37
|
|
|
32
38
|
## Quality Rules
|
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,81 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.6.23] - 2026-05-16
|
|
11
|
+
|
|
12
|
+
Full repository audit, release gate hardening, and documentation repair.
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- Added `.planning/2026-05-16-surface-sync-status.md` to record the current
|
|
16
|
+
`.github/workflows`, `.planning`, and `agents` sync status without rewriting
|
|
17
|
+
historical planning evidence.
|
|
18
|
+
- Expanded `god-reconciler` and `god-updater` contracts so repo docs, repo
|
|
19
|
+
surface, runtime feature awareness, source-system sync-back, host capability,
|
|
20
|
+
and dashboard refresh are checked and reported as part of the same loop.
|
|
21
|
+
- Documented the audited source scan across root docs, `.github`, `.godpowers`,
|
|
22
|
+
`.planning`, agents, docs, examples, extensions, fixtures, hooks, lib,
|
|
23
|
+
references, routing, schema, scripts, skills, templates, tests, and workflows.
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
- Release workflows now run `npm run release:check` before publishing the root
|
|
27
|
+
package or first-party extension packs.
|
|
28
|
+
- `prepublishOnly` now runs the full release gate instead of only `npm test`.
|
|
29
|
+
- `/god-reconcile`, `/god-mode`, the orchestrator, agent specs, and roadmap
|
|
30
|
+
now describe the expanded local sync surfaces consistently.
|
|
31
|
+
- Version, badge, roadmap, architecture, user-support, and reference surfaces
|
|
32
|
+
now align to 1.6.23.
|
|
33
|
+
|
|
34
|
+
### Fixed
|
|
35
|
+
- Repaired stale 1.6.19 and 1.6.22 current-version claims in runtime docs.
|
|
36
|
+
- Removed literal forbidden dash and emoji characters from primary source
|
|
37
|
+
files while preserving validator coverage through Unicode escape sequences.
|
|
38
|
+
- Repaired release documentation drift around package contents, route quality,
|
|
39
|
+
recipe coverage, release-surface checks, dogfood, host guarantees, extension
|
|
40
|
+
authoring, and Mode D suite release dry-runs.
|
|
41
|
+
|
|
42
|
+
### Guardrails
|
|
43
|
+
- Primary source scan now covers 639 tracked plus untracked source files and
|
|
44
|
+
verifies zero forbidden dash characters, zero emoji characters, zero invalid
|
|
45
|
+
JSON files, zero CRLF files, zero missing final newlines, and zero zero-byte
|
|
46
|
+
files.
|
|
47
|
+
- `npm run release:check` remains the one-command release gate before commit,
|
|
48
|
+
tag, npm publish, and GitHub release creation.
|
|
49
|
+
|
|
50
|
+
## [1.6.22] - 2026-05-16
|
|
51
|
+
|
|
52
|
+
Dogfooding, host guarantees, extension authoring, and suite release dry-runs.
|
|
53
|
+
|
|
54
|
+
### Added
|
|
55
|
+
- Added `lib/dogfood-runner.js`, `/god-dogfood`, and `npx godpowers dogfood`
|
|
56
|
+
for deterministic messy-repo dogfood scenarios.
|
|
57
|
+
- Added `fixtures/dogfood/` scenarios for half-migrated GSD import,
|
|
58
|
+
degraded and full host guarantees, extension scaffolding, and Mode D suite
|
|
59
|
+
release dry-run planning.
|
|
60
|
+
- Added `lib/host-capabilities.js` and dashboard host guarantee reporting for
|
|
61
|
+
full, degraded, and unknown runtime capability states.
|
|
62
|
+
- Added compact dashboard rendering with `npx godpowers status --brief`.
|
|
63
|
+
- Added `lib/extension-authoring.js` and
|
|
64
|
+
`npx godpowers extension-scaffold --name=@scope/pack --output=.`.
|
|
65
|
+
- Added Mode D suite release dry-run planning through
|
|
66
|
+
`suiteState.planRelease`.
|
|
67
|
+
|
|
68
|
+
### Changed
|
|
69
|
+
- Release-surface sync now requires dogfood, host capability, and extension
|
|
70
|
+
authoring test gates.
|
|
71
|
+
- Repo-surface sync now checks dogfood runner presence, test wiring, and
|
|
72
|
+
required fixture manifests.
|
|
73
|
+
- Package payload checks now include dogfood fixtures and the new runtime
|
|
74
|
+
helpers.
|
|
75
|
+
- README, architecture, reference, release checklist, and runtime docs now
|
|
76
|
+
document dogfood, host guarantees, extension authoring, and suite dry-runs.
|
|
77
|
+
|
|
78
|
+
### Guardrails
|
|
79
|
+
- Dogfood runs copy fixtures into temporary directories before executing.
|
|
80
|
+
- Host capability detection does not require network access.
|
|
81
|
+
- Extension scaffolding does not overwrite existing files unless requested.
|
|
82
|
+
- Suite release dry-runs return planned writes and impacted dependents without
|
|
83
|
+
mutating sibling repositories.
|
|
84
|
+
|
|
10
85
|
## [1.6.21] - 2026-05-16
|
|
11
86
|
|
|
12
87
|
Dashboard compression, trace guardrails, and suite release readiness.
|
package/INSPIRATION.md
CHANGED
|
@@ -33,6 +33,12 @@ Beyond what was inherited, godpowers added:
|
|
|
33
33
|
for the case where Impeccable is not installed
|
|
34
34
|
- **AI-tool context writer** that maintains fenced sections in
|
|
35
35
|
AGENTS.md / CLAUDE.md / GEMINI.md and 11 other tool-specific paths
|
|
36
|
+
- **Feature awareness and host guarantee reporting** so existing projects and
|
|
37
|
+
AI coding hosts can state what Godpowers capabilities are actually available
|
|
38
|
+
- **Messy-repo dogfood fixtures** for GSD migration, sync-back, extension
|
|
39
|
+
authoring, host capability, and Mode D suite release dry-run behavior
|
|
40
|
+
- **Autonomous repo documentation and surface sync** for badges, route
|
|
41
|
+
metadata, recipes, package payloads, release gates, and extension packs
|
|
36
42
|
|
|
37
43
|
## Why this is the only mention
|
|
38
44
|
|
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,14 +12,15 @@ 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
|
-
|
|
18
|
-
|
|
15
|
+
Version 1.6.23 hardens the release surface after a full file-by-file audit.
|
|
16
|
+
Godpowers now keeps repo documentation, release gates, feature awareness,
|
|
17
|
+
host guarantees, source-system sync-back, and repository surface checks aligned
|
|
18
|
+
from reconciliation through final sync.
|
|
19
19
|
|
|
20
|
-
The dashboard now starts with an action brief
|
|
21
|
-
recommended, whether the project is ready,
|
|
22
|
-
|
|
20
|
+
The dashboard now starts with an action brief and a host guarantee line: the
|
|
21
|
+
next command, why it is recommended, whether the project is ready, the first
|
|
22
|
+
blockers that need attention, and whether the current host can provide full,
|
|
23
|
+
degraded, or unknown runtime guarantees.
|
|
23
24
|
|
|
24
25
|
It fuses four disciplines into one unified workflow:
|
|
25
26
|
|
|
@@ -120,7 +121,10 @@ runtime that can execute Node:
|
|
|
120
121
|
```bash
|
|
121
122
|
npx godpowers status --project=.
|
|
122
123
|
npx godpowers next --project=.
|
|
124
|
+
npx godpowers status --project=. --brief
|
|
123
125
|
npx godpowers status --project=. --json
|
|
126
|
+
npx godpowers dogfood
|
|
127
|
+
npx godpowers extension-scaffold --name=@godpowers/my-pack --output=.
|
|
124
128
|
```
|
|
125
129
|
|
|
126
130
|
### Slash Commands
|
|
@@ -145,6 +149,7 @@ npx godpowers status --project=. --json
|
|
|
145
149
|
| `/god-status` | Re-derive state from disk | (built-in) |
|
|
146
150
|
| `/god-automation-status` | Show host automation provider support | (built-in) |
|
|
147
151
|
| `/god-automation-setup` | Prepare opt-in automation setup | (built-in) |
|
|
152
|
+
| `/god-dogfood` | Run messy-repo dogfood scenarios for release and autonomy readiness | (built-in) |
|
|
148
153
|
| `/god-migrate` | Detect GSD, BMAD, and Superpowers context; import and sync back | god-greenfieldifier when needed |
|
|
149
154
|
| `/god-preflight` | Read-only intake audit before project-run readiness and pillars | god-auditor |
|
|
150
155
|
| `/god-audit` | Score artifacts against have-nots | god-auditor |
|
|
@@ -212,6 +217,17 @@ npx godpowers automation-status --project=.
|
|
|
212
217
|
npx godpowers automation-setup --project=.
|
|
213
218
|
```
|
|
214
219
|
|
|
220
|
+
Godpowers can dogfood itself against shipped messy-repo fixtures:
|
|
221
|
+
|
|
222
|
+
```bash
|
|
223
|
+
npx godpowers dogfood
|
|
224
|
+
```
|
|
225
|
+
|
|
226
|
+
The dogfood suite covers a half-migrated GSD project, full and degraded host
|
|
227
|
+
guarantee detection, extension scaffold validation, and a Mode D suite release
|
|
228
|
+
dry-run. `/god-dogfood` reports failures with scoped specialist ownership
|
|
229
|
+
rather than treating fixture checks as silent background work.
|
|
230
|
+
|
|
215
231
|
Automation setup is opt-in. The installer does not create schedules, routines,
|
|
216
232
|
background agents, API triggers, or CI workflows. Safe starting templates are
|
|
217
233
|
read-only status, checkpoint, review queue, hygiene, and release readiness
|
|
@@ -362,7 +378,7 @@ Pi. T3 Code inherits from the underlying agent (Codex / Claude / OpenCode).
|
|
|
362
378
|
|
|
363
379
|
- [Getting Started](docs/getting-started.md)
|
|
364
380
|
- [Concepts](docs/concepts.md)
|
|
365
|
-
- [Command reference (all
|
|
381
|
+
- [Command reference (all 110 skills + 40 agents)](docs/reference.md)
|
|
366
382
|
- [Feature awareness](docs/feature-awareness.md)
|
|
367
383
|
- [Repository documentation sync](docs/repo-doc-sync.md)
|
|
368
384
|
- [Repository surface sync](docs/repo-surface-sync.md)
|
package/RELEASE.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
# Godpowers 1.6.
|
|
1
|
+
# Godpowers 1.6.23 Release
|
|
2
2
|
|
|
3
3
|
Date: 2026-05-16
|
|
4
4
|
|
|
5
|
-
Godpowers 1.6.
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
Godpowers 1.6.23 hardens the repository after a full file-by-file audit. It
|
|
6
|
+
aligns release gates, documentation sync, repository surface sync, feature
|
|
7
|
+
awareness, source-system sync-back, host guarantees, dashboard closeouts, and
|
|
8
|
+
package publishing into one verified release surface.
|
|
9
9
|
|
|
10
10
|
## What is stable
|
|
11
11
|
|
|
12
|
-
-
|
|
12
|
+
- 110 slash commands
|
|
13
13
|
- 40 specialist agents
|
|
14
14
|
- 13 executable workflows
|
|
15
15
|
- 40 intent recipes
|
|
@@ -28,74 +28,66 @@ dogfood, extension publish, Mode D suite, and installer smoke gates.
|
|
|
28
28
|
- Repository surface sync checks
|
|
29
29
|
- Route quality, recipe coverage, and release surface sync checks
|
|
30
30
|
- Dashboard action briefs for next-step compression
|
|
31
|
+
- Dashboard host guarantees for full, degraded, and unknown runtime capability
|
|
31
32
|
- Agent-spawn trace event guardrails
|
|
32
33
|
- Mode D suite readiness checks
|
|
34
|
+
- Messy-repo dogfood scenarios
|
|
35
|
+
- Extension authoring scaffold helper
|
|
36
|
+
- Mode D suite release dry-run planner
|
|
37
|
+
- Release gate enforcement through `npm run release:check`
|
|
33
38
|
|
|
34
39
|
## What is new
|
|
35
40
|
|
|
36
|
-
- Added
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
-
|
|
55
|
-
|
|
56
|
-
-
|
|
57
|
-
|
|
58
|
-
-
|
|
59
|
-
|
|
60
|
-
- release
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
Detection is read-only by default. Applying sync writes logs and leaves
|
|
64
|
-
judgment-heavy rewrites to scoped specialists.
|
|
65
|
-
|
|
66
|
-
## Auto-invoke and auto-spawn policy
|
|
67
|
-
|
|
68
|
-
Safe repo surface sync is local runtime work and must be reported as:
|
|
69
|
-
|
|
70
|
-
```text
|
|
71
|
-
Agent: none, local runtime only
|
|
72
|
-
```
|
|
73
|
-
|
|
74
|
-
Godpowers recommends scoped specialists only when judgment is needed:
|
|
75
|
-
|
|
76
|
-
- `god-auditor` for agent contract or handoff drift
|
|
77
|
-
- `god-roadmap-reconciler` for workflow or recipe lifecycle drift
|
|
78
|
-
- `god-coordinator` for extension pack drift
|
|
79
|
-
- `god-docs-writer` for release prose drift
|
|
41
|
+
- Added `.planning/2026-05-16-surface-sync-status.md` to record the current
|
|
42
|
+
`.github/workflows`, `.planning`, and `agents` sync status without rewriting
|
|
43
|
+
historical planning evidence.
|
|
44
|
+
- Expanded `god-reconciler` so feature reconciliation includes repository
|
|
45
|
+
documentation, repository surface, runtime feature awareness, source-system
|
|
46
|
+
sync-back, and host capability checks.
|
|
47
|
+
- Expanded `god-updater` so closeout reports repo-doc sync, repo-surface sync,
|
|
48
|
+
feature awareness, source-system sync-back, host capability, dashboard
|
|
49
|
+
refresh, checkpoint sync, Pillars sync, and context refresh.
|
|
50
|
+
- Updated workflow release jobs so root and first-party pack publishing run
|
|
51
|
+
the complete release gate first.
|
|
52
|
+
- Updated `prepublishOnly` so local npm publish attempts also run the complete
|
|
53
|
+
release gate.
|
|
54
|
+
|
|
55
|
+
## Repairs
|
|
56
|
+
|
|
57
|
+
- Repaired stale current-version claims in README, architecture, roadmap,
|
|
58
|
+
reference docs, `/god-version`, and agent context.
|
|
59
|
+
- Repaired stale `/god-reconcile` docs so the command and specialist agent
|
|
60
|
+
describe the same expanded sync surfaces.
|
|
61
|
+
- Repaired final sync docs so `/god-mode`, `god-orchestrator`, and agent specs
|
|
62
|
+
all describe core artifacts plus local runtime and repository sync surfaces.
|
|
63
|
+
- Removed literal forbidden dash and emoji characters from primary source files
|
|
64
|
+
while keeping validator tests intact through Unicode escape sequences.
|
|
65
|
+
- Repaired release documentation drift around package contents, route quality,
|
|
66
|
+
recipe coverage, release-surface checks, dogfood, host guarantees, extension
|
|
67
|
+
authoring, and Mode D suite release dry-runs.
|
|
80
68
|
|
|
81
69
|
## Validation
|
|
82
70
|
|
|
83
71
|
Release validation includes:
|
|
84
72
|
|
|
73
|
+
- source audit over 639 tracked plus untracked source files
|
|
74
|
+
- `node scripts/validate-skills.js`
|
|
75
|
+
- `bash scripts/smoke.sh`
|
|
76
|
+
- `node scripts/test-agent-validator.js`
|
|
77
|
+
- `node scripts/test-artifact-linter.js`
|
|
78
|
+
- `node scripts/test-repo-doc-sync.js`
|
|
85
79
|
- `node scripts/test-repo-surface-sync.js`
|
|
86
80
|
- `node scripts/test-automation-surface-sync.js`
|
|
87
|
-
- `node scripts/test-repo-doc-sync.js`
|
|
88
81
|
- `node scripts/test-feature-awareness.js`
|
|
89
|
-
- `node scripts/test-
|
|
82
|
+
- `node scripts/test-host-capabilities.js`
|
|
83
|
+
- `node scripts/test-dogfood-runner.js`
|
|
84
|
+
- `node scripts/test-extension-authoring.js`
|
|
90
85
|
- `node scripts/test-mode-d.js`
|
|
91
86
|
- `node scripts/test-extensions-publish.js`
|
|
92
87
|
- `node scripts/test-install-smoke.js`
|
|
93
|
-
- `
|
|
94
|
-
- `node scripts/test-planning-systems.js`
|
|
95
|
-
- `node scripts/test-doc-surface-counts.js`
|
|
96
|
-
- `node scripts/validate-skills.js`
|
|
88
|
+
- `npm audit --omit=dev`
|
|
97
89
|
- `git diff --check`
|
|
98
90
|
- `npm run release:check`
|
|
99
91
|
|
|
100
|
-
The `v1.6.
|
|
101
|
-
`godpowers@1.6.
|
|
92
|
+
The `v1.6.23` tag should point to the release commit that matches the npm
|
|
93
|
+
`godpowers@1.6.23` package.
|
package/SKILL.md
CHANGED
|
@@ -120,9 +120,9 @@ When the runtime bundle is available, compute this with
|
|
|
120
120
|
`lib/dashboard.compute(projectRoot)` and render it with
|
|
121
121
|
`lib/dashboard.render(result)`. The executable dashboard engine is the shared
|
|
122
122
|
source for phase, tier, step, progress, PRD and roadmap visibility, proactive
|
|
123
|
-
checks, open items, and the next route. If the runtime module
|
|
124
|
-
fall back to a manual disk scan and say `Dashboard engine:
|
|
125
|
-
scan used`.
|
|
123
|
+
checks, host guarantees, open items, and the next route. If the runtime module
|
|
124
|
+
is unavailable, fall back to a manual disk scan and say `Dashboard engine:
|
|
125
|
+
unavailable, manual scan used`.
|
|
126
126
|
|
|
127
127
|
Use this shape:
|
|
128
128
|
|
|
@@ -137,6 +137,13 @@ Current status:
|
|
|
137
137
|
Worktree: <clean | modified files unstaged | staged changes | mixed>
|
|
138
138
|
Index: <untouched | staged files listed>
|
|
139
139
|
|
|
140
|
+
Action brief:
|
|
141
|
+
Next: <recommended command or user decision>
|
|
142
|
+
Why: <route reason tied to disk state>
|
|
143
|
+
Readiness: <ready | needs attention>
|
|
144
|
+
Attention: <top blockers or none>
|
|
145
|
+
Host guarantees: <full | degraded | unknown with host and first gap>
|
|
146
|
+
|
|
140
147
|
Planning visibility:
|
|
141
148
|
PRD: <done | pending | missing | deferred> <artifact path when present>
|
|
142
149
|
Roadmap: <done | pending | missing | deferred> <artifact path when present>
|
|
@@ -156,6 +163,7 @@ Proactive checks:
|
|
|
156
163
|
Sync: <fresh | missing | stale | local helper ran | suggest /god-sync>
|
|
157
164
|
Docs: <fresh | N stale, suggest /god-docs | repo-doc-sync ran>
|
|
158
165
|
Repo surface: <fresh | N stale, suggest /god-doctor | repo-surface-sync ran>
|
|
166
|
+
Host: <full | degraded | unknown with host and first gap>
|
|
159
167
|
Runtime: <not-applicable | known URL, suggest /god-test-runtime | no known URL, defer deployed verification>
|
|
160
168
|
Automation: <not configured | N active | available via provider, suggest /god-automation-setup>
|
|
161
169
|
Security: <clear | sensitive files changed, suggest /god-harden>
|
|
@@ -215,7 +223,7 @@ Auto-invoked:
|
|
|
215
223
|
Trigger: <what caused this automatic step>
|
|
216
224
|
Agent: <god-updater | god-context-writer | none, local runtime only>
|
|
217
225
|
Local syncs:
|
|
218
|
-
+ <feature-awareness | planning-system-import | reverse-sync | source-sync | repo-doc-sync | repo-surface-sync | route-quality-sync | recipe-coverage-sync | release-surface-sync | pillars-sync | checkpoint-sync | context-refresh>: <result or skipped reason>
|
|
226
|
+
+ <feature-awareness | planning-system-import | reverse-sync | source-sync | repo-doc-sync | repo-surface-sync | route-quality-sync | recipe-coverage-sync | release-surface-sync | host-capabilities | dogfood-runner | pillars-sync | checkpoint-sync | context-refresh>: <result or skipped reason>
|
|
219
227
|
Artifacts: <changed files, no-op, or deferred>
|
|
220
228
|
Log: <SYNC-LOG.md, CHECKPOINT.md, REVIEW-REQUIRED.md, or none>
|
|
221
229
|
```
|
|
@@ -250,6 +258,10 @@ Automatic steps that especially need visible reporting:
|
|
|
250
258
|
- route-quality sync, recipe-coverage sync, and release-surface sync through
|
|
251
259
|
repo-surface sync during `/god-sync`, `/god-docs`, `/god-doctor`,
|
|
252
260
|
`/god-status`, or `/god-mode`
|
|
261
|
+
- host capability detection during `/god-status`, `/god-next`, and closeout
|
|
262
|
+
dashboards
|
|
263
|
+
- dogfood runner execution during `/god-dogfood`, release checks, or explicit
|
|
264
|
+
dogfood requests
|
|
253
265
|
|
|
254
266
|
### 13. Proactive Auto-Invoke Policy
|
|
255
267
|
Godpowers should be proactive from disk evidence, not from guesswork. Before
|
|
@@ -297,6 +309,10 @@ Run these local runtime helpers automatically when their trigger is present:
|
|
|
297
309
|
- `lib/route-quality-sync.detect`, `lib/recipe-coverage-sync.detect`, and
|
|
298
310
|
`lib/release-surface-sync.detect` through repo-surface sync when route
|
|
299
311
|
spawns, high-frequency recipes, or release-facing surfaces may have drifted.
|
|
312
|
+
- `lib/host-capabilities.detect` during dashboard computation so runtime
|
|
313
|
+
guarantees are visible before Godpowers claims autonomy.
|
|
314
|
+
- `lib/dogfood-runner.runAll` during explicit `/god-dogfood`, release checks,
|
|
315
|
+
or user-requested dogfood verification.
|
|
300
316
|
- Context refresh dry-run after `AGENTS.md`, `CLAUDE.md`, `GEMINI.md`,
|
|
301
317
|
`.cursor/rules/`, `.windsurfrules`, `.github/copilot-instructions.md`,
|
|
302
318
|
`.clinerules`, `.roo/`, or `.continue/` changes.
|
|
@@ -332,6 +348,10 @@ Spawn these agents only when the trigger is direct and scope is bounded:
|
|
|
332
348
|
artifacts after local import.
|
|
333
349
|
- `god-greenfieldifier` when feature-awareness detects unimported or imported
|
|
334
350
|
source-system context that is low confidence or conflicting.
|
|
351
|
+
- `god-greenfieldifier` when dogfood migration scenarios fail.
|
|
352
|
+
- `god-context-writer` when host capability dogfood scenarios fail.
|
|
353
|
+
- `god-coordinator` when extension authoring or suite release dogfood
|
|
354
|
+
scenarios fail.
|
|
335
355
|
|
|
336
356
|
#### Level 4: Explicit approval required
|
|
337
357
|
Never auto-run these from inference alone:
|
|
@@ -643,10 +643,13 @@ ecosystem.
|
|
|
643
643
|
Before declaring the project run complete, ALWAYS run /god-sync:
|
|
644
644
|
|
|
645
645
|
1. Spawn god-updater in fresh context
|
|
646
|
-
2. Verify final consistency across all 14 artifact categories
|
|
646
|
+
2. Verify final consistency across all 14 core artifact categories and local
|
|
647
|
+
sync surfaces:
|
|
647
648
|
- All Tier 1-3 artifacts written and pass have-nots
|
|
648
649
|
- Capture artifacts (BACKLOG, SEEDS, TODOS, THREADS) noted as
|
|
649
650
|
"not-yet-created" if absent (graceful, not a failure)
|
|
651
|
+
- Repo docs, repo surface, feature awareness, source sync-back, host
|
|
652
|
+
capability, checkpoint, Pillars, and context refresh statuses reported
|
|
650
653
|
3. Update SYNC-LOG.md with the project-run completion entry
|
|
651
654
|
4. Update state.json with all final tier statuses
|
|
652
655
|
|
|
@@ -685,19 +688,28 @@ Godpowers project run complete.
|
|
|
685
688
|
|
|
686
689
|
Godpowers Dashboard
|
|
687
690
|
|
|
691
|
+
Source: runtime dashboard (lib/dashboard.js)
|
|
692
|
+
|
|
688
693
|
Current status:
|
|
689
694
|
State: complete
|
|
690
695
|
Phase: <plain-language phase> (tier <human ordinal> of <human total>)
|
|
691
696
|
Step: <sub-step label> (step <n> of <total steps>)
|
|
692
|
-
Progress: <pct>% (<done> of <total> steps complete)
|
|
697
|
+
Progress: <pct>% workflow progress (<done> of <total> tracked steps complete)
|
|
693
698
|
Worktree: <clean | modified files unstaged | staged changes | mixed>
|
|
694
699
|
Index: <untouched | staged files listed>
|
|
695
700
|
|
|
701
|
+
Action brief:
|
|
702
|
+
Next: <one command or user decision>
|
|
703
|
+
Why: <one sentence tied to disk state>
|
|
704
|
+
Readiness: <ready | needs attention>
|
|
705
|
+
Attention: <none or top blockers>
|
|
706
|
+
Host guarantees: <full | degraded | unknown>
|
|
707
|
+
|
|
696
708
|
Planning visibility:
|
|
697
709
|
PRD: <done | pending | missing | deferred> <artifact path when present>
|
|
698
710
|
Roadmap: <done | pending | missing | deferred> <artifact path when present>
|
|
699
711
|
Current milestone: <roadmap milestone, tier, or next planning gate when known>
|
|
700
|
-
Completion: <
|
|
712
|
+
Completion basis: <state.json, PROGRESS.md, artifacts, or audit score source>
|
|
701
713
|
|
|
702
714
|
What changed:
|
|
703
715
|
1. <highest-signal user-visible change>
|
|
@@ -711,6 +723,9 @@ Proactive checks:
|
|
|
711
723
|
Reviews: <none | N pending, suggest /god-review-changes>
|
|
712
724
|
Sync: <fresh | suggested | local helper ran>
|
|
713
725
|
Docs: <fresh | suggested | drift-check spawned>
|
|
726
|
+
Repo surface: <fresh | stale, suggest /god-doctor>
|
|
727
|
+
Host: <full | degraded | unknown>
|
|
728
|
+
Dogfood: <not-run | pass | fail | suggest /god-dogfood>
|
|
714
729
|
Runtime: <not-applicable | suggested | browser test spawned>
|
|
715
730
|
Security: <clear | suggested | harden spawned>
|
|
716
731
|
Dependencies: <clear | suggested | deps audit spawned>
|
package/agents/god-reconciler.md
CHANGED
|
@@ -3,9 +3,10 @@ name: god-reconciler
|
|
|
3
3
|
description: |
|
|
4
4
|
Comprehensive reconciliation across ALL impacted artifacts before feature
|
|
5
5
|
work. Checks PRD, ARCH, ROADMAP, STACK, REPO, DEPLOY, OBSERVE, HARDEN,
|
|
6
|
-
LAUNCH, BACKLOG, SEEDS, TODOS, THREADS
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
LAUNCH, BACKLOG, SEEDS, TODOS, THREADS, repository documentation,
|
|
7
|
+
repository surface, feature awareness, host capability, and source-system
|
|
8
|
+
sync-back in parallel. Returns multi-dimensional verdict so user knows every
|
|
9
|
+
place the work intersects with existing artifacts.
|
|
9
10
|
|
|
10
11
|
Spawned by: /god-reconcile, recipe execution (feature-addition category)
|
|
11
12
|
tools: Read, Bash, Grep, Glob, Task
|
|
@@ -25,6 +26,8 @@ A feature addition often impacts multiple artifacts:
|
|
|
25
26
|
- STACK may need a new dependency
|
|
26
27
|
- BACKLOG may already capture the intent
|
|
27
28
|
- SEEDS may trigger a planted seed
|
|
29
|
+
- README, release notes, schemas, workflows, recipes, and installed-project
|
|
30
|
+
feature awareness may need mechanical sync
|
|
28
31
|
|
|
29
32
|
If we don't check all of these, we get drift. Roadmap says one thing, PRD
|
|
30
33
|
says another, code does a third.
|
|
@@ -120,6 +123,38 @@ For each artifact below, check (in parallel where possible):
|
|
|
120
123
|
- Is there an active thread about this topic?
|
|
121
124
|
- Verdict: no-thread / active-thread (with thread name)
|
|
122
125
|
|
|
126
|
+
### Runtime and repository surface artifacts
|
|
127
|
+
|
|
128
|
+
#### REPO DOCS (`README.md`, `CHANGELOG.md`, `RELEASE.md`, docs, support files)
|
|
129
|
+
- Does this work change public counts, badges, release status, install
|
|
130
|
+
guidance, contributor guidance, or support policy?
|
|
131
|
+
- Verdict: fresh / needs-mechanical-sync / needs-docs-writer
|
|
132
|
+
- If narrative release or support docs need judgment: recommend
|
|
133
|
+
`god-docs-writer`.
|
|
134
|
+
|
|
135
|
+
#### REPO SURFACE (`skills/`, `agents/`, `routing/`, `workflows/`, `schema/`, `package.json`)
|
|
136
|
+
- Did the work add, rename, remove, or change a command, agent, workflow,
|
|
137
|
+
recipe, schema, package file entry, extension, or release helper?
|
|
138
|
+
- Verdict: fresh / needs-surface-sync / needs-safe-fix / needs-human-review
|
|
139
|
+
- If stale checks are mechanical: recommend `lib/repo-surface-sync.run`.
|
|
140
|
+
|
|
141
|
+
#### FEATURE AWARENESS (`.godpowers/state.json`, context fences)
|
|
142
|
+
- Does an existing Godpowers project need to learn about new runtime features?
|
|
143
|
+
- Verdict: fresh / needs-awareness-refresh / needs-migration-judgment
|
|
144
|
+
- If imported planning systems have low confidence or conflicts: recommend
|
|
145
|
+
`god-greenfieldifier`.
|
|
146
|
+
|
|
147
|
+
#### SOURCE SYSTEM SYNC-BACK (GSD, BMAD, Superpowers)
|
|
148
|
+
- Did migrated source-system summaries need managed sync-back?
|
|
149
|
+
- Verdict: not-applicable / fresh / needs-sync-back / blocked-by-conflict
|
|
150
|
+
- If conflicts exist: recommend greenfieldifier review before writes.
|
|
151
|
+
|
|
152
|
+
#### HOST CAPABILITY (`lib/host-capabilities.js`)
|
|
153
|
+
- Does the work depend on a host feature such as fresh-context spawning,
|
|
154
|
+
local shell, GitHub CLI, npm, or extension authoring?
|
|
155
|
+
- Verdict: full / degraded / unknown
|
|
156
|
+
- If degraded: include the missing guarantee in the recommendation.
|
|
157
|
+
|
|
123
158
|
## Output
|
|
124
159
|
|
|
125
160
|
Return structured JSON to the orchestrating skill:
|
|
@@ -141,6 +176,11 @@ Return structured JSON to the orchestrating skill:
|
|
|
141
176
|
"seeds": { "status": "no-seeds" },
|
|
142
177
|
"todos": { "status": "supersedes-todo", "match": "P1: refactor auth middleware" },
|
|
143
178
|
"threads": { "status": "active-thread", "match": "auth migration" },
|
|
179
|
+
"repo_docs": { "status": "needs-mechanical-sync", "action": "run repo-doc-sync" },
|
|
180
|
+
"repo_surface": { "status": "needs-surface-sync", "action": "run repo-surface-sync" },
|
|
181
|
+
"feature_awareness": { "status": "needs-awareness-refresh", "action": "run feature-awareness" },
|
|
182
|
+
"source_sync_back": { "status": "not-applicable" },
|
|
183
|
+
"host_capability": { "status": "degraded", "gap": "fresh-context agent spawn not detected" },
|
|
144
184
|
"recommendation": {
|
|
145
185
|
"primary-action": "/god-feature scoped to Milestone 2",
|
|
146
186
|
"preflight": [
|
|
@@ -148,7 +188,7 @@ Return structured JSON to the orchestrating skill:
|
|
|
148
188
|
"/god-arch with mode=delta-only (add component + ADR)"
|
|
149
189
|
],
|
|
150
190
|
"post-work": [
|
|
151
|
-
"/god-sync (update all affected artifacts)"
|
|
191
|
+
"/god-sync (update all affected artifacts and local sync surfaces)"
|
|
152
192
|
]
|
|
153
193
|
}
|
|
154
194
|
}
|
|
@@ -175,12 +215,17 @@ Where this intersects existing artifacts:
|
|
|
175
215
|
SEEDS: no triggers
|
|
176
216
|
TODOS: supersedes "refactor auth middleware"
|
|
177
217
|
THREADS: relates to active thread "auth migration"
|
|
218
|
+
REPO DOCS: needs mechanical sync
|
|
219
|
+
SURFACE: needs repo-surface sync
|
|
220
|
+
FEATURES: awareness refresh needed
|
|
221
|
+
SOURCE: no sync-back needed
|
|
222
|
+
HOST: degraded - fresh-context agent spawn not detected
|
|
178
223
|
|
|
179
224
|
Recommended sequence:
|
|
180
225
|
1. /god-redo prd (add requirement)
|
|
181
226
|
2. /god-arch delta-only (architecture delta)
|
|
182
227
|
3. /god-feature (build it, scoped to Milestone 2)
|
|
183
|
-
4. /god-sync (update all touched artifacts)
|
|
228
|
+
4. /god-sync (update all touched artifacts and local sync surfaces)
|
|
184
229
|
|
|
185
230
|
Run this sequence? (yes / show alternatives / cancel)
|
|
186
231
|
```
|
|
@@ -224,6 +269,8 @@ For feature-addition category recipes: ALWAYS reconcile.
|
|
|
224
269
|
Reconciliation FAILS if:
|
|
225
270
|
- Returns "all covered" without checking each artifact
|
|
226
271
|
- Skips an artifact silently (must report status for each)
|
|
272
|
+
- Skips repo docs, repo surface, feature awareness, source sync-back, or host
|
|
273
|
+
capability when the work affects them
|
|
227
274
|
- Recommends bypass without justification
|
|
228
275
|
- Missing prerequisite check
|
|
229
276
|
- Doesn't surface ambiguous cases
|