godpowers 3.0.1 → 3.11.0
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 +255 -2
- package/README.md +31 -14
- package/RELEASE.md +21 -33
- package/SKILL.md +71 -112
- package/bin/install.js +44 -0
- package/fixtures/gate/harden-pass/.godpowers/state.json +26 -0
- package/lib/README.md +1 -0
- package/lib/artifact-map.js +2 -1
- package/lib/cli-dispatch.js +449 -3
- package/lib/command-families.js +10 -2
- package/lib/evidence/.provenance.json +45 -0
- package/lib/evidence-import.js +147 -0
- package/lib/evidence.js +908 -0
- package/lib/gate.js +26 -15
- package/lib/install-profiles.js +4 -1
- package/lib/installer-args.js +241 -1
- package/lib/quarterback.js +183 -0
- package/lib/surface-profile.js +168 -0
- package/lib/work-report.js +137 -0
- package/package.json +2 -2
- package/references/orchestration/GOD-MODE-RUNBOOK.md +9 -14
- package/references/orchestration/GOD-ORCHESTRATOR-RUNBOOK.md +40 -82
- package/references/shared/DASHBOARD-CONTRACT.md +66 -29
- package/references/shared/README.md +1 -1
- package/routing/god-demo.yaml +35 -0
- package/routing/god-first-run.yaml +34 -0
- package/routing/god-surface.yaml +39 -0
- package/routing/recipes/try-safely.yaml +26 -0
- package/skills/god-agent-audit.md +5 -6
- package/skills/god-archaeology.md +5 -6
- package/skills/god-audit.md +6 -7
- package/skills/god-automation-setup.md +6 -7
- package/skills/god-automation-status.md +6 -7
- package/skills/god-context-scan.md +7 -8
- package/skills/god-demo.md +53 -0
- package/skills/god-design-impact.md +5 -6
- package/skills/god-discuss.md +5 -6
- package/skills/god-docs.md +5 -10
- package/skills/god-doctor.md +8 -9
- package/skills/god-dogfood.md +7 -10
- package/skills/god-explore.md +5 -7
- package/skills/god-first-run.md +64 -0
- package/skills/god-harden.md +5 -2
- package/skills/god-help.md +77 -51
- package/skills/god-hygiene.md +5 -6
- package/skills/god-lifecycle.md +11 -13
- package/skills/god-list-assumptions.md +7 -8
- package/skills/god-locate.md +7 -8
- package/skills/god-map-codebase.md +5 -6
- package/skills/god-migrate.md +6 -15
- package/skills/god-next.md +16 -17
- package/skills/god-preflight.md +7 -8
- package/skills/god-progress.md +7 -8
- package/skills/god-reconcile.md +5 -6
- package/skills/god-reconstruct.md +5 -7
- package/skills/god-refactor.md +6 -7
- package/skills/god-roadmap-check.md +6 -7
- package/skills/god-scan.md +5 -9
- package/skills/god-spike.md +5 -6
- package/skills/god-standards.md +5 -6
- package/skills/god-status.md +12 -10
- package/skills/god-surface.md +61 -0
- package/skills/god-sync.md +4 -8
- package/skills/god-tech-debt.md +5 -6
- package/skills/god-test-runtime.md +4 -8
- package/skills/god-version.md +1 -1
- package/skills/god.md +53 -52
|
@@ -1,16 +1,52 @@
|
|
|
1
1
|
# Godpowers Dashboard Contract
|
|
2
2
|
|
|
3
|
-
This reference owns the shared
|
|
3
|
+
This reference owns the shared closeout shape for `/god-status`, `/god-next`,
|
|
4
|
+
`/god-mode` closeouts, and completed command closeouts.
|
|
4
5
|
|
|
5
|
-
## Runtime
|
|
6
|
+
## Runtime Source
|
|
6
7
|
|
|
7
|
-
Prefer `lib/dashboard.js` for
|
|
8
|
+
Prefer `lib/dashboard.js` for status computation. Call
|
|
9
|
+
`dashboard.compute(projectRoot)`, then render a compact action brief unless the
|
|
10
|
+
user asks for `/god-status --full` or passes a verbose flag.
|
|
8
11
|
|
|
9
|
-
If the runtime module is unavailable, use a manual disk scan
|
|
12
|
+
If the runtime module is unavailable, use a manual disk scan quietly. Mention
|
|
13
|
+
the fallback only when it changes the recommendation, then suggest
|
|
14
|
+
`/god-doctor`.
|
|
10
15
|
|
|
11
|
-
Never mix workflow progress with audit, hygiene, remediation, or
|
|
16
|
+
Never mix workflow progress with audit, hygiene, remediation, or
|
|
17
|
+
launch-readiness scores. Label those scores separately when they appear.
|
|
12
18
|
|
|
13
|
-
##
|
|
19
|
+
## Default Closeout
|
|
20
|
+
|
|
21
|
+
Completed work, proposals, diagnostics, lifecycle views, and status summaries
|
|
22
|
+
use this shape by default:
|
|
23
|
+
|
|
24
|
+
```text
|
|
25
|
+
<one sentence describing the result or current position>
|
|
26
|
+
|
|
27
|
+
Changed:
|
|
28
|
+
- <highest-signal user-visible change>
|
|
29
|
+
- <highest-signal user-visible change>
|
|
30
|
+
|
|
31
|
+
Validation:
|
|
32
|
+
- <command>: <result>
|
|
33
|
+
|
|
34
|
+
Attention:
|
|
35
|
+
- <only blockers or signals that change the recommendation>
|
|
36
|
+
|
|
37
|
+
Next commands:
|
|
38
|
+
- <recommended command>: <one sentence reason>
|
|
39
|
+
- /god-status --full: See the complete dashboard and proactive checks.
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Omit empty sections. Do not render rows that only say `fresh`, `clear`,
|
|
43
|
+
`none`, or `not-applicable`.
|
|
44
|
+
|
|
45
|
+
## Full Dashboard
|
|
46
|
+
|
|
47
|
+
The full dashboard is available on request through `/god-status --full` and in
|
|
48
|
+
release-gate evidence. It may also appear when a user explicitly asks for all
|
|
49
|
+
status details.
|
|
14
50
|
|
|
15
51
|
```text
|
|
16
52
|
Godpowers Dashboard
|
|
@@ -43,13 +79,6 @@ Deliverable progress:
|
|
|
43
79
|
Increments: <done> done, <building> building, <pending> pending
|
|
44
80
|
Ledger: .godpowers/REQUIREMENTS.md
|
|
45
81
|
|
|
46
|
-
What changed:
|
|
47
|
-
1. <highest-signal user-visible change>
|
|
48
|
-
2. <highest-signal user-visible change>
|
|
49
|
-
|
|
50
|
-
Validation:
|
|
51
|
-
+ <command>: <result>
|
|
52
|
-
|
|
53
82
|
Proactive checks:
|
|
54
83
|
Checkpoint: <fresh | refreshed | missing | stale | conflicts with state.json>
|
|
55
84
|
Reviews: <none | N pending, suggest /god-review-changes>
|
|
@@ -57,7 +86,7 @@ Proactive checks:
|
|
|
57
86
|
Docs: <fresh | N stale, suggest /god-docs | repo-doc-sync ran>
|
|
58
87
|
Repo surface: <fresh | N stale, suggest /god-doctor | repo-surface-sync ran>
|
|
59
88
|
Host: <full | degraded | unknown with host and first gap>
|
|
60
|
-
Runtime: <not-applicable | known URL, suggest /god-test-runtime | no known URL
|
|
89
|
+
Runtime: <not-applicable | known URL, suggest /god-test-runtime | no known URL>
|
|
61
90
|
Automation: <not configured | N active | available via provider, suggest /god-automation-setup>
|
|
62
91
|
Security: <clear | sensitive files changed, suggest /god-harden>
|
|
63
92
|
Dependencies: <clear | dependency files changed, suggest /god-update-deps>
|
|
@@ -66,28 +95,36 @@ Proactive checks:
|
|
|
66
95
|
Open items:
|
|
67
96
|
1. <deferred staging, unstaged files, pending review, blocker, or none>
|
|
68
97
|
|
|
69
|
-
Next:
|
|
70
|
-
|
|
71
|
-
|
|
98
|
+
Next commands:
|
|
99
|
+
- <recommended command>: <one sentence reason>
|
|
100
|
+
- /god-next: Recompute the state-derived next step.
|
|
72
101
|
```
|
|
73
102
|
|
|
74
|
-
##
|
|
103
|
+
## Next Commands
|
|
75
104
|
|
|
76
|
-
When a command only recommends work, end with this
|
|
105
|
+
When a command only recommends work, end with this block unless it already
|
|
106
|
+
launched the selected command.
|
|
77
107
|
|
|
78
108
|
```text
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
4. Inspect status: /god-status, /god-locate, or /god-next
|
|
84
|
-
Recommended: <one option and why>
|
|
109
|
+
Next commands:
|
|
110
|
+
- <best runnable command>: <plain sentence reason>
|
|
111
|
+
- <second runnable command>: <plain sentence reason>
|
|
112
|
+
- <third runnable command>: <plain sentence reason>
|
|
85
113
|
```
|
|
86
114
|
|
|
87
|
-
|
|
115
|
+
Use 1 to 4 commands. Put the recommendation first. Do not show abstract
|
|
116
|
+
implementation choices when a slash command can name the next move.
|
|
117
|
+
|
|
118
|
+
## Proactive Rules
|
|
88
119
|
|
|
89
|
-
`/god-status` is read-only by default, so Level 3 agent work becomes a
|
|
120
|
+
`/god-status` is read-only by default, so Level 3 agent work becomes a
|
|
121
|
+
suggestion unless the user asked it to continue work.
|
|
90
122
|
|
|
91
|
-
`/god-next` may run Level
|
|
123
|
+
`/god-next` may run Level 1 read-only checks by default. It may run Level 2
|
|
124
|
+
local helpers only when there is a direct trigger and no destructive effect.
|
|
125
|
+
Standalone `/god-next` turns Level 3 work into the recommended command.
|
|
92
126
|
|
|
93
|
-
Report checkpoint, review, sync, docs, repo surface, host, runtime, automation,
|
|
127
|
+
Report checkpoint, review, sync, docs, repo surface, host, runtime, automation,
|
|
128
|
+
security, dependency, and hygiene signals using the labels in the full
|
|
129
|
+
dashboard only when they affect the recommendation or the user asks for full
|
|
130
|
+
status.
|
|
@@ -8,7 +8,7 @@ Cross-tier reference content used by multiple agents.
|
|
|
8
8
|
- [ORCHESTRATORS.md](ORCHESTRATORS.md): composition patterns with other AI
|
|
9
9
|
coding workflow systems, including migration and managed sync-back.
|
|
10
10
|
- [GLOSSARY.md](GLOSSARY.md): standardized vocabulary across tiers.
|
|
11
|
-
- [DASHBOARD-CONTRACT.md](DASHBOARD-CONTRACT.md): shared dashboard and
|
|
11
|
+
- [DASHBOARD-CONTRACT.md](DASHBOARD-CONTRACT.md): shared dashboard and `Next commands:` output contract.
|
|
12
12
|
- [LOCKING.md](LOCKING.md): shared state-lock contract for mutating commands.
|
|
13
13
|
|
|
14
14
|
## Planned content
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
apiVersion: godpowers/v1
|
|
2
|
+
kind: CommandRouting
|
|
3
|
+
metadata:
|
|
4
|
+
command: /god-demo
|
|
5
|
+
description: Safe sandbox proof
|
|
6
|
+
tier: 0
|
|
7
|
+
family: start
|
|
8
|
+
|
|
9
|
+
prerequisites:
|
|
10
|
+
required:
|
|
11
|
+
[]
|
|
12
|
+
|
|
13
|
+
execution:
|
|
14
|
+
spawns: [built-in]
|
|
15
|
+
context: fresh
|
|
16
|
+
reads:
|
|
17
|
+
- fixtures/quick-proof/project/.godpowers/state.json
|
|
18
|
+
- fixtures/quick-proof/manifest.json
|
|
19
|
+
writes:
|
|
20
|
+
[]
|
|
21
|
+
|
|
22
|
+
success-path:
|
|
23
|
+
next-recommended: /god-first-run
|
|
24
|
+
outcome:
|
|
25
|
+
type: deterministic
|
|
26
|
+
label: Sandbox proof rendered
|
|
27
|
+
reason: The shipped quick-proof fixture can be inspected without modifying the project.
|
|
28
|
+
allowed-next: [/god-first-run, /god-init, /god-status]
|
|
29
|
+
|
|
30
|
+
failure-path:
|
|
31
|
+
on-error: /god-doctor
|
|
32
|
+
|
|
33
|
+
endoff:
|
|
34
|
+
state-update: tier-0 updated for /god-demo
|
|
35
|
+
events: [agent.start, agent.end]
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
apiVersion: godpowers/v1
|
|
2
|
+
kind: CommandRouting
|
|
3
|
+
metadata:
|
|
4
|
+
command: /god-first-run
|
|
5
|
+
description: Guided first 10 minute onboarding
|
|
6
|
+
tier: 0
|
|
7
|
+
family: start
|
|
8
|
+
|
|
9
|
+
prerequisites:
|
|
10
|
+
required:
|
|
11
|
+
[]
|
|
12
|
+
|
|
13
|
+
execution:
|
|
14
|
+
spawns: [built-in]
|
|
15
|
+
context: fresh
|
|
16
|
+
reads:
|
|
17
|
+
- .godpowers/state.json
|
|
18
|
+
writes:
|
|
19
|
+
[]
|
|
20
|
+
|
|
21
|
+
success-path:
|
|
22
|
+
next-recommended: varies
|
|
23
|
+
outcome:
|
|
24
|
+
type: contextual
|
|
25
|
+
label: Context-specific next route
|
|
26
|
+
reason: The next route depends on whether Godpowers state exists.
|
|
27
|
+
allowed-next: [/god-demo, /god-init, /god-next, /god-help]
|
|
28
|
+
|
|
29
|
+
failure-path:
|
|
30
|
+
on-error: /god-doctor
|
|
31
|
+
|
|
32
|
+
endoff:
|
|
33
|
+
state-update: tier-0 updated for /god-first-run
|
|
34
|
+
events: [agent.start, agent.end]
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
apiVersion: godpowers/v1
|
|
2
|
+
kind: CommandRouting
|
|
3
|
+
metadata:
|
|
4
|
+
command: /god-surface
|
|
5
|
+
description: Runtime command surface profile switcher
|
|
6
|
+
tier: 0
|
|
7
|
+
family: configure
|
|
8
|
+
|
|
9
|
+
prerequisites:
|
|
10
|
+
required:
|
|
11
|
+
[]
|
|
12
|
+
|
|
13
|
+
execution:
|
|
14
|
+
spawns: [built-in]
|
|
15
|
+
context: fresh
|
|
16
|
+
reads:
|
|
17
|
+
- lib/install-profiles.js
|
|
18
|
+
- lib/surface-profile.js
|
|
19
|
+
writes:
|
|
20
|
+
- <runtime>/GODPOWERS_PROFILE when --apply is used
|
|
21
|
+
- <runtime>/skills/ when --apply is used
|
|
22
|
+
|
|
23
|
+
standards:
|
|
24
|
+
gate-on-failure: pause-for-user
|
|
25
|
+
|
|
26
|
+
success-path:
|
|
27
|
+
next-recommended: /god-help
|
|
28
|
+
outcome:
|
|
29
|
+
type: deterministic
|
|
30
|
+
label: Surface profile previewed or applied
|
|
31
|
+
reason: The selected install profile controls which slash commands are visible in the target runtime.
|
|
32
|
+
allowed-next: [/god-help, /god-help all, /god-status]
|
|
33
|
+
|
|
34
|
+
failure-path:
|
|
35
|
+
on-error: /god-doctor
|
|
36
|
+
|
|
37
|
+
endoff:
|
|
38
|
+
state-update: tier-0 updated for /god-surface
|
|
39
|
+
events: [agent.start, agent.end]
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
apiVersion: godpowers/v1
|
|
2
|
+
kind: Recipe
|
|
3
|
+
metadata:
|
|
4
|
+
name: try-safely
|
|
5
|
+
category: starting
|
|
6
|
+
description: "Try Godpowers in a safe sandbox before touching the repo"
|
|
7
|
+
|
|
8
|
+
triggers:
|
|
9
|
+
intent-keywords:
|
|
10
|
+
- "try safely"
|
|
11
|
+
- "safe demo"
|
|
12
|
+
- "show me a demo"
|
|
13
|
+
- "sandbox"
|
|
14
|
+
- "proof before setup"
|
|
15
|
+
- "first run demo"
|
|
16
|
+
|
|
17
|
+
sequences:
|
|
18
|
+
default:
|
|
19
|
+
description: "Try Godpowers in a safe sandbox before touching the repo"
|
|
20
|
+
steps:
|
|
21
|
+
- command: "/god-demo"
|
|
22
|
+
why: "Runs the shipped sandbox proof without modifying the current project"
|
|
23
|
+
- command: "/god-first-run"
|
|
24
|
+
why: "Continues with guided onboarding after the proof"
|
|
25
|
+
|
|
26
|
+
default-sequence: default
|
|
@@ -64,12 +64,11 @@ Warnings:
|
|
|
64
64
|
Infos: 97 missing-recommended-section suggestions across agents
|
|
65
65
|
(run with --json for full list)
|
|
66
66
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
Recommended: [one option and why]
|
|
67
|
+
Next commands:
|
|
68
|
+
- /god-agent-audit --fix: Fix the highest-priority approved agent contract issue.
|
|
69
|
+
- /god-agent-audit --fix for info-level placeholder sections only: Run the full recommended path.
|
|
70
|
+
- /god-discuss agent contract findings: Resolve the open question before continuing.
|
|
71
|
+
- /god-agent-audit --json: Inspect details before changing files.
|
|
73
72
|
```
|
|
74
73
|
|
|
75
74
|
## Backward-compatibility promise
|
|
@@ -46,10 +46,9 @@ Suggested next:
|
|
|
46
46
|
/god-tech-debt - assess and prioritize debt revealed
|
|
47
47
|
/god-feature - now safe to add new work with archaeology in hand
|
|
48
48
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
Recommended: /god-reconstruct when planning artifacts are missing or stale.
|
|
49
|
+
Next commands:
|
|
50
|
+
- /god-tech-debt for only the highest-risk areas: Run the smallest safe next step.
|
|
51
|
+
- /god-reconstruct then /god-audit for full brownfield alignment: Run the full recommended path.
|
|
52
|
+
- /god-discuss the open tribal-knowledge questions: Resolve the open question before continuing.
|
|
53
|
+
- /god-mode only after reconstruction or audit makes the state clear: Run the full autonomous project workflow when it fits.
|
|
55
54
|
```
|
package/skills/god-audit.md
CHANGED
|
@@ -52,15 +52,14 @@ After god-auditor returns:
|
|
|
52
52
|
1. Verify AUDIT-REPORT.md exists on disk
|
|
53
53
|
2. Display the summary table to the user
|
|
54
54
|
3. If any artifact scored below 80%: suggest re-running the failing tier
|
|
55
|
-
4. End with a
|
|
55
|
+
4. End with a Next commands block:
|
|
56
56
|
|
|
57
57
|
```
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
Recommended: [one option and why]
|
|
58
|
+
Next commands:
|
|
59
|
+
- /god-redo [tier]: Rerun the single lowest-scoring tier or fix the top finding.
|
|
60
|
+
- /god-audit: Re-run audit after failing tiers are repaired in priority order.
|
|
61
|
+
- /god-discuss audit remediation plan: Resolve the open question before continuing.
|
|
62
|
+
- /god-mode only when the audit has no blocking findings: Run the full autonomous project workflow when it fits.
|
|
64
63
|
```
|
|
65
64
|
|
|
66
65
|
## Output Format
|
|
@@ -129,15 +129,14 @@ Approval required:
|
|
|
129
129
|
- Confirm any host-native schedule, routine, background agent, API trigger, or connector scope
|
|
130
130
|
```
|
|
131
131
|
|
|
132
|
-
##
|
|
132
|
+
## Next Commands Closeout
|
|
133
133
|
|
|
134
134
|
End with:
|
|
135
135
|
|
|
136
136
|
```text
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
Recommended: <one option tied to provider capability and user risk>
|
|
137
|
+
Next commands:
|
|
138
|
+
- /god-automation-setup: Create one approved read-only automation.
|
|
139
|
+
- /god-automation-setup --all-safe: Create all approved safe read-only automations.
|
|
140
|
+
- /god-discuss automation policy: Tune provider, cadence, or safety rules.
|
|
141
|
+
- /god-automation-status: Inspect status before continuing.
|
|
143
142
|
```
|
|
@@ -59,17 +59,16 @@ Safety rules:
|
|
|
59
59
|
- Default templates are read-only.
|
|
60
60
|
```
|
|
61
61
|
|
|
62
|
-
##
|
|
62
|
+
## Next Commands Closeout
|
|
63
63
|
|
|
64
64
|
End with:
|
|
65
65
|
|
|
66
66
|
```text
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
Recommended: <one option tied to the detected provider>
|
|
67
|
+
Next commands:
|
|
68
|
+
- /god-automation-setup for one safe read-only template: Run the smallest safe next step.
|
|
69
|
+
- /god-automation-setup for all safe templates supported by the current host: Run the full recommended path.
|
|
70
|
+
- /god-discuss automation policy and provider choice: Resolve the open question before continuing.
|
|
71
|
+
- /god-status to see project progress and automation status together: Inspect status before continuing.
|
|
73
72
|
```
|
|
74
73
|
|
|
75
74
|
If no provider is available, recommend manual `/god-next` or
|
|
@@ -88,17 +88,16 @@ Suggested next:
|
|
|
88
88
|
2. Accept the 2 new todos: /god-check-todos
|
|
89
89
|
```
|
|
90
90
|
|
|
91
|
-
##
|
|
91
|
+
## Next Commands Closeout
|
|
92
92
|
|
|
93
|
-
End every context scan report with a
|
|
93
|
+
End every context scan report with a Next commands block:
|
|
94
94
|
|
|
95
95
|
```
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
Recommended: [one option and why]
|
|
96
|
+
Next commands:
|
|
97
|
+
- /god-locate: Re-orient from checkpoint and disk state.
|
|
98
|
+
- /god-repair: Resolve state drift before continuing.
|
|
99
|
+
- /god-discuss context drift: Resolve the open question before continuing.
|
|
100
|
+
- /god-status after re-orientation: Inspect status before continuing.
|
|
102
101
|
```
|
|
103
102
|
|
|
104
103
|
## What this does NOT do
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: god-demo
|
|
3
|
+
description: |
|
|
4
|
+
Run a safe Godpowers sandbox proof using the shipped quick-proof fixture.
|
|
5
|
+
Shows disk-derived state, missing artifacts, host guarantees, and the next
|
|
6
|
+
command without modifying the user's project.
|
|
7
|
+
|
|
8
|
+
Triggers on: "god demo", "/god-demo", "show me a demo", "sandbox",
|
|
9
|
+
"try godpowers safely"
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# /god-demo
|
|
13
|
+
|
|
14
|
+
Show a safe sandbox proof before the user touches their project. This command
|
|
15
|
+
uses the shipped quick-proof fixture and does not write to the user's project.
|
|
16
|
+
|
|
17
|
+
## Process
|
|
18
|
+
|
|
19
|
+
1. Resolve `<runtimeRoot>/lib/quick-proof.js`.
|
|
20
|
+
2. Call `quickProof.compute(projectRoot)`.
|
|
21
|
+
3. Render `quickProof.render(result, { brief: true })` by default.
|
|
22
|
+
4. If the user asks for full detail, render without `brief`.
|
|
23
|
+
5. End with `Next commands:`.
|
|
24
|
+
|
|
25
|
+
## Output Shape
|
|
26
|
+
|
|
27
|
+
```text
|
|
28
|
+
The sandbox proof read a shipped fixture from disk and computed the next command without changing this repo.
|
|
29
|
+
|
|
30
|
+
Changed:
|
|
31
|
+
- No project files were modified.
|
|
32
|
+
|
|
33
|
+
Validation:
|
|
34
|
+
- quick-proof fixture: rendered disk state, missing PRD, host guarantees, and next command.
|
|
35
|
+
|
|
36
|
+
Next commands:
|
|
37
|
+
- /god-first-run: Continue the guided first-run path.
|
|
38
|
+
- /god-init: Initialize Godpowers in this project.
|
|
39
|
+
- /god-status --full: Inspect full status once a project exists.
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Terminal Equivalent
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
npx godpowers demo --project=.
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## Rules
|
|
49
|
+
|
|
50
|
+
- Never write to the current project.
|
|
51
|
+
- Prefer compact proof output.
|
|
52
|
+
- Keep fixture state separate from the user's project state.
|
|
53
|
+
- Mention host guarantees separately from fixture progress.
|
|
@@ -66,12 +66,11 @@ Transitive (depth 2):
|
|
|
66
66
|
Recommendation: Run /god-design with this change to apply.
|
|
67
67
|
god-design-reviewer will gate via two-stage review.
|
|
68
68
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
Recommended: apply the smallest design change first when severity is warning
|
|
69
|
+
Next commands:
|
|
70
|
+
- /god-design for only the lowest-risk token or component change: Run the smallest safe next step.
|
|
71
|
+
- /god-design with the full proposed change: Run the full recommended path.
|
|
72
|
+
- /god-discuss the design tradeoff before changing files: Resolve the open question before continuing.
|
|
73
|
+
- /god-mode only if this design change is part of a wider project run: Run the full autonomous project workflow when it fits.
|
|
75
74
|
or higher.
|
|
76
75
|
```
|
|
77
76
|
|
package/skills/god-discuss.md
CHANGED
|
@@ -73,10 +73,9 @@ Key findings:
|
|
|
73
73
|
|
|
74
74
|
Suggested next: [the planning command this discussion was for]
|
|
75
75
|
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
Recommended: [one option and why]
|
|
76
|
+
Next commands:
|
|
77
|
+
- /god-next: Continue with the safest command that uses this discussion.
|
|
78
|
+
- /god-mode [scope]: Run the full command that consumes this brief when safe.
|
|
79
|
+
- /god-discuss [specific unresolved question]: Resolve the open question before continuing.
|
|
80
|
+
- /god-mode [scope] if the user wants autonomous execution: Run the full autonomous project workflow when it fits.
|
|
82
81
|
```
|
package/skills/god-docs.md
CHANGED
|
@@ -69,20 +69,15 @@ Godpowers may invoke docs work proactively in two ways:
|
|
|
69
69
|
| Repo structural surface drift | Run `lib/repo-surface-sync.run` and include findings in docs scope | Do not invent routing or agent ownership prose without evidence |
|
|
70
70
|
| `REVIEW-REQUIRED.md` contains docs drift items | Suggest `/god-review-changes` first | Do not auto-clear review items |
|
|
71
71
|
|
|
72
|
-
When auto-invoked, show:
|
|
72
|
+
When auto-invoked, show a concise default note:
|
|
73
73
|
|
|
74
74
|
```text
|
|
75
|
-
|
|
76
|
-
Trigger: docs and code changed in the same workflow
|
|
77
|
-
Agent: god-docs-writer
|
|
78
|
-
Local syncs:
|
|
79
|
-
+ repo-doc-sync: <safe mechanical fixes, prose review needed, or no-op>
|
|
80
|
-
+ repo-surface-sync: <structural surface fresh, scoped findings, or no-op>
|
|
81
|
-
+ docs-drift-check: <N claims checked, N drift items>
|
|
82
|
-
Artifacts: .godpowers/docs/UPDATE-LOG.md or no-op
|
|
83
|
-
Log: .godpowers/docs/UPDATE-LOG.md
|
|
75
|
+
Checked docs against changed code. Details were written to .godpowers/docs/UPDATE-LOG.md.
|
|
84
76
|
```
|
|
85
77
|
|
|
78
|
+
Use a detailed `Auto-invoked:` card only with `--verbose` or release-gate
|
|
79
|
+
debugging.
|
|
80
|
+
|
|
86
81
|
## Have-Nots
|
|
87
82
|
|
|
88
83
|
Docs FAIL if:
|
package/skills/god-doctor.md
CHANGED
|
@@ -48,7 +48,7 @@ Plain-text report grouped by severity:
|
|
|
48
48
|
GODPOWERS DOCTOR
|
|
49
49
|
|
|
50
50
|
Install: claude (~/.claude/)
|
|
51
|
-
[OK]
|
|
51
|
+
[OK] 120 skills installed
|
|
52
52
|
[OK] 40 agents installed
|
|
53
53
|
[OK] VERSION matches (2.3.1)
|
|
54
54
|
[WARN] routing/god-doctor.yaml exists but skill file did not until now
|
|
@@ -68,17 +68,16 @@ Suggested next steps:
|
|
|
68
68
|
2. /god-restore (review trash)
|
|
69
69
|
```
|
|
70
70
|
|
|
71
|
-
##
|
|
71
|
+
## Next Commands Closeout
|
|
72
72
|
|
|
73
|
-
End every human-readable doctor report with a
|
|
73
|
+
End every human-readable doctor report with a Next commands block:
|
|
74
74
|
|
|
75
75
|
```
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
Recommended: [one option and why it is safe]
|
|
76
|
+
Next commands:
|
|
77
|
+
- /god-doctor --fix: Run the safest approved repair category.
|
|
78
|
+
- /god-doctor --fix when all proposed fixes are safe categories: Run the full recommended path.
|
|
79
|
+
- /god-discuss [highest-risk warning or unclear repair]: Resolve the open question before continuing.
|
|
80
|
+
- /god-status after repair: Inspect status before continuing.
|
|
82
81
|
```
|
|
83
82
|
|
|
84
83
|
If the report contains errors that need manual repair, do not recommend
|
package/skills/god-dogfood.md
CHANGED
|
@@ -27,12 +27,12 @@ Run deterministic messy-repo scenarios before release or after automation change
|
|
|
27
27
|
1. Resolve the runtime root and load `lib/dogfood-runner.js`.
|
|
28
28
|
2. Run `dogfood.runAll()` against `fixtures/dogfood/`.
|
|
29
29
|
3. Report each scenario with pass or fail status.
|
|
30
|
-
4. If any scenario fails,
|
|
30
|
+
4. If any scenario fails, recommend the matching specialist with a concise note:
|
|
31
31
|
- `god-greenfieldifier` for planning-system import failures.
|
|
32
32
|
- `god-context-writer` for host capability or install surface failures.
|
|
33
33
|
- `god-coordinator` for extension authoring or suite release failures.
|
|
34
34
|
5. Do not edit user projects while running fixture scenarios.
|
|
35
|
-
6. End with
|
|
35
|
+
6. End with a compact action brief and make `/god-repair` the recommended
|
|
36
36
|
route when dogfood is red.
|
|
37
37
|
|
|
38
38
|
## CLI Equivalent
|
|
@@ -50,14 +50,11 @@ npx godpowers dogfood --json
|
|
|
50
50
|
- [DECISION] The dogfood suite includes extension scaffold validation.
|
|
51
51
|
- [DECISION] The dogfood suite includes a Mode D suite release dry-run.
|
|
52
52
|
|
|
53
|
-
##
|
|
53
|
+
## Automatic Work Note
|
|
54
54
|
|
|
55
55
|
```text
|
|
56
|
-
|
|
57
|
-
Trigger: /god-dogfood scenario failure
|
|
58
|
-
Agent: <god-greenfieldifier | god-context-writer | god-coordinator | none, local runtime only>
|
|
59
|
-
Local syncs:
|
|
60
|
-
+ dogfood-runner: <pass, fail, or skipped reason>
|
|
61
|
-
Artifacts: fixture-only unless repair is explicitly requested
|
|
62
|
-
Log: none
|
|
56
|
+
Dogfood scenarios finished. Fixture details stayed in the run output unless repair was explicitly requested.
|
|
63
57
|
```
|
|
58
|
+
|
|
59
|
+
Use a detailed `Auto-invoked:` card only with `--verbose` or release-gate
|
|
60
|
+
debugging.
|
package/skills/god-explore.md
CHANGED
|
@@ -48,11 +48,9 @@ Idea explored. Suggested framing:
|
|
|
48
48
|
Suggested next: /god-init (commit to this framing) or /god-explore again
|
|
49
49
|
(if you want to try another angle)
|
|
50
50
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
Recommended: /god-init when the framing feels stable enough to turn into
|
|
57
|
-
requirements.
|
|
51
|
+
Next commands:
|
|
52
|
+
- /god-init with this framing and stop after PRD: Run the smallest safe next step.
|
|
53
|
+
- /god-mode with this framing for the full project run: Run the full recommended path.
|
|
54
|
+
- /god-explore again with the weakest assumption: Resolve the open question before continuing.
|
|
55
|
+
- /god-mode if the user is ready to build now: Run the full autonomous project workflow when it fits.
|
|
58
56
|
```
|