godpowers 0.15.4 → 0.15.6
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 +24 -0
- package/README.md +1 -1
- package/agents/god-context-writer.md +21 -4
- package/package.json +1 -1
- package/skills/god-init.md +22 -14
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,30 @@ 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.6] - 2026-05-11
|
|
9
|
+
|
|
10
|
+
Quiet init release. Keeps `/god-init` focused on the next useful command while
|
|
11
|
+
context setup happens in the background.
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- `/god-init` now treats the Godpowers context writer as background setup and
|
|
15
|
+
suppresses file-by-file narration unless the context write fails.
|
|
16
|
+
- `/god-init` completion now prints only the suggested next command line:
|
|
17
|
+
`/god-prd` for requirements, or `/god-mode` for the full autonomous arc.
|
|
18
|
+
- `/god-context` commands remain explicit and still report their context-file
|
|
19
|
+
changes.
|
|
20
|
+
|
|
21
|
+
## [0.15.5] - 2026-05-11
|
|
22
|
+
|
|
23
|
+
Godpowers init UX release. Makes explicit command invocation behave like
|
|
24
|
+
project setup instead of asking an obvious follow-up.
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
- `god init` and `/god-init` now automatically write the Godpowers AI-tool
|
|
28
|
+
context fence after initialization.
|
|
29
|
+
- Generic init triggers such as "start a project" and "initialize" still ask
|
|
30
|
+
once before writing AI-tool instruction files.
|
|
31
|
+
|
|
8
32
|
## [0.15.4] - 2026-05-11
|
|
9
33
|
|
|
10
34
|
Codex command discovery release. Installs Godpowers commands in the directory
|
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.**
|
|
@@ -6,7 +6,8 @@ description: |
|
|
|
6
6
|
.clinerules, .roo/, .continue/). Writes a fenced "godpowers" section so
|
|
7
7
|
AI tools know they're in a Godpowers project on cold session start.
|
|
8
8
|
|
|
9
|
-
Spawned by: /god-init (after consent), /god-context,
|
|
9
|
+
Spawned by: /god-init (automatic quiet setup after consent), /god-context,
|
|
10
|
+
/god-sync (refresh).
|
|
10
11
|
tools: Read, Write, Edit, Bash, Grep, Glob
|
|
11
12
|
---
|
|
12
13
|
|
|
@@ -68,7 +69,9 @@ You are spawned with one of these modes:
|
|
|
68
69
|
3. Call `apply(projectRoot, state)`:
|
|
69
70
|
- Writes AGENTS.md fence (creates file if missing).
|
|
70
71
|
- For each detected tool: writes a pointer fence to its target file.
|
|
71
|
-
4.
|
|
72
|
+
4. If called by `/god-init`, return a compact success marker to the caller
|
|
73
|
+
and do not produce user-facing narration.
|
|
74
|
+
5. Otherwise, report what was written / refreshed.
|
|
72
75
|
|
|
73
76
|
### Mode 2: status
|
|
74
77
|
|
|
@@ -89,6 +92,8 @@ You are spawned with one of these modes:
|
|
|
89
92
|
### Mode 4: sync (called from god-updater)
|
|
90
93
|
|
|
91
94
|
Same as Mode 1. Refreshes the canonical section against current state. Idempotent.
|
|
95
|
+
Sync mode is quiet by default unless there is a failure or the user explicitly
|
|
96
|
+
asked for `/god-context refresh`.
|
|
92
97
|
|
|
93
98
|
## Content discipline
|
|
94
99
|
|
|
@@ -104,7 +109,8 @@ is the source of truth.
|
|
|
104
109
|
## Never do these
|
|
105
110
|
|
|
106
111
|
- Never overwrite content outside the fence.
|
|
107
|
-
- Never silently create AGENTS.md
|
|
112
|
+
- Never silently create AGENTS.md for generic init triggers. Explicit
|
|
113
|
+
`god init` and `/god-init` are consent to write the Godpowers context fence.
|
|
108
114
|
- Never write to a tool's file if the tool's signal directory/file is missing.
|
|
109
115
|
- Never fork the canonical section across multiple files; everything
|
|
110
116
|
non-pointer goes only to AGENTS.md.
|
|
@@ -113,7 +119,8 @@ is the source of truth.
|
|
|
113
119
|
|
|
114
120
|
## Output
|
|
115
121
|
|
|
116
|
-
|
|
122
|
+
For `/god-context on` or `/god-context refresh`, report back to the
|
|
123
|
+
orchestrator (or the calling skill):
|
|
117
124
|
|
|
118
125
|
```
|
|
119
126
|
Context files updated:
|
|
@@ -131,6 +138,16 @@ Context fences removed from:
|
|
|
131
138
|
- CLAUDE.md (file deleted; was Godpowers-only)
|
|
132
139
|
```
|
|
133
140
|
|
|
141
|
+
For `/god-init` callers:
|
|
142
|
+
|
|
143
|
+
```
|
|
144
|
+
context-written
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
Do not show file names, exploration notes, state updates, or edit summaries to
|
|
148
|
+
the user during `/god-init`. The init skill owns the final user-facing output.
|
|
149
|
+
Only surface context-writer details when there is an error.
|
|
150
|
+
|
|
134
151
|
## Handoff
|
|
135
152
|
|
|
136
153
|
You return control to the spawner with a summary. You do not chain into
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "godpowers",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.6",
|
|
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-init.md
CHANGED
|
@@ -99,9 +99,17 @@ needs to specify a mode.
|
|
|
99
99
|
|
|
100
100
|
`.godpowers/PROGRESS.md` created with initial state.
|
|
101
101
|
|
|
102
|
-
## AI-tool context (
|
|
102
|
+
## AI-tool context (automatic for explicit init)
|
|
103
103
|
|
|
104
|
-
After PROGRESS.md is written,
|
|
104
|
+
After PROGRESS.md is written, decide from the trigger phrase:
|
|
105
|
+
|
|
106
|
+
- If the user explicitly invoked `god init` or `/god-init`, write AI-tool
|
|
107
|
+
context automatically. The command itself is explicit consent to initialize
|
|
108
|
+
Godpowers project context for the active AI coding tool.
|
|
109
|
+
- If the user used a generic trigger such as "start a project", "new project",
|
|
110
|
+
or "initialize", ask once before writing AI-tool instruction files.
|
|
111
|
+
|
|
112
|
+
Prompt for generic triggers only:
|
|
105
113
|
|
|
106
114
|
```
|
|
107
115
|
Tell your AI coding tools (Claude Code, Codex, Gemini, Cursor, Windsurf,
|
|
@@ -114,10 +122,17 @@ files detected in this project.
|
|
|
114
122
|
never-ask - never ask again on this project
|
|
115
123
|
```
|
|
116
124
|
|
|
117
|
-
Persist the answer to `state.json` under
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
125
|
+
Persist the resolved answer to `state.json` under
|
|
126
|
+
`project.context-prompt-answered`. For explicit `god init` and `/god-init`,
|
|
127
|
+
store `yes` and spawn `god-context-writer` in `write` mode with quiet output.
|
|
128
|
+
For generic triggers, on `yes`, spawn `god-context-writer` in `write` mode
|
|
129
|
+
with quiet output. On `never-ask`, store that flag so future runs of
|
|
130
|
+
/god-init and /god-sync skip the prompt and the auto-refresh.
|
|
131
|
+
|
|
132
|
+
When `god-context-writer` is spawned by /god-init, treat it as background
|
|
133
|
+
setup. Do not narrate file exploration, planned edits, written files, or state
|
|
134
|
+
updates unless the context write fails. On failure, report the error briefly
|
|
135
|
+
and suggest `/god-context on` as the manual retry.
|
|
121
136
|
|
|
122
137
|
If the user later wants to enable it manually, they run `/god-context on`.
|
|
123
138
|
|
|
@@ -150,12 +165,5 @@ without explicit user invocation of /god-suite-init.
|
|
|
150
165
|
After init completes, print:
|
|
151
166
|
|
|
152
167
|
```
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
Mode: [detected mode]
|
|
156
|
-
Scale: [detected scale]
|
|
157
|
-
AI-tool context: [enabled / skipped / never-ask]
|
|
158
|
-
|
|
159
|
-
Suggested next: /god-prd (write the requirements)
|
|
160
|
-
Or: /god-mode (run the full autonomous arc)
|
|
168
|
+
Suggested next: /god-prd for requirements, or /god-mode for the full autonomous arc.
|
|
161
169
|
```
|