godpowers 0.15.6 → 0.15.8
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 +35 -0
- package/README.md +1 -1
- package/agents/god-architect.md +21 -0
- package/agents/god-orchestrator.md +46 -1
- package/agents/god-pm.md +20 -0
- package/agents/god-roadmapper.md +21 -0
- package/agents/god-stack-selector.md +19 -0
- package/package.json +1 -1
- package/routing/god-arch.yaml +2 -0
- package/routing/god-init.yaml +2 -0
- package/routing/god-mode.yaml +3 -0
- package/routing/god-next.yaml +3 -0
- package/routing/god-prd.yaml +2 -0
- package/routing/god-roadmap.yaml +2 -0
- package/routing/god-stack.yaml +4 -0
- package/skills/god-init.md +30 -0
- package/skills/god-mode.md +3 -0
- package/skills/god-next.md +6 -0
- package/skills/god-prd.md +7 -4
- package/templates/IMPORTED-CONTEXT.md +40 -0
- package/templates/INITIAL-FINDINGS.md +52 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,41 @@ 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.8] - 2026-05-11
|
|
9
|
+
|
|
10
|
+
Init preparation release. Documents what Godpowers found before PRD, next-step
|
|
11
|
+
routing, or the full autonomous arc starts.
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- `/god-init` now always creates `.godpowers/prep/INITIAL-FINDINGS.md` with
|
|
15
|
+
codebase shape, framework and tooling signals, tests, CI, docs, AI-tool
|
|
16
|
+
instructions, detected methodology systems, risks, and the suggested next
|
|
17
|
+
command rationale.
|
|
18
|
+
- `/god-prd`, `/god-next`, and `/god-mode` now read initial findings before
|
|
19
|
+
choosing or producing the next Godpowers artifact.
|
|
20
|
+
- Architecture, roadmap, and stack agents now read initial findings alongside
|
|
21
|
+
imported planning context when present.
|
|
22
|
+
|
|
23
|
+
### Documented
|
|
24
|
+
- The full recent init preparation flow is now documented together:
|
|
25
|
+
automatic AI-tool context for explicit `god init`, quiet context writes,
|
|
26
|
+
GSD / Superpowers / BMAD import into `IMPORTED-CONTEXT.md`, and direct
|
|
27
|
+
Godpowers repo findings in `INITIAL-FINDINGS.md`.
|
|
28
|
+
|
|
29
|
+
## [0.15.7] - 2026-05-11
|
|
30
|
+
|
|
31
|
+
Planning import release. Lets `/god-init` preserve useful context from nearby
|
|
32
|
+
planning systems without making those systems authoritative.
|
|
33
|
+
|
|
34
|
+
### Added
|
|
35
|
+
- `/god-init` now detects GSD, Superpowers, BMAD, and similar planning context
|
|
36
|
+
during project preparation.
|
|
37
|
+
- Added `.godpowers/prep/IMPORTED-CONTEXT.md` as a non-authoritative
|
|
38
|
+
preparation artifact for imported product, delivery, architecture, and stack
|
|
39
|
+
signals.
|
|
40
|
+
- PRD, architecture, roadmap, and stack agents now read imported context when
|
|
41
|
+
present and treat it as hypothesis-level supporting evidence.
|
|
42
|
+
|
|
8
43
|
## [0.15.6] - 2026-05-11
|
|
9
44
|
|
|
10
45
|
Quiet init release. Keeps `/god-init` focused on the next useful command while
|
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.**
|
package/agents/god-architect.md
CHANGED
|
@@ -19,6 +19,27 @@ flip points.
|
|
|
19
19
|
Before starting:
|
|
20
20
|
- `.godpowers/prd/PRD.md` MUST exist
|
|
21
21
|
- PRD MUST pass have-nots (run god-auditor first if uncertain)
|
|
22
|
+
- Optional: `.godpowers/prep/INITIAL-FINDINGS.md` may exist as preparation
|
|
23
|
+
context.
|
|
24
|
+
- Optional: `.godpowers/prep/IMPORTED-CONTEXT.md` may exist as preparation
|
|
25
|
+
context.
|
|
26
|
+
|
|
27
|
+
## Imported Preparation Context
|
|
28
|
+
|
|
29
|
+
If `.godpowers/prep/INITIAL-FINDINGS.md` exists, read it first for direct
|
|
30
|
+
Godpowers observations about framework, tooling, deploy, tests, docs, and
|
|
31
|
+
codebase risks.
|
|
32
|
+
|
|
33
|
+
If `.godpowers/prep/IMPORTED-CONTEXT.md` exists, read its technical signals
|
|
34
|
+
before drafting ARCH. Use imported architecture, integration, risk, and stack
|
|
35
|
+
constraints as hypothesis-level input only.
|
|
36
|
+
|
|
37
|
+
Rules:
|
|
38
|
+
- Do not let imported context override PRD NFRs or Godpowers state.
|
|
39
|
+
- Convert useful imported signals into ADR context, tradeoffs, or open
|
|
40
|
+
questions.
|
|
41
|
+
- If imported context conflicts with the PRD, the PRD wins and the conflict
|
|
42
|
+
becomes an `[OPEN QUESTION]`.
|
|
22
43
|
|
|
23
44
|
## Output
|
|
24
45
|
|
|
@@ -30,7 +30,9 @@ You and only you are responsible for:
|
|
|
30
30
|
2. **Calling the play** - selecting the next specialist agent for each tier
|
|
31
31
|
sub-step from `<runtimeRoot>/routing/<command>.yaml`.
|
|
32
32
|
3. **Owning the playbook** - all writes to `state.json`, `PROGRESS.md`,
|
|
33
|
-
`intent.yaml`,
|
|
33
|
+
`intent.yaml`, `.godpowers/prep/INITIAL-FINDINGS.md`,
|
|
34
|
+
`.godpowers/prep/IMPORTED-CONTEXT.md`, and `events.jsonl` originate from you
|
|
35
|
+
or agents you spawn.
|
|
34
36
|
4. **Audibles** - handling pause checkpoints, the critical-finding gate, and
|
|
35
37
|
the --yolo carve-out when the user has authorized auto-resolve.
|
|
36
38
|
5. **Clock management** - mandatory final sync after Tier 3 (always, including
|
|
@@ -138,6 +140,49 @@ Before each tier, check whether this repo is part of a registered suite:
|
|
|
138
140
|
3. Per-repo state.json remains the source of truth; never write to
|
|
139
141
|
`.godpowers/suite/` directly (that's god-coordinator's surface).
|
|
140
142
|
|
|
143
|
+
## Planning-system context import
|
|
144
|
+
|
|
145
|
+
During `/god-init`, scan for adjacent methodology artifacts from GSD,
|
|
146
|
+
Superpowers, BMAD, and similar systems. Treat them as preparation context,
|
|
147
|
+
not as source of truth.
|
|
148
|
+
|
|
149
|
+
Before or alongside that import, write `.godpowers/prep/INITIAL-FINDINGS.md`
|
|
150
|
+
using `templates/INITIAL-FINDINGS.md`. This artifact records what Godpowers
|
|
151
|
+
observed directly during init:
|
|
152
|
+
- codebase shape, language, framework, package manager, tests, CI, deploy, and
|
|
153
|
+
documentation signals
|
|
154
|
+
- AI-tool instruction files and methodology systems detected
|
|
155
|
+
- risk signals and open questions raised by the scan
|
|
156
|
+
- the suggested next command and why that command is the safest next step
|
|
157
|
+
|
|
158
|
+
Downstream `/god-prd`, `/god-next`, and `/god-mode` flows must read
|
|
159
|
+
`INITIAL-FINDINGS.md` when present. Use it as preparation context only. If it
|
|
160
|
+
conflicts with user intent, state.json, PROGRESS.md, or completed Godpowers
|
|
161
|
+
artifacts, the Godpowers artifact wins.
|
|
162
|
+
|
|
163
|
+
Detection signals:
|
|
164
|
+
- GSD: `.gsd/`, `.planning/`, `GSD.md`, `gsd*.md`
|
|
165
|
+
- Superpowers: `.superpowers/`, `superpowers/`, `SUPERPOWERS.md`,
|
|
166
|
+
`.claude/skills/`, `.codex/skills/`
|
|
167
|
+
- BMAD: `.bmad-core/`, `bmad-core/`, `.bmad/`, `BMAD.md`,
|
|
168
|
+
`docs/prd.md`, `docs/architecture.md`, `docs/roadmap.md`
|
|
169
|
+
|
|
170
|
+
When signals are found:
|
|
171
|
+
1. Read only likely planning files, not dependency folders or generated build
|
|
172
|
+
output.
|
|
173
|
+
2. Summarize product, delivery, technical, risk, and already-built signals into
|
|
174
|
+
`.godpowers/prep/IMPORTED-CONTEXT.md` using `templates/IMPORTED-CONTEXT.md`.
|
|
175
|
+
3. Label every imported claim as `[HYPOTHESIS]` unless the user directly stated
|
|
176
|
+
it during this session.
|
|
177
|
+
4. Record source paths and confidence so downstream agents can decide how much
|
|
178
|
+
weight to give each signal.
|
|
179
|
+
5. If imported context conflicts with Godpowers state, user intent, or a
|
|
180
|
+
completed Godpowers artifact, keep the Godpowers artifact as authoritative
|
|
181
|
+
and add an `[OPEN QUESTION]` to imported context.
|
|
182
|
+
|
|
183
|
+
Downstream planning agents may read this artifact. They must cite it as
|
|
184
|
+
supporting evidence only.
|
|
185
|
+
|
|
141
186
|
## Routing-Driven Decisions
|
|
142
187
|
|
|
143
188
|
For routing decisions, consult `<runtimeRoot>/routing/<command>.yaml` files.
|
package/agents/god-pm.md
CHANGED
|
@@ -29,6 +29,26 @@ required sections:
|
|
|
29
29
|
7. **Appetite** (time/resource/technical constraints)
|
|
30
30
|
8. **Open Questions** (with owner and due date)
|
|
31
31
|
|
|
32
|
+
## Imported Preparation Context
|
|
33
|
+
|
|
34
|
+
If `.godpowers/prep/INITIAL-FINDINGS.md` exists, read it first so the PRD
|
|
35
|
+
reflects what Godpowers observed during init: codebase shape, tests, docs,
|
|
36
|
+
risks, and methodology systems detected.
|
|
37
|
+
|
|
38
|
+
If `.godpowers/prep/IMPORTED-CONTEXT.md` exists, read it before drafting the
|
|
39
|
+
PRD. Use product signals from GSD, Superpowers, BMAD, or similar systems as
|
|
40
|
+
hypothesis-level input only.
|
|
41
|
+
|
|
42
|
+
Rules:
|
|
43
|
+
- Do not copy imported text wholesale into the PRD.
|
|
44
|
+
- Do not treat imported context as source of truth.
|
|
45
|
+
- Convert relevant imported product signals into `[HYPOTHESIS]` requirements,
|
|
46
|
+
success metrics, scope notes, no-gos, or open questions.
|
|
47
|
+
- If imported context conflicts with user intent or existing Godpowers state,
|
|
48
|
+
preserve the Godpowers state and add an `[OPEN QUESTION]`.
|
|
49
|
+
- In PRD rationale, mention the source only when it materially changes a
|
|
50
|
+
requirement.
|
|
51
|
+
|
|
32
52
|
## Quality Gates
|
|
33
53
|
|
|
34
54
|
Run these checks on every section before declaring done:
|
package/agents/god-roadmapper.md
CHANGED
|
@@ -16,6 +16,27 @@ Sequence the work.
|
|
|
16
16
|
## Gate Check
|
|
17
17
|
|
|
18
18
|
`.godpowers/arch/ARCH.md` MUST exist and pass have-nots.
|
|
19
|
+
Optional: `.godpowers/prep/INITIAL-FINDINGS.md` may exist as preparation
|
|
20
|
+
context.
|
|
21
|
+
Optional: `.godpowers/prep/IMPORTED-CONTEXT.md` may exist as preparation
|
|
22
|
+
context.
|
|
23
|
+
|
|
24
|
+
## Imported Preparation Context
|
|
25
|
+
|
|
26
|
+
If `.godpowers/prep/INITIAL-FINDINGS.md` exists, read it first for repo risks,
|
|
27
|
+
existing tests, docs, CI, deploy, and suggested sequencing implications.
|
|
28
|
+
|
|
29
|
+
If `.godpowers/prep/IMPORTED-CONTEXT.md` exists, read its delivery signals
|
|
30
|
+
before sequencing milestones. Use imported GSD, Superpowers, BMAD, or similar
|
|
31
|
+
stories and plans as hypothesis-level input only.
|
|
32
|
+
|
|
33
|
+
Rules:
|
|
34
|
+
- Do not add roadmap features that are not grounded in the PRD.
|
|
35
|
+
- Use imported milestones, stories, and done-work signals to inform ordering,
|
|
36
|
+
dependency edges, and open questions.
|
|
37
|
+
- If imported context conflicts with PRD or ARCH, PRD and ARCH win.
|
|
38
|
+
- Mark any imported sequencing assumption as `[HYPOTHESIS]` until confirmed by
|
|
39
|
+
Godpowers artifacts or the user.
|
|
19
40
|
|
|
20
41
|
## Process
|
|
21
42
|
|
|
@@ -15,6 +15,25 @@ Pick the technology stack.
|
|
|
15
15
|
## Gate Check
|
|
16
16
|
|
|
17
17
|
`.godpowers/arch/ARCH.md` MUST exist.
|
|
18
|
+
Optional: `.godpowers/prep/INITIAL-FINDINGS.md` may exist as preparation
|
|
19
|
+
context.
|
|
20
|
+
Optional: `.godpowers/prep/IMPORTED-CONTEXT.md` may exist as preparation
|
|
21
|
+
context.
|
|
22
|
+
|
|
23
|
+
## Imported Preparation Context
|
|
24
|
+
|
|
25
|
+
If `.godpowers/prep/INITIAL-FINDINGS.md` exists, read it first for direct
|
|
26
|
+
tooling, package manager, framework, runtime, CI, and deploy observations.
|
|
27
|
+
|
|
28
|
+
If `.godpowers/prep/IMPORTED-CONTEXT.md` exists, read its technical and stack
|
|
29
|
+
signals before scoring candidates. Use imported technology choices, constraints,
|
|
30
|
+
and team familiarity as hypothesis-level input only.
|
|
31
|
+
|
|
32
|
+
Rules:
|
|
33
|
+
- Do not let imported stack preference override ARCH NFRs or ADRs.
|
|
34
|
+
- Treat imported technology choices as candidate evidence, not decisions.
|
|
35
|
+
- If imported context conflicts with ARCH, ARCH wins and the conflict becomes a
|
|
36
|
+
stack open question.
|
|
18
37
|
|
|
19
38
|
## Process
|
|
20
39
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "godpowers",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.8",
|
|
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/routing/god-arch.yaml
CHANGED
package/routing/god-init.yaml
CHANGED
package/routing/god-mode.yaml
CHANGED
|
@@ -14,6 +14,9 @@ prerequisites:
|
|
|
14
14
|
execution:
|
|
15
15
|
spawns: [god-orchestrator]
|
|
16
16
|
context: fresh
|
|
17
|
+
reads:
|
|
18
|
+
- .godpowers/prep/INITIAL-FINDINGS.md
|
|
19
|
+
- .godpowers/prep/IMPORTED-CONTEXT.md
|
|
17
20
|
secondary-spawns: [god-pm, god-architect, god-roadmapper, god-stack-selector, god-repo-scaffolder, god-planner, god-executor, god-spec-reviewer, god-quality-reviewer, god-deploy-engineer, god-observability-engineer, god-harden-auditor, god-launch-strategist]
|
|
18
21
|
writes:
|
|
19
22
|
[]
|
package/routing/god-next.yaml
CHANGED
package/routing/god-prd.yaml
CHANGED
package/routing/god-roadmap.yaml
CHANGED
package/routing/god-stack.yaml
CHANGED
package/skills/god-init.md
CHANGED
|
@@ -30,6 +30,19 @@ needs to specify a mode.
|
|
|
30
30
|
- Look for org-level context (current dir + parent dirs):
|
|
31
31
|
- .godpowers/org-context.yaml
|
|
32
32
|
- Workspace configs that share standards
|
|
33
|
+
- Write `.godpowers/prep/INITIAL-FINDINGS.md` summarizing what Godpowers
|
|
34
|
+
observed about the repo, tooling, docs, tests, risks, and suggested next
|
|
35
|
+
command. This happens before `/god-prd`, `/god-next`, or `/god-mode`
|
|
36
|
+
continues.
|
|
37
|
+
- Look for adjacent planning-system context:
|
|
38
|
+
- GSD: `.gsd/`, `.planning/`, `GSD.md`, `gsd*.md`
|
|
39
|
+
- Superpowers: `.superpowers/`, `superpowers/`, `SUPERPOWERS.md`,
|
|
40
|
+
`.claude/skills/`, `.codex/skills/`
|
|
41
|
+
- BMAD: `.bmad-core/`, `bmad-core/`, `.bmad/`, `BMAD.md`,
|
|
42
|
+
`docs/prd.md`, `docs/architecture.md`, `docs/roadmap.md`
|
|
43
|
+
- If any are detected, summarize useful signals into
|
|
44
|
+
`.godpowers/prep/IMPORTED-CONTEXT.md` as preparation context.
|
|
45
|
+
Do not treat external planning-system files as source of truth.
|
|
33
46
|
|
|
34
47
|
3. **Announce findings in plain English** (no jargon):
|
|
35
48
|
- Empty dir + no org context: "Detected: empty directory. Starting fresh."
|
|
@@ -48,6 +61,9 @@ needs to specify a mode.
|
|
|
48
61
|
The orchestrator will:
|
|
49
62
|
- Run Mode Detection (announced in plain English; stored as A/B/C/E internally)
|
|
50
63
|
- Run Scale Detection (trivial/small/medium/large/enterprise)
|
|
64
|
+
- Write `.godpowers/prep/INITIAL-FINDINGS.md`
|
|
65
|
+
- Run planning-system context detection for GSD, Superpowers, and BMAD
|
|
66
|
+
- Write `.godpowers/prep/IMPORTED-CONTEXT.md` when useful context exists
|
|
51
67
|
- For brownfield: schedule archaeology + reconstruction as preflight
|
|
52
68
|
- For bluefield: load org-context as constraint
|
|
53
69
|
- Create directory structure
|
|
@@ -65,6 +81,9 @@ needs to specify a mode.
|
|
|
65
81
|
```
|
|
66
82
|
.godpowers/
|
|
67
83
|
PROGRESS.md
|
|
84
|
+
prep/
|
|
85
|
+
INITIAL-FINDINGS.md
|
|
86
|
+
IMPORTED-CONTEXT.md # only when GSD / Superpowers / BMAD context exists
|
|
68
87
|
prd/
|
|
69
88
|
arch/
|
|
70
89
|
adr/
|
|
@@ -99,6 +118,17 @@ needs to specify a mode.
|
|
|
99
118
|
|
|
100
119
|
`.godpowers/PROGRESS.md` created with initial state.
|
|
101
120
|
|
|
121
|
+
Always create `.godpowers/prep/INITIAL-FINDINGS.md`. This is Godpowers'
|
|
122
|
+
durable answer to "what did init find in this codebase?" It captures codebase
|
|
123
|
+
shape, framework and tooling signals, tests, CI, docs, AI-tool files, detected
|
|
124
|
+
methodology systems, risk signals, and the reasoning behind the suggested next
|
|
125
|
+
command.
|
|
126
|
+
|
|
127
|
+
If GSD, Superpowers, BMAD, or similar planning context is detected, create
|
|
128
|
+
`.godpowers/prep/IMPORTED-CONTEXT.md`. This artifact is preparation context,
|
|
129
|
+
not source of truth. It feeds PRD, architecture, roadmap, and stack decisions
|
|
130
|
+
as hypothesis-level input only.
|
|
131
|
+
|
|
102
132
|
## AI-tool context (automatic for explicit init)
|
|
103
133
|
|
|
104
134
|
After PROGRESS.md is written, decide from the trigger phrase:
|
package/skills/god-mode.md
CHANGED
|
@@ -47,6 +47,9 @@ You are receiving a /god-mode invocation. Your job is to spawn the
|
|
|
47
47
|
- The detected mode (A/B/C/E)
|
|
48
48
|
- The active flags
|
|
49
49
|
- Instruction to read `.godpowers/PROGRESS.md` from disk if it exists
|
|
50
|
+
- Instruction to read `.godpowers/prep/INITIAL-FINDINGS.md` and
|
|
51
|
+
`.godpowers/prep/IMPORTED-CONTEXT.md` if present before choosing the
|
|
52
|
+
first planning or build step
|
|
50
53
|
|
|
51
54
|
6. Orchestrator runs the appropriate workflow:
|
|
52
55
|
- Greenfield -> full-arc
|
package/skills/god-next.md
CHANGED
|
@@ -39,6 +39,12 @@ if any are missing.
|
|
|
39
39
|
User just ran /god-next. Auto-detects current project phase and suggests
|
|
40
40
|
the next logical command.
|
|
41
41
|
|
|
42
|
+
Before suggesting, read `.godpowers/prep/INITIAL-FINDINGS.md` and
|
|
43
|
+
`.godpowers/prep/IMPORTED-CONTEXT.md` if present. Use them to explain why the
|
|
44
|
+
next step is safe or why a migration-aware step such as `/god-prd`,
|
|
45
|
+
`/god-map-codebase`, or `/god-mode` is better. Prep artifacts are context only;
|
|
46
|
+
state.json and completed Godpowers artifacts remain authoritative.
|
|
47
|
+
|
|
42
48
|
## Process for Mode 1 (post-completion)
|
|
43
49
|
|
|
44
50
|
```
|
package/skills/god-prd.md
CHANGED
|
@@ -14,10 +14,13 @@ Spawn the **god-pm** agent in a fresh context via Task tool.
|
|
|
14
14
|
## Setup
|
|
15
15
|
|
|
16
16
|
1. If `.godpowers/PROGRESS.md` does not exist: tell the user to run `/god-init` first
|
|
17
|
-
2.
|
|
18
|
-
3.
|
|
19
|
-
4.
|
|
20
|
-
|
|
17
|
+
2. Read `.godpowers/prep/INITIAL-FINDINGS.md` if present.
|
|
18
|
+
3. Read `.godpowers/prep/IMPORTED-CONTEXT.md` if present.
|
|
19
|
+
4. Spawn god-pm with the user's project description from PROGRESS.md plus any
|
|
20
|
+
prep artifacts. Prep artifacts are context, not source of truth.
|
|
21
|
+
5. The agent writes `.godpowers/prd/PRD.md`
|
|
22
|
+
6. The agent runs have-nots checks before declaring done
|
|
23
|
+
7. If god-pm pauses for a human question: relay to user using pause format
|
|
21
24
|
|
|
22
25
|
## Verification
|
|
23
26
|
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Imported Preparation Context
|
|
2
|
+
|
|
3
|
+
> This artifact captures non-authoritative context imported from adjacent
|
|
4
|
+
> planning systems. Godpowers artifacts remain the source of truth after they
|
|
5
|
+
> are created.
|
|
6
|
+
|
|
7
|
+
## Sources Detected
|
|
8
|
+
|
|
9
|
+
- [DECISION] Source system: [GSD / Superpowers / BMAD / other].
|
|
10
|
+
- [DECISION] Source path: [relative path].
|
|
11
|
+
- [HYPOTHESIS] Useful signal: [what this source appears to clarify].
|
|
12
|
+
- [HYPOTHESIS] Confidence: [high / medium / low] because [brief reason].
|
|
13
|
+
|
|
14
|
+
## Product Signals For PRD
|
|
15
|
+
|
|
16
|
+
- [HYPOTHESIS] User or persona signal: [imported detail].
|
|
17
|
+
- [HYPOTHESIS] Problem or outcome signal: [imported detail].
|
|
18
|
+
- [HYPOTHESIS] Scope or no-go signal: [imported detail].
|
|
19
|
+
- [OPEN QUESTION] Imported product ambiguity: [question] -- Owner: user -- Due: before /god-prd.
|
|
20
|
+
|
|
21
|
+
## Delivery Signals For Roadmap
|
|
22
|
+
|
|
23
|
+
- [HYPOTHESIS] Existing milestone or story signal: [imported detail].
|
|
24
|
+
- [HYPOTHESIS] Dependency or sequencing signal: [imported detail].
|
|
25
|
+
- [HYPOTHESIS] Done or already-built signal: [imported detail].
|
|
26
|
+
- [OPEN QUESTION] Imported delivery ambiguity: [question] -- Owner: user -- Due: before /god-roadmap.
|
|
27
|
+
|
|
28
|
+
## Technical Signals For Architecture And Stack
|
|
29
|
+
|
|
30
|
+
- [HYPOTHESIS] Architecture or integration signal: [imported detail].
|
|
31
|
+
- [HYPOTHESIS] Technology or constraint signal: [imported detail].
|
|
32
|
+
- [HYPOTHESIS] Risk or compliance signal: [imported detail].
|
|
33
|
+
- [OPEN QUESTION] Imported technical ambiguity: [question] -- Owner: user -- Due: before /god-arch.
|
|
34
|
+
|
|
35
|
+
## Use Rules
|
|
36
|
+
|
|
37
|
+
- [DECISION] Godpowers agents may use this artifact as preparation context only.
|
|
38
|
+
- [DECISION] This artifact must not override `.godpowers/intent.yaml`, `.godpowers/state.json`, `PROGRESS.md`, or any completed Godpowers artifact.
|
|
39
|
+
- [DECISION] If imported context conflicts with user intent or a Godpowers artifact, the Godpowers artifact wins and the conflict becomes an open question.
|
|
40
|
+
- [DECISION] PRD, architecture, roadmap, and stack agents should cite imported signals as `[HYPOTHESIS]` until confirmed by Godpowers artifacts or the user.
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Initial Findings
|
|
2
|
+
|
|
3
|
+
> This artifact records what Godpowers observed during `/god-init`. It is
|
|
4
|
+
> preparation documentation for planning, routing, and migration. Godpowers
|
|
5
|
+
> state and completed artifacts remain authoritative after they exist.
|
|
6
|
+
|
|
7
|
+
## Codebase Shape
|
|
8
|
+
|
|
9
|
+
- [HYPOTHESIS] Project type: [greenfield / brownfield / bluefield / audit].
|
|
10
|
+
- [HYPOTHESIS] Scale: [trivial / small / medium / large / enterprise].
|
|
11
|
+
- [HYPOTHESIS] Primary language or runtime: [detected value].
|
|
12
|
+
- [HYPOTHESIS] Framework or app model: [detected value].
|
|
13
|
+
- [HYPOTHESIS] Package manager or build tool: [detected value].
|
|
14
|
+
|
|
15
|
+
## Repo Signals
|
|
16
|
+
|
|
17
|
+
- [HYPOTHESIS] Source directories found: [paths].
|
|
18
|
+
- [HYPOTHESIS] Test signals found: [paths or "none detected"].
|
|
19
|
+
- [HYPOTHESIS] CI or release signals found: [paths or "none detected"].
|
|
20
|
+
- [HYPOTHESIS] Deployment signals found: [paths or "none detected"].
|
|
21
|
+
- [HYPOTHESIS] Documentation signals found: [paths or "none detected"].
|
|
22
|
+
|
|
23
|
+
## Methodology And AI Tool Signals
|
|
24
|
+
|
|
25
|
+
- [HYPOTHESIS] AI instruction files found: [paths or "none detected"].
|
|
26
|
+
- [HYPOTHESIS] GSD context found: [paths or "none detected"].
|
|
27
|
+
- [HYPOTHESIS] Superpowers context found: [paths or "none detected"].
|
|
28
|
+
- [HYPOTHESIS] BMAD context found: [paths or "none detected"].
|
|
29
|
+
- [HYPOTHESIS] Imported context artifact: [.godpowers/prep/IMPORTED-CONTEXT.md or "not created"].
|
|
30
|
+
|
|
31
|
+
## Planning Implications
|
|
32
|
+
|
|
33
|
+
- [HYPOTHESIS] PRD should pay attention to: [product or user signal].
|
|
34
|
+
- [HYPOTHESIS] Architecture should pay attention to: [technical or risk signal].
|
|
35
|
+
- [HYPOTHESIS] Roadmap should pay attention to: [delivery or dependency signal].
|
|
36
|
+
- [HYPOTHESIS] Stack should pay attention to: [tooling or constraint signal].
|
|
37
|
+
|
|
38
|
+
## Risks And Unknowns
|
|
39
|
+
|
|
40
|
+
- [OPEN QUESTION] [Question raised by repo scan] -- Owner: user -- Due: before the relevant planning step.
|
|
41
|
+
- [HYPOTHESIS] Risk signal: [missing tests / unclear deploy path / stale docs / conflicting planning systems].
|
|
42
|
+
|
|
43
|
+
## Suggested Next
|
|
44
|
+
|
|
45
|
+
- [DECISION] Suggested next command: [/god-prd / /god-map-codebase / /god-mode / /god-next].
|
|
46
|
+
- [DECISION] Reason: [why this command is the safest next step based on findings].
|
|
47
|
+
|
|
48
|
+
## Use Rules
|
|
49
|
+
|
|
50
|
+
- [DECISION] Downstream agents may use this artifact as preparation context only.
|
|
51
|
+
- [DECISION] If this artifact conflicts with `.godpowers/intent.yaml`, `.godpowers/state.json`, `PROGRESS.md`, or a completed Godpowers artifact, the Godpowers artifact wins.
|
|
52
|
+
- [DECISION] Imported GSD, Superpowers, and BMAD signals must be converted into Godpowers-native artifacts, not preserved as parallel state.
|