godpowers 0.15.5 → 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 CHANGED
@@ -5,6 +5,19 @@ 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
+
8
21
  ## [0.15.5] - 2026-05-11
9
22
 
10
23
  Godpowers init UX release. Makes explicit command invocation behave like
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![CI](https://github.com/aihxp/godpowers/actions/workflows/ci.yml/badge.svg)](https://github.com/aihxp/godpowers/actions/workflows/ci.yml)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
5
- [![Version](https://img.shields.io/badge/version-0.15.5-blue)](CHANGELOG.md)
5
+ [![Version](https://img.shields.io/badge/version-0.15.6-blue)](CHANGELOG.md)
6
6
  [![npm](https://img.shields.io/npm/v/godpowers.svg)](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, /god-sync (refresh).
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. Report what was written / refreshed.
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
 
@@ -114,7 +119,8 @@ is the source of truth.
114
119
 
115
120
  ## Output
116
121
 
117
- Report back to the orchestrator (or the calling skill):
122
+ For `/god-context on` or `/god-context refresh`, report back to the
123
+ orchestrator (or the calling skill):
118
124
 
119
125
  ```
120
126
  Context files updated:
@@ -132,6 +138,16 @@ Context fences removed from:
132
138
  - CLAUDE.md (file deleted; was Godpowers-only)
133
139
  ```
134
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
+
135
151
  ## Handoff
136
152
 
137
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.5",
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"
@@ -124,10 +124,15 @@ files detected in this project.
124
124
 
125
125
  Persist the resolved answer to `state.json` under
126
126
  `project.context-prompt-answered`. For explicit `god init` and `/god-init`,
127
- store `yes` and spawn `god-context-writer` in `write` mode. For generic
128
- triggers, on `yes`, spawn `god-context-writer` in `write` mode. On
129
- `never-ask`, store that flag so future runs of /god-init and /god-sync skip
130
- the prompt and the auto-refresh.
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.
131
136
 
132
137
  If the user later wants to enable it manually, they run `/god-context on`.
133
138
 
@@ -160,12 +165,5 @@ without explicit user invocation of /god-suite-init.
160
165
  After init completes, print:
161
166
 
162
167
  ```
163
- Godpowers initialized.
164
-
165
- Mode: [detected mode]
166
- Scale: [detected scale]
167
- AI-tool context: [enabled / skipped / never-ask]
168
-
169
- Suggested next: /god-prd (write the requirements)
170
- Or: /god-mode (run the full autonomous arc)
168
+ Suggested next: /god-prd for requirements, or /god-mode for the full autonomous arc.
171
169
  ```