godpowers 0.15.10 → 0.15.11
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 +12 -0
- package/README.md +4 -1
- package/agents/god-orchestrator.md +13 -4
- package/package.json +1 -1
- package/skills/god-mode.md +27 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ 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
|
+
## [0.15.11] - 2026-05-11
|
|
9
|
+
|
|
10
|
+
God Mode resume release. Fixes `/god-mode --yolo` prompting for a project
|
|
11
|
+
description when durable Godpowers state already exists.
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- `/god-mode` now treats existing `.godpowers` state as a resume signal and
|
|
15
|
+
rehydrates intent from checkpoint, state, progress, intent, prep, and tier
|
|
16
|
+
artifacts before asking the user anything.
|
|
17
|
+
- The orchestrator now documents that asking "what do you want to build?" in a
|
|
18
|
+
brownfield repo with existing Godpowers artifacts is a routing bug.
|
|
19
|
+
|
|
8
20
|
## [0.15.10] - 2026-05-11
|
|
9
21
|
|
|
10
22
|
God Mode continuity release. Makes red verification output repair work inside
|
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.**
|
|
@@ -153,6 +153,9 @@ going through build, verification, repair, launch, and final sync. Red tests,
|
|
|
153
153
|
typecheck, lint, build, or check output enter the repair loop instead of being
|
|
154
154
|
reported as the final result.
|
|
155
155
|
|
|
156
|
+
If `.godpowers` state already exists, `/god-mode --yolo` resumes from disk
|
|
157
|
+
instead of asking for the project description again.
|
|
158
|
+
|
|
156
159
|
## Architecture
|
|
157
160
|
|
|
158
161
|
### Slash Command + Specialist Agent Pattern
|
|
@@ -567,10 +567,19 @@ Default: If you say "go", I'll pick [X] because [Y].
|
|
|
567
567
|
## Resume Protocol
|
|
568
568
|
|
|
569
569
|
On every invocation:
|
|
570
|
-
1. Read
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
570
|
+
1. Read `.godpowers/CHECKPOINT.md`, `.godpowers/state.json`,
|
|
571
|
+
`.godpowers/PROGRESS.md`, and `.godpowers/intent.yaml` from disk. NEVER
|
|
572
|
+
trust conversation memory.
|
|
573
|
+
2. Scan ALL artifact paths to verify what actually exists.
|
|
574
|
+
3. If durable state exists, do not ask the user to describe the project again.
|
|
575
|
+
Reconstruct intent from disk and continue.
|
|
576
|
+
4. If PROGRESS.md and disk disagree: disk wins. Repair PROGRESS.md.
|
|
577
|
+
5. Continue from the first non-done sub-step or the first red verification
|
|
578
|
+
step.
|
|
579
|
+
|
|
580
|
+
Only ask "what do you want to build?" when no `.godpowers` state, no intent,
|
|
581
|
+
no checkpoint, and no completed artifact exists. In a brownfield repo with
|
|
582
|
+
existing Godpowers artifacts, asking that question is a routing bug.
|
|
574
583
|
|
|
575
584
|
## Mode Detection (Tier 0 setup)
|
|
576
585
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "godpowers",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.11",
|
|
4
4
|
"description": "AI-powered development system: 104 slash commands and 38 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/skills/god-mode.md
CHANGED
|
@@ -16,7 +16,15 @@ You are receiving a /god-mode invocation. Your job is to spawn the
|
|
|
16
16
|
|
|
17
17
|
## Process
|
|
18
18
|
|
|
19
|
-
1.
|
|
19
|
+
1. Resolve whether this is a new arc or a resume:
|
|
20
|
+
- If `.godpowers/state.json`, `.godpowers/PROGRESS.md`, or
|
|
21
|
+
`.godpowers/CHECKPOINT.md` exists, this is a resume. Do not ask the user
|
|
22
|
+
to describe the project again. Rehydrate intent from disk and continue.
|
|
23
|
+
- If no durable Godpowers state exists and no project description was
|
|
24
|
+
supplied in the invocation, greet briefly: "God Mode engaged. Describe
|
|
25
|
+
what you want to build."
|
|
26
|
+
- If no durable state exists and the invocation includes a description, use
|
|
27
|
+
that description immediately.
|
|
20
28
|
|
|
21
29
|
2. **Auto-detect project type in background** (no jargon to user):
|
|
22
30
|
- Scan working directory for code presence (package.json, src/, etc.)
|
|
@@ -25,7 +33,22 @@ You are receiving a /god-mode invocation. Your job is to spawn the
|
|
|
25
33
|
- Announce in plain English what was detected (see god-orchestrator
|
|
26
34
|
"How to announce" section)
|
|
27
35
|
|
|
28
|
-
3.
|
|
36
|
+
3. Load durable resume context before asking anything:
|
|
37
|
+
- `.godpowers/CHECKPOINT.md` first, when present
|
|
38
|
+
- `.godpowers/state.json`
|
|
39
|
+
- `.godpowers/PROGRESS.md`
|
|
40
|
+
- `.godpowers/intent.yaml`, when present
|
|
41
|
+
- `.godpowers/prep/INITIAL-FINDINGS.md`, when present
|
|
42
|
+
- `.godpowers/prep/IMPORTED-CONTEXT.md`, when present
|
|
43
|
+
- Existing tier artifacts on disk
|
|
44
|
+
|
|
45
|
+
If these files contain enough information to identify the project and next
|
|
46
|
+
unfinished or red step, continue automatically. If the only missing data is
|
|
47
|
+
a nice-to-have description, use a `[HYPOTHESIS]` from existing artifacts and
|
|
48
|
+
keep moving.
|
|
49
|
+
|
|
50
|
+
Ask for a description only when there is no durable intent, no completed
|
|
51
|
+
artifact, and no resumable state.
|
|
29
52
|
|
|
30
53
|
4. Parse flags from the invocation:
|
|
31
54
|
- `--yolo` (skip pauses, pick defaults)
|
|
@@ -43,9 +66,10 @@ You are receiving a /god-mode invocation. Your job is to spawn the
|
|
|
43
66
|
- `--greenfield` (force greenfield, skip archaeology even if code exists)
|
|
44
67
|
|
|
45
68
|
5. Spawn the **god-orchestrator** agent via Task tool with:
|
|
46
|
-
- The user's project description
|
|
69
|
+
- The user's project description, or durable intent recovered from disk
|
|
47
70
|
- The detected mode (A/B/C/E)
|
|
48
71
|
- The active flags
|
|
72
|
+
- Instruction that existing `.godpowers` state means resume, not prompt
|
|
49
73
|
- Instruction to read `.godpowers/PROGRESS.md` from disk if it exists
|
|
50
74
|
- Instruction to read `.godpowers/prep/INITIAL-FINDINGS.md` and
|
|
51
75
|
`.godpowers/prep/IMPORTED-CONTEXT.md` if present before choosing the
|