godpowers 1.6.24 → 2.1.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/AGENTS.md +1 -1
- package/CHANGELOG.md +166 -0
- package/README.md +103 -8
- package/RELEASE.md +48 -50
- package/SKILL.md +9 -1
- package/agents/god-design-reviewer.md +6 -6
- package/agents/god-designer.md +1 -1
- package/agents/god-executor.md +23 -0
- package/agents/god-quality-reviewer.md +12 -1
- package/agents/god-spec-reviewer.md +10 -0
- package/bin/install.js +137 -655
- package/extensions/data-pack/manifest.yaml +1 -1
- package/extensions/data-pack/package.json +1 -1
- package/extensions/launch-pack/README.md +1 -1
- package/extensions/launch-pack/manifest.yaml +1 -1
- package/extensions/launch-pack/package.json +1 -1
- package/extensions/security-pack/manifest.yaml +1 -1
- package/extensions/security-pack/package.json +1 -1
- package/fixtures/quick-proof/manifest.json +19 -0
- package/fixtures/quick-proof/project/.godpowers/prep/INITIAL-FINDINGS.md +5 -0
- package/fixtures/quick-proof/project/.godpowers/state.json +69 -0
- package/fixtures/quick-proof/project/README.md +5 -0
- package/fixtures/quick-proof/project/package.json +6 -0
- package/lib/agent-browser-driver.js +13 -13
- package/lib/agent-cache.js +8 -1
- package/lib/agent-refs.js +161 -0
- package/lib/budget.js +25 -11
- package/lib/events.js +11 -4
- package/lib/extension-authoring.js +27 -0
- package/lib/feature-awareness.js +24 -0
- package/lib/fs-async.js +28 -0
- package/lib/installer-args.js +99 -0
- package/lib/installer-core.js +345 -0
- package/lib/installer-files.js +80 -0
- package/lib/installer-runtimes.js +112 -0
- package/lib/intent.js +111 -16
- package/lib/quick-proof.js +153 -0
- package/lib/release-surface-sync.js +8 -1
- package/lib/repo-surface-sync.js +9 -2
- package/lib/review-required.js +2 -1
- package/lib/router.js +23 -3
- package/lib/skill-surface.js +42 -0
- package/lib/state-lock.js +10 -0
- package/lib/state.js +101 -8
- package/lib/workflow-runner.js +42 -5
- package/package.json +7 -3
- package/references/HAVE-NOTS.md +4 -3
- package/references/orchestration/GOD-MODE-RUNBOOK.md +273 -0
- package/routing/god-arch.yaml +1 -1
- package/routing/god-build.yaml +1 -1
- package/skills/god-add-backlog.md +1 -1
- package/skills/god-agent-audit.md +2 -2
- package/skills/god-build.md +5 -3
- package/skills/god-context-scan.md +2 -3
- package/skills/god-design.md +2 -2
- package/skills/god-doctor.md +2 -2
- package/skills/god-extension-info.md +1 -1
- package/skills/god-help.md +4 -3
- package/skills/god-mode.md +10 -266
- package/skills/god-org-context.md +1 -1
- package/skills/god-repair.md +3 -3
- package/skills/god-review.md +9 -0
- package/skills/god-stories.md +1 -1
- package/skills/god-test-extension.md +1 -1
- package/skills/god-version.md +2 -2
|
@@ -42,6 +42,14 @@ Answer each with EVIDENCE from the code:
|
|
|
42
42
|
- Anything in the code that wasn't in the plan?
|
|
43
43
|
- If yes: was it necessary, or is it scope creep?
|
|
44
44
|
|
|
45
|
+
5. **Can every changed line trace to the request?**
|
|
46
|
+
- Does each file touched map to a plan item, acceptance criterion, failing
|
|
47
|
+
test, or cleanup caused by the implementation?
|
|
48
|
+
- Were unrelated comments, formatting, names, or neighboring abstractions
|
|
49
|
+
changed without a plan-backed reason?
|
|
50
|
+
- Did the executor add future options, broad configurability, or generic
|
|
51
|
+
interfaces that the current slice does not need?
|
|
52
|
+
|
|
45
53
|
## Output
|
|
46
54
|
|
|
47
55
|
Return verdict to orchestrator:
|
|
@@ -65,6 +73,8 @@ Return verdict to orchestrator:
|
|
|
65
73
|
- Every acceptance criterion has a corresponding test
|
|
66
74
|
- All edge cases from the plan are covered
|
|
67
75
|
- No scope creep without justification
|
|
76
|
+
- Every touched file has request-trace evidence
|
|
77
|
+
- No speculative flexibility or unrelated cleanup entered the diff
|
|
68
78
|
|
|
69
79
|
If FAIL: orchestrator returns the slice to god-executor with the failures.
|
|
70
80
|
If PASS: orchestrator spawns god-quality-reviewer next.
|