godpowers 0.15.4 → 0.15.5

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,17 @@ 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.5] - 2026-05-11
9
+
10
+ Godpowers init UX release. Makes explicit command invocation behave like
11
+ project setup instead of asking an obvious follow-up.
12
+
13
+ ### Changed
14
+ - `god init` and `/god-init` now automatically write the Godpowers AI-tool
15
+ context fence after initialization.
16
+ - Generic init triggers such as "start a project" and "initialize" still ask
17
+ once before writing AI-tool instruction files.
18
+
8
19
  ## [0.15.4] - 2026-05-11
9
20
 
10
21
  Codex command discovery release. Installs Godpowers commands in the directory
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.3-blue)](CHANGELOG.md)
5
+ [![Version](https://img.shields.io/badge/version-0.15.5-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.**
@@ -104,7 +104,8 @@ is the source of truth.
104
104
  ## Never do these
105
105
 
106
106
  - Never overwrite content outside the fence.
107
- - Never silently create AGENTS.md without consent on first /god-init.
107
+ - Never silently create AGENTS.md for generic init triggers. Explicit
108
+ `god init` and `/god-init` are consent to write the Godpowers context fence.
108
109
  - Never write to a tool's file if the tool's signal directory/file is missing.
109
110
  - Never fork the canonical section across multiple files; everything
110
111
  non-pointer goes only to AGENTS.md.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "godpowers",
3
- "version": "0.15.4",
3
+ "version": "0.15.5",
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"
@@ -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 (one-time prompt)
102
+ ## AI-tool context (automatic for explicit init)
103
103
 
104
- After PROGRESS.md is written, ask the user once:
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,12 @@ 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 `project.context-prompt-answered`.
118
- On `yes`, spawn `god-context-writer` in `write` mode. On `never-ask`, store
119
- that flag so future runs of /god-init and /god-sync skip the prompt and the
120
- auto-refresh.
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. 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.
121
131
 
122
132
  If the user later wants to enable it manually, they run `/god-context on`.
123
133