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.
Files changed (65) hide show
  1. package/AGENTS.md +1 -1
  2. package/CHANGELOG.md +166 -0
  3. package/README.md +103 -8
  4. package/RELEASE.md +48 -50
  5. package/SKILL.md +9 -1
  6. package/agents/god-design-reviewer.md +6 -6
  7. package/agents/god-designer.md +1 -1
  8. package/agents/god-executor.md +23 -0
  9. package/agents/god-quality-reviewer.md +12 -1
  10. package/agents/god-spec-reviewer.md +10 -0
  11. package/bin/install.js +137 -655
  12. package/extensions/data-pack/manifest.yaml +1 -1
  13. package/extensions/data-pack/package.json +1 -1
  14. package/extensions/launch-pack/README.md +1 -1
  15. package/extensions/launch-pack/manifest.yaml +1 -1
  16. package/extensions/launch-pack/package.json +1 -1
  17. package/extensions/security-pack/manifest.yaml +1 -1
  18. package/extensions/security-pack/package.json +1 -1
  19. package/fixtures/quick-proof/manifest.json +19 -0
  20. package/fixtures/quick-proof/project/.godpowers/prep/INITIAL-FINDINGS.md +5 -0
  21. package/fixtures/quick-proof/project/.godpowers/state.json +69 -0
  22. package/fixtures/quick-proof/project/README.md +5 -0
  23. package/fixtures/quick-proof/project/package.json +6 -0
  24. package/lib/agent-browser-driver.js +13 -13
  25. package/lib/agent-cache.js +8 -1
  26. package/lib/agent-refs.js +161 -0
  27. package/lib/budget.js +25 -11
  28. package/lib/events.js +11 -4
  29. package/lib/extension-authoring.js +27 -0
  30. package/lib/feature-awareness.js +24 -0
  31. package/lib/fs-async.js +28 -0
  32. package/lib/installer-args.js +99 -0
  33. package/lib/installer-core.js +345 -0
  34. package/lib/installer-files.js +80 -0
  35. package/lib/installer-runtimes.js +112 -0
  36. package/lib/intent.js +111 -16
  37. package/lib/quick-proof.js +153 -0
  38. package/lib/release-surface-sync.js +8 -1
  39. package/lib/repo-surface-sync.js +9 -2
  40. package/lib/review-required.js +2 -1
  41. package/lib/router.js +23 -3
  42. package/lib/skill-surface.js +42 -0
  43. package/lib/state-lock.js +10 -0
  44. package/lib/state.js +101 -8
  45. package/lib/workflow-runner.js +42 -5
  46. package/package.json +7 -3
  47. package/references/HAVE-NOTS.md +4 -3
  48. package/references/orchestration/GOD-MODE-RUNBOOK.md +273 -0
  49. package/routing/god-arch.yaml +1 -1
  50. package/routing/god-build.yaml +1 -1
  51. package/skills/god-add-backlog.md +1 -1
  52. package/skills/god-agent-audit.md +2 -2
  53. package/skills/god-build.md +5 -3
  54. package/skills/god-context-scan.md +2 -3
  55. package/skills/god-design.md +2 -2
  56. package/skills/god-doctor.md +2 -2
  57. package/skills/god-extension-info.md +1 -1
  58. package/skills/god-help.md +4 -3
  59. package/skills/god-mode.md +10 -266
  60. package/skills/god-org-context.md +1 -1
  61. package/skills/god-repair.md +3 -3
  62. package/skills/god-review.md +9 -0
  63. package/skills/god-stories.md +1 -1
  64. package/skills/god-test-extension.md +1 -1
  65. 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.