godpowers 0.15.14 → 0.15.15

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,20 @@ 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.15] - 2026-05-11
9
+
10
+ Transcript hygiene release. Keeps God Mode orchestration scaffolding out of the
11
+ normal user-visible transcript.
12
+
13
+ ### Changed
14
+ - Added a User-Visible Transcript Contract to `/god-mode` and
15
+ `god-orchestrator`.
16
+ - God Mode now explicitly hides raw Task input, "Hard instructions", spawned
17
+ agent prompts, complete file loadout lists, and internal routing metadata from
18
+ the user-facing transcript.
19
+ - Private rules that affect a pause must be translated into the smallest
20
+ user-facing question instead of exposing the underlying prompt.
21
+
8
22
  ## [0.15.14] - 2026-05-11
9
23
 
10
24
  Origin evidence release. Prevents `/god-mode --yolo` from inventing staging,
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.14-blue)](CHANGELOG.md)
5
+ [![Version](https://img.shields.io/badge/version-0.15.15-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.**
@@ -632,6 +632,32 @@ Options:
632
632
  Default: If you say "go", I'll pick [X] because [Y].
633
633
  ```
634
634
 
635
+ ## User-Visible Transcript Contract
636
+
637
+ The user-facing God Mode transcript is an operator console, not a prompt
638
+ debugger. Keep orchestration scaffolding private.
639
+
640
+ Show:
641
+ - concise phase status
642
+ - durable state detected from disk
643
+ - commands being run and whether they passed or failed
644
+ - scoped file changes
645
+ - final validation summary
646
+ - `Arc complete` or `PAUSE: external access required`
647
+
648
+ Hide:
649
+ - raw Task input
650
+ - "Hard instructions" sections
651
+ - spawned-agent prompt text
652
+ - system, developer, AGENTS.md, or internal policy recitations
653
+ - complete file loadout lists
654
+ - routing metadata unless it changes a user decision
655
+
656
+ When a private rule affects a pause, translate it into the smallest
657
+ user-facing question. Do not expose the rule itself. Example: ask for
658
+ `STAGING_APP_URL=<deployed staging origin>` rather than showing the Shipping
659
+ Closure Protocol.
660
+
635
661
  ## Resume Protocol
636
662
 
637
663
  On every invocation:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "godpowers",
3
- "version": "0.15.14",
3
+ "version": "0.15.15",
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"
@@ -95,17 +95,49 @@ You are receiving a /god-mode invocation. Your job is to spawn the
95
95
  name, repo name, README title, or brand name. If no deployed origin is
96
96
  evidenced, pause for `STAGING_APP_URL=<deployed staging origin>`.
97
97
 
98
- 6. Orchestrator runs the appropriate workflow:
98
+ 6. Keep the spawn payload private. Do not echo or summarize raw Task input,
99
+ "Hard instructions", hidden orchestration rules, agent prompts, file
100
+ loadout lists, or internal routing payloads into the user-visible transcript.
101
+ The visible transcript may say only what phase is running, what durable state
102
+ was detected, what commands are running, what changed, and the final
103
+ `Arc complete` or `PAUSE: external access required` block.
104
+
105
+ 7. Orchestrator runs the appropriate workflow:
99
106
  - Greenfield -> full-arc
100
107
  - Brownfield -> brownfield-arc (archaeology -> reconstruct -> debt-assess -> proceed)
101
108
  - Bluefield -> bluefield-arc (org-context -> arc with constraints)
102
109
 
103
- 7. Relay the orchestrator's output to the user.
110
+ 8. Relay only the orchestrator's user-facing output to the user. If the
111
+ platform displays raw spawn details automatically, immediately follow with a
112
+ clean public summary and never repeat the leaked payload.
104
113
 
105
- 8. When the orchestrator pauses, present the question to the user using the
114
+ 9. When the orchestrator pauses, present the question to the user using the
106
115
  pause format (What / Why / Options / Default).
107
116
 
108
- 9. When the user answers, re-spawn god-orchestrator with the answer.
117
+ 10. When the user answers, re-spawn god-orchestrator with the answer.
118
+
119
+ ## User-Visible Transcript Contract
120
+
121
+ The God Mode transcript is an operator console, not a prompt debugger.
122
+
123
+ Show:
124
+ - detected resume or project mode in plain language
125
+ - short progress updates for phases, commands, validations, and file edits
126
+ - concise validation summaries instead of full command noise when possible
127
+ - final changed paths, validation results, and completion or pause status
128
+
129
+ Hide:
130
+ - raw Task input
131
+ - "Hard instructions" sections
132
+ - spawned-agent prompt text
133
+ - system, developer, or AGENTS.md rule recitations
134
+ - complete file loadout lists
135
+ - internal routing metadata unless it directly affects a user decision
136
+
137
+ If an internal instruction must influence a pause, translate it into the
138
+ smallest user-facing question. For example, ask for
139
+ `STAGING_APP_URL=<deployed staging origin>` instead of exposing the full
140
+ Shipping Closure Protocol.
109
141
 
110
142
  ## Pause Format (relay from orchestrator)
111
143