godpowers 0.15.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 (444) hide show
  1. package/AGENTS.md +37 -0
  2. package/CHANGELOG.md +639 -0
  3. package/INSPIRATION.md +52 -0
  4. package/LICENSE +21 -0
  5. package/README.md +232 -0
  6. package/SKILL.md +500 -0
  7. package/agents/god-archaeologist.md +139 -0
  8. package/agents/god-architect.md +92 -0
  9. package/agents/god-auditor.md +150 -0
  10. package/agents/god-browser-tester.md +144 -0
  11. package/agents/god-context-writer.md +137 -0
  12. package/agents/god-coordinator.md +138 -0
  13. package/agents/god-debt-assessor.md +132 -0
  14. package/agents/god-debugger.md +77 -0
  15. package/agents/god-deploy-engineer.md +87 -0
  16. package/agents/god-deps-auditor.md +111 -0
  17. package/agents/god-design-reviewer.md +137 -0
  18. package/agents/god-designer.md +171 -0
  19. package/agents/god-docs-writer.md +102 -0
  20. package/agents/god-executor.md +76 -0
  21. package/agents/god-explorer.md +110 -0
  22. package/agents/god-harden-auditor.md +163 -0
  23. package/agents/god-incident-investigator.md +144 -0
  24. package/agents/god-launch-strategist.md +103 -0
  25. package/agents/god-migration-strategist.md +126 -0
  26. package/agents/god-observability-engineer.md +76 -0
  27. package/agents/god-orchestrator.md +728 -0
  28. package/agents/god-org-context-loader.md +124 -0
  29. package/agents/god-planner.md +73 -0
  30. package/agents/god-pm.md +105 -0
  31. package/agents/god-quality-reviewer.md +74 -0
  32. package/agents/god-reconciler.md +230 -0
  33. package/agents/god-reconstructor.md +124 -0
  34. package/agents/god-repo-scaffolder.md +60 -0
  35. package/agents/god-retrospective.md +109 -0
  36. package/agents/god-roadmap-reconciler.md +123 -0
  37. package/agents/god-roadmap-updater.md +89 -0
  38. package/agents/god-roadmapper.md +82 -0
  39. package/agents/god-spec-reviewer.md +70 -0
  40. package/agents/god-spike-runner.md +119 -0
  41. package/agents/god-stack-selector.md +93 -0
  42. package/agents/god-standards-check.md +132 -0
  43. package/agents/god-storyteller.md +116 -0
  44. package/agents/god-updater.md +174 -0
  45. package/bin/install.js +514 -0
  46. package/extensions/data-pack/README.md +33 -0
  47. package/extensions/data-pack/agents/god-dashboard-builder.md +66 -0
  48. package/extensions/data-pack/agents/god-etl-engineer.md +64 -0
  49. package/extensions/data-pack/agents/god-ml-feature-engineer.md +66 -0
  50. package/extensions/data-pack/manifest.yaml +39 -0
  51. package/extensions/data-pack/package.json +42 -0
  52. package/extensions/data-pack/skills/god-dashboard.md +28 -0
  53. package/extensions/data-pack/skills/god-etl.md +28 -0
  54. package/extensions/data-pack/skills/god-ml-feature.md +28 -0
  55. package/extensions/data-pack/workflows/dashboard-arc.yaml +13 -0
  56. package/extensions/data-pack/workflows/etl-arc.yaml +13 -0
  57. package/extensions/data-pack/workflows/ml-feature-arc.yaml +13 -0
  58. package/extensions/launch-pack/README.md +36 -0
  59. package/extensions/launch-pack/agents/god-indie-hackers-strategist.md +128 -0
  60. package/extensions/launch-pack/agents/god-oss-release-strategist.md +125 -0
  61. package/extensions/launch-pack/agents/god-product-hunt-strategist.md +118 -0
  62. package/extensions/launch-pack/agents/god-show-hn-strategist.md +113 -0
  63. package/extensions/launch-pack/manifest.yaml +45 -0
  64. package/extensions/launch-pack/package.json +41 -0
  65. package/extensions/launch-pack/skills/god-indie-hackers.md +39 -0
  66. package/extensions/launch-pack/skills/god-oss-release.md +43 -0
  67. package/extensions/launch-pack/skills/god-product-hunt.md +41 -0
  68. package/extensions/launch-pack/skills/god-show-hn.md +40 -0
  69. package/extensions/launch-pack/workflows/indie-hackers.yaml +13 -0
  70. package/extensions/launch-pack/workflows/oss-release.yaml +13 -0
  71. package/extensions/launch-pack/workflows/product-hunt.yaml +13 -0
  72. package/extensions/launch-pack/workflows/show-hn.yaml +13 -0
  73. package/extensions/security-pack/README.md +48 -0
  74. package/extensions/security-pack/agents/god-hipaa-auditor.md +117 -0
  75. package/extensions/security-pack/agents/god-pci-auditor.md +100 -0
  76. package/extensions/security-pack/agents/god-soc2-auditor.md +107 -0
  77. package/extensions/security-pack/manifest.yaml +39 -0
  78. package/extensions/security-pack/package.json +42 -0
  79. package/extensions/security-pack/skills/god-hipaa-audit.md +41 -0
  80. package/extensions/security-pack/skills/god-pci-audit.md +40 -0
  81. package/extensions/security-pack/skills/god-soc2-audit.md +42 -0
  82. package/extensions/security-pack/workflows/hipaa-arc.yaml +15 -0
  83. package/extensions/security-pack/workflows/pci-arc.yaml +15 -0
  84. package/extensions/security-pack/workflows/soc2-arc.yaml +15 -0
  85. package/hooks/pre-tool-use.sh +40 -0
  86. package/hooks/session-start.sh +74 -0
  87. package/lib/README.md +28 -0
  88. package/lib/agent-browser-driver.js +215 -0
  89. package/lib/agent-cache.js +194 -0
  90. package/lib/agent-validator.js +275 -0
  91. package/lib/artifact-diff.js +168 -0
  92. package/lib/artifact-linter.js +142 -0
  93. package/lib/awesome-design.js +312 -0
  94. package/lib/browser-bridge.js +209 -0
  95. package/lib/budget.js +215 -0
  96. package/lib/checkpoint.js +390 -0
  97. package/lib/code-scanner.js +262 -0
  98. package/lib/context-budget.js +170 -0
  99. package/lib/context-writer.js +348 -0
  100. package/lib/cost-tracker.js +325 -0
  101. package/lib/cross-artifact-impact.js +162 -0
  102. package/lib/cross-repo-linkage.js +150 -0
  103. package/lib/design-detector.js +167 -0
  104. package/lib/design-spec.js +348 -0
  105. package/lib/drift-detector.js +212 -0
  106. package/lib/event-reader.js +174 -0
  107. package/lib/events.js +183 -0
  108. package/lib/extensions.js +257 -0
  109. package/lib/have-nots-validator.js +647 -0
  110. package/lib/impact.js +314 -0
  111. package/lib/impeccable-bridge.js +139 -0
  112. package/lib/intent.js +177 -0
  113. package/lib/linkage.js +232 -0
  114. package/lib/meta-linter.js +263 -0
  115. package/lib/multi-repo-detector.js +182 -0
  116. package/lib/otel-exporter.js +308 -0
  117. package/lib/recipes.js +186 -0
  118. package/lib/reverse-sync.js +332 -0
  119. package/lib/review-required.js +224 -0
  120. package/lib/router.js +278 -0
  121. package/lib/runtime-audit.js +455 -0
  122. package/lib/runtime-test.js +309 -0
  123. package/lib/skillui-bridge.js +216 -0
  124. package/lib/state-lock.js +201 -0
  125. package/lib/state.js +142 -0
  126. package/lib/story-validator.js +301 -0
  127. package/lib/suite-state.js +220 -0
  128. package/lib/workflow-parser.js +109 -0
  129. package/lib/workflow-runner.js +221 -0
  130. package/package.json +63 -0
  131. package/references/HAVE-NOTS.md +573 -0
  132. package/references/building/BUILD-ANTIPATTERNS.md +102 -0
  133. package/references/building/BUILD-VERTICAL-SLICES.md +75 -0
  134. package/references/building/BUILD-WAVES.md +61 -0
  135. package/references/building/README.md +17 -0
  136. package/references/design/COLOR.md +122 -0
  137. package/references/design/DESIGN-ANATOMY.md +121 -0
  138. package/references/design/DESIGN-ANTIPATTERNS.md +108 -0
  139. package/references/design/INTERACTION.md +148 -0
  140. package/references/design/MOTION.md +120 -0
  141. package/references/design/RESPONSIVE.md +157 -0
  142. package/references/design/SPATIAL.md +109 -0
  143. package/references/design/TYPOGRAPHY.md +121 -0
  144. package/references/design/UX-WRITING.md +135 -0
  145. package/references/orchestration/MODE-DETECTION.md +74 -0
  146. package/references/orchestration/README.md +18 -0
  147. package/references/orchestration/SCALE-DETECTION.md +81 -0
  148. package/references/planning/ARCH-ANATOMY.md +143 -0
  149. package/references/planning/ARCH-ANTIPATTERNS.md +52 -0
  150. package/references/planning/PRD-ANATOMY.md +117 -0
  151. package/references/planning/PRD-ANTIPATTERNS.md +138 -0
  152. package/references/planning/README.md +16 -0
  153. package/references/planning/ROADMAP-ANATOMY.md +43 -0
  154. package/references/planning/ROADMAP-ANTIPATTERNS.md +94 -0
  155. package/references/planning/STACK-ANATOMY.md +60 -0
  156. package/references/planning/STACK-ANTIPATTERNS.md +95 -0
  157. package/references/shared/GLOSSARY.md +80 -0
  158. package/references/shared/ORCHESTRATORS.md +76 -0
  159. package/references/shared/README.md +14 -0
  160. package/references/shipping/DEPLOY-ANTIPATTERNS.md +64 -0
  161. package/references/shipping/DEPLOY-PATTERNS.md +110 -0
  162. package/references/shipping/HARDEN-ANTIPATTERNS.md +66 -0
  163. package/references/shipping/HARDEN-OWASP-WORKSHEETS.md +89 -0
  164. package/references/shipping/LAUNCH-ANTIPATTERNS.md +68 -0
  165. package/references/shipping/OBSERVE-ANTIPATTERNS.md +62 -0
  166. package/references/shipping/OBSERVE-SLO-EXAMPLES.md +107 -0
  167. package/references/shipping/README.md +18 -0
  168. package/routing/god-add-backlog.yaml +24 -0
  169. package/routing/god-add-tests.yaml +27 -0
  170. package/routing/god-add-todo.yaml +24 -0
  171. package/routing/god-agent-audit.yaml +24 -0
  172. package/routing/god-arch.yaml +46 -0
  173. package/routing/god-archaeology.yaml +28 -0
  174. package/routing/god-audit.yaml +32 -0
  175. package/routing/god-budget.yaml +24 -0
  176. package/routing/god-build-agent.yaml +24 -0
  177. package/routing/god-build.yaml +46 -0
  178. package/routing/god-cache-clear.yaml +24 -0
  179. package/routing/god-check-todos.yaml +24 -0
  180. package/routing/god-context-scan.yaml +24 -0
  181. package/routing/god-context.yaml +44 -0
  182. package/routing/god-cost.yaml +24 -0
  183. package/routing/god-debug.yaml +28 -0
  184. package/routing/god-deploy.yaml +34 -0
  185. package/routing/god-design-impact.yaml +25 -0
  186. package/routing/god-design.yaml +67 -0
  187. package/routing/god-discuss.yaml +27 -0
  188. package/routing/god-docs.yaml +33 -0
  189. package/routing/god-doctor.yaml +27 -0
  190. package/routing/god-explore.yaml +27 -0
  191. package/routing/god-extension-add.yaml +24 -0
  192. package/routing/god-extension-info.yaml +24 -0
  193. package/routing/god-extension-list.yaml +24 -0
  194. package/routing/god-extension-remove.yaml +24 -0
  195. package/routing/god-extract-learnings.yaml +24 -0
  196. package/routing/god-fast.yaml +27 -0
  197. package/routing/god-feature.yaml +34 -0
  198. package/routing/god-graph.yaml +24 -0
  199. package/routing/god-harden.yaml +41 -0
  200. package/routing/god-help.yaml +27 -0
  201. package/routing/god-hotfix.yaml +34 -0
  202. package/routing/god-hygiene.yaml +28 -0
  203. package/routing/god-init.yaml +37 -0
  204. package/routing/god-intel.yaml +24 -0
  205. package/routing/god-launch.yaml +41 -0
  206. package/routing/god-lifecycle.yaml +27 -0
  207. package/routing/god-link.yaml +24 -0
  208. package/routing/god-lint.yaml +24 -0
  209. package/routing/god-list-assumptions.yaml +27 -0
  210. package/routing/god-locate.yaml +24 -0
  211. package/routing/god-logs.yaml +24 -0
  212. package/routing/god-map-codebase.yaml +24 -0
  213. package/routing/god-metrics.yaml +24 -0
  214. package/routing/god-mode.yaml +31 -0
  215. package/routing/god-next.yaml +27 -0
  216. package/routing/god-note.yaml +24 -0
  217. package/routing/god-observe.yaml +34 -0
  218. package/routing/god-org-context.yaml +28 -0
  219. package/routing/god-party.yaml +24 -0
  220. package/routing/god-pause-work.yaml +27 -0
  221. package/routing/god-plant-seed.yaml +24 -0
  222. package/routing/god-postmortem.yaml +34 -0
  223. package/routing/god-pr-branch.yaml +25 -0
  224. package/routing/god-prd.yaml +49 -0
  225. package/routing/god-quick.yaml +28 -0
  226. package/routing/god-reconcile.yaml +48 -0
  227. package/routing/god-reconstruct.yaml +36 -0
  228. package/routing/god-redo.yaml +27 -0
  229. package/routing/god-refactor.yaml +36 -0
  230. package/routing/god-repair.yaml +27 -0
  231. package/routing/god-repo.yaml +35 -0
  232. package/routing/god-restore.yaml +27 -0
  233. package/routing/god-resume-work.yaml +27 -0
  234. package/routing/god-review-changes.yaml +25 -0
  235. package/routing/god-review.yaml +28 -0
  236. package/routing/god-roadmap-check.yaml +39 -0
  237. package/routing/god-roadmap-update.yaml +37 -0
  238. package/routing/god-roadmap.yaml +42 -0
  239. package/routing/god-rollback.yaml +27 -0
  240. package/routing/god-scan.yaml +24 -0
  241. package/routing/god-set-profile.yaml +24 -0
  242. package/routing/god-settings.yaml +24 -0
  243. package/routing/god-skip.yaml +27 -0
  244. package/routing/god-smite.yaml +29 -0
  245. package/routing/god-spike.yaml +35 -0
  246. package/routing/god-sprint.yaml +25 -0
  247. package/routing/god-stack.yaml +41 -0
  248. package/routing/god-standards.yaml +24 -0
  249. package/routing/god-status.yaml +27 -0
  250. package/routing/god-stories.yaml +24 -0
  251. package/routing/god-story-build.yaml +25 -0
  252. package/routing/god-story-close.yaml +25 -0
  253. package/routing/god-story-verify.yaml +25 -0
  254. package/routing/god-story.yaml +24 -0
  255. package/routing/god-suite-init.yaml +24 -0
  256. package/routing/god-suite-patch.yaml +25 -0
  257. package/routing/god-suite-release.yaml +25 -0
  258. package/routing/god-suite-status.yaml +25 -0
  259. package/routing/god-suite-sync.yaml +25 -0
  260. package/routing/god-sync.yaml +33 -0
  261. package/routing/god-tech-debt.yaml +32 -0
  262. package/routing/god-test-extension.yaml +24 -0
  263. package/routing/god-test-runtime.yaml +25 -0
  264. package/routing/god-thread.yaml +24 -0
  265. package/routing/god-trace.yaml +24 -0
  266. package/routing/god-undo.yaml +27 -0
  267. package/routing/god-update-deps.yaml +39 -0
  268. package/routing/god-upgrade.yaml +33 -0
  269. package/routing/god-version.yaml +24 -0
  270. package/routing/god-workstream.yaml +24 -0
  271. package/routing/god.yaml +24 -0
  272. package/routing/recipes/add-feature-defer-current-milestone.yaml +21 -0
  273. package/routing/recipes/add-feature-future-conditional.yaml +21 -0
  274. package/routing/recipes/add-feature-mid-arc-pause.yaml +33 -0
  275. package/routing/recipes/add-feature-next-milestone.yaml +23 -0
  276. package/routing/recipes/add-feature-parallel.yaml +29 -0
  277. package/routing/recipes/add-feature-prd-update.yaml +21 -0
  278. package/routing/recipes/add-feature-small.yaml +24 -0
  279. package/routing/recipes/add-feature-tiny.yaml +24 -0
  280. package/routing/recipes/bluefield-org-aware.yaml +27 -0
  281. package/routing/recipes/broken-install.yaml +22 -0
  282. package/routing/recipes/brownfield-onboarding.yaml +32 -0
  283. package/routing/recipes/bug-no-urgency.yaml +21 -0
  284. package/routing/recipes/capture-idea.yaml +22 -0
  285. package/routing/recipes/capture-todo.yaml +21 -0
  286. package/routing/recipes/clean-pr.yaml +21 -0
  287. package/routing/recipes/code-cleanup.yaml +23 -0
  288. package/routing/recipes/docs-drift.yaml +21 -0
  289. package/routing/recipes/existing-codebase-onboarding.yaml +32 -0
  290. package/routing/recipes/extract-learnings.yaml +22 -0
  291. package/routing/recipes/greenfield-fast.yaml +25 -0
  292. package/routing/recipes/greenfield-manual.yaml +32 -0
  293. package/routing/recipes/greenfield-with-ideation.yaml +29 -0
  294. package/routing/recipes/incident-postmortem.yaml +24 -0
  295. package/routing/recipes/major-framework-upgrade.yaml +23 -0
  296. package/routing/recipes/monthly-deps.yaml +22 -0
  297. package/routing/recipes/multi-repo-suite.yaml +56 -0
  298. package/routing/recipes/parallel-engineers.yaml +26 -0
  299. package/routing/recipes/pause-handoff.yaml +21 -0
  300. package/routing/recipes/production-broken.yaml +26 -0
  301. package/routing/recipes/rerun-tier.yaml +21 -0
  302. package/routing/recipes/returning-after-break.yaml +31 -0
  303. package/routing/recipes/state-drift.yaml +21 -0
  304. package/routing/recipes/undo-last.yaml +21 -0
  305. package/routing/recipes/weekly-health-check.yaml +24 -0
  306. package/routing/recipes/whats-next.yaml +22 -0
  307. package/routing/recipes/where-am-i.yaml +21 -0
  308. package/schema/events.v1.json +63 -0
  309. package/schema/extension-manifest.v1.json +84 -0
  310. package/schema/intent.v1.yaml.json +116 -0
  311. package/schema/recipe.v1.json +120 -0
  312. package/schema/routing.v1.json +163 -0
  313. package/schema/state.v1.json +146 -0
  314. package/schema/workflow.v1.json +96 -0
  315. package/skills/god-add-backlog.md +40 -0
  316. package/skills/god-add-tests.md +53 -0
  317. package/skills/god-add-todo.md +32 -0
  318. package/skills/god-agent-audit.md +87 -0
  319. package/skills/god-arch.md +81 -0
  320. package/skills/god-archaeology.md +48 -0
  321. package/skills/god-audit.md +65 -0
  322. package/skills/god-budget.md +103 -0
  323. package/skills/god-build-agent.md +91 -0
  324. package/skills/god-build.md +90 -0
  325. package/skills/god-cache-clear.md +75 -0
  326. package/skills/god-check-todos.md +42 -0
  327. package/skills/god-context-scan.md +125 -0
  328. package/skills/god-context.md +147 -0
  329. package/skills/god-cost.md +118 -0
  330. package/skills/god-debug.md +30 -0
  331. package/skills/god-deploy.md +76 -0
  332. package/skills/god-design-impact.md +86 -0
  333. package/skills/god-design.md +275 -0
  334. package/skills/god-discuss.md +46 -0
  335. package/skills/god-docs.md +81 -0
  336. package/skills/god-doctor.md +94 -0
  337. package/skills/god-explore.md +50 -0
  338. package/skills/god-export-otel.md +87 -0
  339. package/skills/god-extension-add.md +79 -0
  340. package/skills/god-extension-info.md +75 -0
  341. package/skills/god-extension-list.md +55 -0
  342. package/skills/god-extension-remove.md +66 -0
  343. package/skills/god-extract-learnings.md +60 -0
  344. package/skills/god-fast.md +47 -0
  345. package/skills/god-feature.md +114 -0
  346. package/skills/god-graph.md +56 -0
  347. package/skills/god-harden.md +106 -0
  348. package/skills/god-help.md +66 -0
  349. package/skills/god-hotfix.md +139 -0
  350. package/skills/god-hygiene.md +104 -0
  351. package/skills/god-init.md +161 -0
  352. package/skills/god-intel.md +36 -0
  353. package/skills/god-launch.md +86 -0
  354. package/skills/god-lifecycle.md +119 -0
  355. package/skills/god-link.md +90 -0
  356. package/skills/god-lint.md +128 -0
  357. package/skills/god-list-assumptions.md +56 -0
  358. package/skills/god-locate.md +97 -0
  359. package/skills/god-logs.md +57 -0
  360. package/skills/god-map-codebase.md +45 -0
  361. package/skills/god-metrics.md +51 -0
  362. package/skills/god-mode.md +159 -0
  363. package/skills/god-next.md +257 -0
  364. package/skills/god-note.md +39 -0
  365. package/skills/god-observe.md +76 -0
  366. package/skills/god-org-context.md +81 -0
  367. package/skills/god-party.md +87 -0
  368. package/skills/god-pause-work.md +64 -0
  369. package/skills/god-plant-seed.md +59 -0
  370. package/skills/god-postmortem.md +103 -0
  371. package/skills/god-pr-branch.md +50 -0
  372. package/skills/god-prd.md +90 -0
  373. package/skills/god-quick.md +50 -0
  374. package/skills/god-reconcile.md +90 -0
  375. package/skills/god-reconstruct.md +72 -0
  376. package/skills/god-redo.md +73 -0
  377. package/skills/god-refactor.md +137 -0
  378. package/skills/god-repair.md +82 -0
  379. package/skills/god-repo.md +49 -0
  380. package/skills/god-restore.md +91 -0
  381. package/skills/god-resume-work.md +42 -0
  382. package/skills/god-review-changes.md +93 -0
  383. package/skills/god-review.md +52 -0
  384. package/skills/god-roadmap-check.md +66 -0
  385. package/skills/god-roadmap-update.md +64 -0
  386. package/skills/god-roadmap.md +77 -0
  387. package/skills/god-rollback.md +88 -0
  388. package/skills/god-scan.md +106 -0
  389. package/skills/god-set-profile.md +58 -0
  390. package/skills/god-settings.md +44 -0
  391. package/skills/god-skip.md +78 -0
  392. package/skills/god-smite.md +86 -0
  393. package/skills/god-spike.md +120 -0
  394. package/skills/god-sprint.md +77 -0
  395. package/skills/god-stack.md +74 -0
  396. package/skills/god-standards.md +62 -0
  397. package/skills/god-status.md +99 -0
  398. package/skills/god-stories.md +60 -0
  399. package/skills/god-story-build.md +76 -0
  400. package/skills/god-story-close.md +82 -0
  401. package/skills/god-story-verify.md +71 -0
  402. package/skills/god-story.md +55 -0
  403. package/skills/god-suite-init.md +75 -0
  404. package/skills/god-suite-patch.md +64 -0
  405. package/skills/god-suite-release.md +58 -0
  406. package/skills/god-suite-status.md +63 -0
  407. package/skills/god-suite-sync.md +49 -0
  408. package/skills/god-sync.md +102 -0
  409. package/skills/god-tech-debt.md +56 -0
  410. package/skills/god-test-extension.md +87 -0
  411. package/skills/god-test-runtime.md +144 -0
  412. package/skills/god-thread.md +39 -0
  413. package/skills/god-trace.md +50 -0
  414. package/skills/god-undo.md +68 -0
  415. package/skills/god-update-deps.md +134 -0
  416. package/skills/god-upgrade.md +139 -0
  417. package/skills/god-version.md +37 -0
  418. package/skills/god-workstream.md +61 -0
  419. package/skills/god.md +207 -0
  420. package/templates/ARCH.md +99 -0
  421. package/templates/DEPS-AUDIT.md +66 -0
  422. package/templates/DESIGN.md +71 -0
  423. package/templates/DOCS-UPDATE-LOG.md +64 -0
  424. package/templates/HARDEN-FINDINGS.md +69 -0
  425. package/templates/MIGRATION.md +86 -0
  426. package/templates/POSTMORTEM.md +88 -0
  427. package/templates/PRD.md +80 -0
  428. package/templates/PROGRESS.md +49 -0
  429. package/templates/ROADMAP.md +47 -0
  430. package/templates/SPIKE.md +72 -0
  431. package/templates/STACK-DECISION.md +61 -0
  432. package/workflows/audit-only.yaml +22 -0
  433. package/workflows/bluefield-arc.yaml +87 -0
  434. package/workflows/brownfield-arc.yaml +44 -0
  435. package/workflows/deps-audit.yaml +56 -0
  436. package/workflows/docs-arc.yaml +22 -0
  437. package/workflows/feature-arc.yaml +59 -0
  438. package/workflows/full-arc.yaml +84 -0
  439. package/workflows/hotfix-arc.yaml +59 -0
  440. package/workflows/hygiene.yaml +43 -0
  441. package/workflows/migration-arc.yaml +73 -0
  442. package/workflows/postmortem.yaml +31 -0
  443. package/workflows/refactor-arc.yaml +59 -0
  444. package/workflows/spike.yaml +23 -0
package/AGENTS.md ADDED
@@ -0,0 +1,37 @@
1
+ # Godpowers - Agent Brief
2
+
3
+ This is the Godpowers repository: an AI-powered development system that takes
4
+ projects from raw idea to hardened production.
5
+
6
+ ## Reading Order
7
+
8
+ 1. `README.md` - what this is, how to use it
9
+ 2. `SKILL.md` - the core skill (the brain)
10
+ 3. `skills/god-mode.md` - the autonomous orchestrator
11
+ 4. `skills/god-init.md` - project initialization
12
+ 5. `skills/god-prd.md` through `skills/god-harden.md` - individual tier skills
13
+
14
+ ## Architecture
15
+
16
+ - `SKILL.md` is the main entry point, loaded by AI coding tools
17
+ - `skills/` contains individual command skills (one per file)
18
+ - `references/` contains per-tier reference material (antipatterns, examples)
19
+ - `bin/` contains the CLI installer and `god` command
20
+ - `scripts/` contains validation and testing scripts
21
+ - `templates/` contains artifact templates
22
+
23
+ ## Conventions
24
+
25
+ - Every skill file has YAML frontmatter with `name`, `description`, and trigger phrases
26
+ - Every tier skill documents its gate check (upstream dependency)
27
+ - Every tier skill documents its have-nots (failure modes)
28
+ - Artifacts are written to `.godpowers/<tier>/` paths
29
+ - State is tracked in `.godpowers/PROGRESS.md`
30
+ - Disk state is authoritative; conversation memory is not
31
+
32
+ ## Quality Rules
33
+
34
+ - No em dashes or en dashes (use commas, colons, semicolons, or parentheses)
35
+ - No emojis (use `+`, `-`, `x`, `!` for status indicators)
36
+ - Every sentence in generated artifacts must be labeled: DECISION, HYPOTHESIS, or OPEN QUESTION
37
+ - Every claim must fail the substitution test (swap in a competitor, sentence must break)
package/CHANGELOG.md ADDED
@@ -0,0 +1,639 @@
1
+ # Changelog
2
+
3
+ All notable changes to Godpowers will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [0.15.0] - 2026-05-11
9
+
10
+ Distribution release. Godpowers and its three first-party packs are
11
+ now publishable to npm with supply-chain provenance. OTel exporter
12
+ turns events.jsonl into something a real observability backend can
13
+ consume. Cost tracker distinguishes live (provider-reported) from
14
+ estimated (heuristic) per-call token counts.
15
+
16
+ ### Added (cost-tracker live integration)
17
+ - `cost.recorded` events now carry `source: 'live' | 'estimated'`.
18
+ Live = AI tool surfaced real per-call token counts from the
19
+ provider API; estimated = orchestrator's heuristic byte-based
20
+ count.
21
+ - `lib/cost-tracker.recordModelCall(handle, attrs)`: canonical entry
22
+ point for AI tools with real usage data. Tags `source: 'live'`
23
+ automatically.
24
+ - `lib/cost-tracker.isStrictLive(projectRoot, runIds?)`: returns
25
+ `{strict, live_calls, estimated_calls, total_calls}` to drive CI
26
+ gates.
27
+ - `aggregate()` splits `totals` into `live_calls / live_usd /
28
+ live_tokens` and `estimated_*`.
29
+ - `formatReport()` breaks the Spent line into Live and Estimated
30
+ sublines.
31
+ - `/god-cost --strict`: exit non-zero if any in-scope record is
32
+ estimated. Wire into CI once live reporting is reliable.
33
+
34
+ ### Added (OTel exporter)
35
+ - `lib/otel-exporter.js`: converts a run's events.jsonl into
36
+ OTLP/JSON ResourceSpans and (optionally) POSTs to an OTLP HTTP
37
+ collector. No external deps; uses Node's built-in http/https.
38
+ - Event -> span mapping: `workflow.run` + `workflow.complete` form
39
+ the root span; `agent.start` + `agent.end` (matched by span_id)
40
+ become child spans parented to the root; other named events
41
+ (`cost.recorded`, `gate.fail`, `error`, `decision.route`,
42
+ `tool.call`) attach as span events; `error` or `gate.fail`
43
+ flips parent span status to ERROR.
44
+ - Honors `OTEL_EXPORTER_OTLP_TRACES_ENDPOINT` (takes precedence),
45
+ `OTEL_EXPORTER_OTLP_ENDPOINT` (with `/v1/traces` auto-appended),
46
+ and `OTEL_EXPORTER_OTLP_HEADERS` (comma-separated `k=v` for auth
47
+ like `x-honeycomb-team=...`).
48
+ - New skill `/god-export-otel`: opt-in; nothing exports until
49
+ invoked. Supports `--run-id`, `--all`, `--endpoint`, `--stdout`,
50
+ `--service-name`.
51
+
52
+ ### Added (first-party packs publishable as npm packages)
53
+ - Each pack ships its own `package.json` with the scoped name,
54
+ `publishConfig.access=public`, `files` allowlist, and
55
+ `peerDependencies.godpowers`:
56
+ - `@godpowers/security-pack` (SOC 2, HIPAA, PCI-DSS auditors)
57
+ - `@godpowers/launch-pack` (Show HN, Product Hunt, Indie Hackers,
58
+ OSS release strategists)
59
+ - `@godpowers/data-pack` (ETL, ML features, dashboards)
60
+ - Each pack starts at `0.1.0`, decoupled from the godpowers root
61
+ version.
62
+ - Manifest engines fix: `>=1.0.0 <2.0.0` (impossible while godpowers
63
+ is on 0.x) -> `>=0.14.0 <2.0.0`.
64
+
65
+ ### Added (distribution)
66
+ - `.github/workflows/publish.yml`: tag-triggered publish. On a `v*`
67
+ tag push, runs the full test suite as a gate, then `npm publish
68
+ --provenance --access public` using `${{ secrets.NPM_TOKEN }}`.
69
+ - `.github/workflows/publish-pack.yml`: workflow_dispatch entry
70
+ point. Pick `security-pack`, `launch-pack`, or `data-pack` from
71
+ the GitHub Actions UI to publish that pack to npm after bumping
72
+ its `package.json` version.
73
+ - CHANGELOG remains human-curated; `npm version minor` + push tags
74
+ is the release procedure.
75
+
76
+ ### Tests
77
+ - 9 new tests for `source: 'live' | 'estimated'` cost-tracker
78
+ behavior, `recordModelCall()`, `isStrictLive()`, and aggregate
79
+ splits (35 total in `test-cost-saver.js`).
80
+ - 15 new tests for the OTel exporter, including a real in-process
81
+ HTTP collector verifying POST, content-type, path, body, and
82
+ auth-header propagation.
83
+ - 43 new tests for extension-pack publish readiness across all
84
+ three first-party packs: package.json well-formed, name+version
85
+ match manifest, `npm pack --dry-run` succeeds, tarball includes
86
+ required files, tarball excludes node_modules / .git / tests.
87
+ - Full suite now 36 test suites, 1864+ behavioral tests.
88
+
89
+ ## [0.14.0] - 2026-05-11
90
+
91
+ The big release. Workflow runtime is now executable, locks and
92
+ checkpoints are wired into the orchestrator, a full token cost saver
93
+ ships, on/off budget shortcut for casual users, GitHub Actions CI,
94
+ and npm publish prep.
95
+
96
+ ### Added (lock + checkpoint wiring)
97
+ - `lib/state-lock.js`: acquire / release / peek / isStale / reclaim /
98
+ withLock. Reentrant; scope-based conflict; stale-lock reclaim;
99
+ withLock guarantees release on thrown error.
100
+ - `lib/checkpoint.syncFromState`: one-call orchestrator helper that
101
+ rebuilds CHECKPOINT.md from state.json + events.jsonl tail.
102
+ - 28 artifact-producing skills gained `## Locking` sections that
103
+ document the contract for end users.
104
+ - `agents/god-orchestrator.md`: new Concurrency section that wires
105
+ lock acquisition + CHECKPOINT auto-update into every sub-step.
106
+
107
+ ### Added (token cost saver)
108
+ - `lib/cost-tracker.js`: per-call cost recording + per-tier /
109
+ per-agent / per-model aggregation. Built-in pricing table for
110
+ major models (Claude / GPT / Gemini / O-series). recordCost /
111
+ recordCacheHit / recordCacheMiss / aggregate / formatReport /
112
+ priceTokens.
113
+ - `lib/agent-cache.js`: opt-in agent-output cache keyed by
114
+ sha256(agent + version + sorted inputs + state-hash). TTL-bounded.
115
+ Sharded storage. Cache hits emit `cache.hit` with savings_usd.
116
+ - `lib/context-budget.js`: per-agent budget planner. Reads required /
117
+ optional context from agent frontmatter; loads under cap; emits
118
+ `budget.exceeded` when required alone overflows.
119
+ - `schema/intent.v1.yaml.json`: new `budgets` block with
120
+ `default-max-tokens`, `model-profile` (cheap / standard /
121
+ expensive), `cache`, `cache-ttl-hours`, per-agent overrides.
122
+ - `lib/events.js`: 4 new event names (`cost.recorded`, `cache.hit`,
123
+ `cache.miss`, `budget.exceeded`).
124
+ - 3 new skills: `/god-cost` (spend + savings report), `/god-budget`
125
+ (view + set budgets), `/god-cache-clear` (invalidate cache).
126
+ - `lib/budget.js`: applyOn / applyOff / set / read / summary so
127
+ `/god-budget --on` and `--off` work as one-shot toggles.
128
+ - `agents/god-orchestrator.md`: new "Cost-conscious agent dispatch"
129
+ section wiring cache check, context-budget loadout, model selection
130
+ by profile, and cost recording into every spawn.
131
+
132
+ ### Added (v0.14 workflow runtime)
133
+ - `lib/workflow-runner.js`: listWorkflows + loadByName + plan +
134
+ writePlan + readPlan. Reads workflows/*.yaml via
135
+ lib/workflow-parser; computes dependency-ordered waves; serializes
136
+ plans to .godpowers/runs/<id>/plan.yaml.
137
+ - `/god-mode --workflow=<name>` and `/god-mode --plan` flags added.
138
+ - All 13 workflows/*.yaml had their "NOT YET AUTHORITATIVE" header
139
+ replaced with "Authoritative (v0.14+)".
140
+
141
+ ### Added (release engineering)
142
+ - `.github/workflows/ci.yml`: matrix on Node 18/20/22; runs npm test
143
+ on every PR + main push. Separate `package` job runs npm pack
144
+ --dry-run and verifies bin entry + CHANGELOG has a current entry.
145
+ - `package.json` files array: routing/, workflows/, extensions/,
146
+ INSPIRATION.md added (previously missing -> would have shipped a
147
+ broken package). prepublishOnly runs the full test suite before
148
+ any npm publish.
149
+ - npm pack --dry-run: 364KB tarball / 1.1MB unpacked / 439 files.
150
+
151
+ ### Tests
152
+ - 34 suites (was 30 at v0.13.0), 1863 passing (was 1764). +99.
153
+ - New: test-state-lock.js (21), test-cost-saver.js (26),
154
+ test-budget-onoff.js (13), test-workflow-runner.js (12).
155
+
156
+ ### Changed
157
+ - bin/install.js VERSION: 0.13.0 -> 0.14.0
158
+ - package.json version: 0.13.0 -> 0.14.0
159
+
160
+ ## [0.13.0] - 2026-05-10
161
+
162
+ Context-rot protection (the major new feature), extension runtime, and
163
+ observability readers. Ships earlier-than-roadmapped observability
164
+ because it cost very little once events.jsonl already existed.
165
+
166
+ ### Added (context-rot protection)
167
+ - `lib/checkpoint.js`: read/write/append API for `.godpowers/CHECKPOINT.md`,
168
+ the disk-authoritative "where you are" pin. Frontmatter holds id,
169
+ project, mode, mode-d-suite, lifecycle, current-tier, current-substep,
170
+ last-action, last-actor, last-update, facts-hash. Markdown body holds
171
+ Where-you-are + Last actions (up to 20) + Held facts (up to 10) +
172
+ Next suggested command + "if you are a new session" guide.
173
+ - `skills/god-locate.md`: orient a new chat session or new AI tool against
174
+ disk reality. Reads CHECKPOINT + state.json + events.jsonl tail +
175
+ reflog + intent.yaml. Single-screen output. Replaces guesswork when
176
+ switching tools or returning to a project.
177
+ - `skills/god-context-scan.md`: detect drift between the AI's stated mental
178
+ model and disk. The defensive cousin of /god-status. Use in long
179
+ sessions before commits. Surfaces hallucinated facts and stale memory.
180
+ - `lib/events.js`: hash chain on events.jsonl. Each event includes
181
+ `prev` = sha256 of the previous line (or `genesis` for the first).
182
+ New `verifyChain(file)` detects any truncation / tampering /
183
+ reordering. Cheap; cryptographically tamper-evident audit log.
184
+ - `hooks/session-start.sh`: now prefers CHECKPOINT.md over PROGRESS.md
185
+ when present. Prints the "Where you are" + Next-suggested sections
186
+ for instant orientation.
187
+
188
+ ### Added (v0.13 extension runtime)
189
+ - `schema/extension-manifest.v1.json`: schema for extension manifests
190
+ (apiVersion, kind, metadata.name + version, engines.godpowers SemVer
191
+ range, provides {agents,skills,workflows,have-nots}, activation rules).
192
+ - `lib/extensions.js`: install / list / info / remove + SemVer range
193
+ matcher (exact, ^X.Y.Z, ~X.Y.Z, >=, <, compound). Capability handshake
194
+ rejects install when engines.godpowers doesn't include the running
195
+ godpowers version.
196
+ - 5 new skills: `/god-extension-add`, `/god-extension-list`,
197
+ `/god-extension-info`, `/god-extension-remove`, `/god-test-extension`.
198
+
199
+ ### Added (v0.15 observability, shipped early)
200
+ - `lib/event-reader.js`: timeline / metrics / trace / summarize over
201
+ events.jsonl. Pairs agent.start with agent.end to compute durations.
202
+ Aggregates per-tier counts, durations, pauses, errors. Reads one run
203
+ or all runs in the project.
204
+ - 3 new skills: `/god-logs`, `/god-metrics`, `/god-trace`.
205
+
206
+ ### Tests
207
+ - 27 -> 30 test suites; 1629 -> roughly 1670 passing.
208
+ - New: scripts/test-checkpoint.js (16), scripts/test-extensions.js (19),
209
+ scripts/test-event-reader.js (9).
210
+ - All existing tests still pass; the events hash chain didn't break
211
+ anything because emit() was always single-line append.
212
+
213
+ ### Changed
214
+ - bin/install.js VERSION: 0.12.0 -> 0.13.0
215
+ - package.json version: 0.12.0 -> 0.13.0
216
+
217
+ ## [0.12.0] - 2026-05-10
218
+
219
+ Mode D (multi-repo suites), agent discipline, story-file workflow, Pi + T3
220
+ support, and routing sweep. Test suite at 1415 passing across 22 suites.
221
+
222
+ ### Added (Mode D - multi-repo suites)
223
+ - `agents/god-coordinator.md`: Tier-0 peer agent for cross-repo coordination
224
+ - `lib/suite-state.js`: Mode D suite registration + version table
225
+ - `lib/meta-linter.js`: cross-repo lint for byte-identical files
226
+ - `skills/god-suite-init.md`: register siblings + shared standards
227
+ - `skills/god-suite-status.md`: side-by-side repo status
228
+ - `skills/god-suite-sync.md`: byte-identical file propagation
229
+ - `skills/god-suite-patch.md`: coordinated multi-repo change
230
+ - `skills/god-suite-release.md`: release coordination across siblings
231
+ - `references/shared/multi-repo-suite-layout.md`
232
+
233
+ ### Added (agent discipline - phase 17)
234
+ - `lib/agent-validator.js`: validates every agents/*.md against the agent
235
+ contract (frontmatter, required sections, output schema)
236
+ - `skills/god-agent-audit.md`: `/god-agent-audit` runs the validator
237
+
238
+ ### Added (story-file workflow - phase 18)
239
+ - `lib/story-validator.js`: parses + validates STORY.md files
240
+ - `agents/god-storyteller.md`: STORY.md writer
241
+ - `skills/god-story.md`: write a new story
242
+ - `skills/god-stories.md`: list stories by status
243
+ - `skills/god-story-build.md`: implement a story
244
+ - `skills/god-story-verify.md`: run acceptance criteria as headless tests
245
+ - `skills/god-story-close.md`: close after build + verify
246
+
247
+ ### Added (runtime support)
248
+ - Pi (earendil-works/pi) support in installer (`--pi` flag, ~/.pi/skills/)
249
+ - T3 Code (pingdotgg/t3code) transparent support via underlying agent
250
+ - Cross-tool Agent Skills standard at .agents/skills/
251
+
252
+ ### Added (brownfield depth)
253
+ - `agents/god-archaeologist.md`: deep code archaeology
254
+ - `agents/god-reconstructor.md`: reverse-engineer planning artifacts
255
+ - `agents/god-reconciler.md`: cross-artifact reconciliation
256
+ - `agents/god-debt-assessor.md`: technical-debt scorer
257
+ - `skills/god-archaeology.md`, `god-reconstruct.md`, `god-reconcile.md`,
258
+ `god-tech-debt.md`
259
+
260
+ ### Changed (routing sweep + integration)
261
+ - Phase 13: routing sweep + beyond-arc skill linkage participation
262
+ - Phase 14: documentation surface for runtime / linkage / design
263
+ - Phase 15: runtime heuristic improvements (parseFlow verb coverage)
264
+ - Audit-driven fixes: closed 4 misconnections + disconnections between
265
+ beyond-arc workflows and linkage / reverse-sync
266
+
267
+ ### Documentation
268
+ - `INSPIRATION.md`: single canonical acknowledgement of prior-art
269
+ - Doc deck refreshed to current state (82 skills, 38 agents, v0.11+)
270
+
271
+ ### Tests
272
+ - 22 test suites, 1400+ passing (was 18 suites, 1235 at 0.11.0)
273
+
274
+ ## [0.11.0] - 2026-05-10
275
+
276
+ Major release. Production-ready validation, full design pipeline, and
277
+ runtime verification. 18 commits since 0.4.0; full test suite at 1235
278
+ passing across 18 suites.
279
+
280
+ ### Added (validation foundation)
281
+ - `lib/have-nots-validator.js`: 11 mechanical have-nots checks (em/en
282
+ dash, emoji, unlabeled paragraphs, phantom references, future dates,
283
+ generic claims, PRD/ARCH structure violations)
284
+ - `lib/artifact-linter.js`: per-artifact orchestrator with detectType,
285
+ lintFile, lintAll, formatReport, aggregate
286
+ - `lib/artifact-diff.js`: regression detection between artifact versions
287
+ - `skills/god-lint.md`: `/god-lint` mechanical validation
288
+ - `references/HAVE-NOTS.md` integrated into linter
289
+
290
+ ### Added (exemplars and antipatterns parity)
291
+ - `examples/saas-mrr-tracker/` complete UI project (PRD/ARCH/ROADMAP/STACK/DESIGN)
292
+ - `examples/cli-tool/` backend-only project (PRD/ARCH/ROADMAP/STACK)
293
+ - `references/planning/ROADMAP-ANTIPATTERNS.md`
294
+ - `references/planning/STACK-ANTIPATTERNS.md`
295
+ - `references/building/BUILD-ANTIPATTERNS.md`
296
+ - `references/shipping/{DEPLOY,OBSERVE,HARDEN,LAUNCH}-ANTIPATTERNS.md`
297
+ - `references/design/{DESIGN-ANATOMY,DESIGN-ANTIPATTERNS}.md`
298
+
299
+ ### Added (design foundation - integrations)
300
+ - `lib/design-detector.js`: UI presence detection across 24+ frameworks
301
+ - `lib/design-spec.js`: Google Labs design.md parser + linter (frontmatter
302
+ schema, section order, token resolution, WCAG contrast)
303
+ - `lib/impeccable-bridge.js`: detect-and-delegate to Impeccable's 23 commands
304
+ - `lib/awesome-design.js`: 71-site catalog from VoltAgent's awesome-design-md
305
+ - `lib/skillui-bridge.js`: SkillUI fallback for sites not in catalog
306
+ - `agents/god-designer.md`: lifecycle owner of DESIGN.md + PRODUCT.md
307
+ - `agents/god-design-reviewer.md`: two-stage gate (spec + quality)
308
+ - `skills/god-design.md`: 26 subcommands bridging impeccable + catalog + skillui
309
+ - `routing/god-design.yaml`
310
+ - `templates/DESIGN.md`
311
+
312
+ ### Added (linkage + propagation)
313
+ - `lib/linkage.js`: bidirectional artifact-to-code map with 7 stable ID types
314
+ (P-MUST/SHOULD/COULD-NN, ADR-NNN, C-{slug}, M-{slug}, S-{slug}, token paths, D-{slug})
315
+ - `lib/code-scanner.js`: 6 discovery mechanisms (annotations, filenames,
316
+ imports, style-system, test descriptions, manual)
317
+ - `lib/drift-detector.js`: design token drift, stack version drift, ARCH
318
+ container drift
319
+ - `lib/impact.js`: forward propagation (artifact change -> affected code)
320
+ - `lib/cross-artifact-impact.js`: 6 rule classes for artifact-to-artifact impact
321
+ - `lib/review-required.js`: REVIEW-REQUIRED.md + REJECTED.md managers
322
+ - `lib/reverse-sync.js`: code -> artifact fenced footer appender
323
+ (PRD/ARCH/ROADMAP/STACK/DESIGN)
324
+ - `skills/god-design-impact.md`: what-if analysis
325
+ - `skills/god-review-changes.md`: walk REVIEW-REQUIRED.md
326
+ - `skills/god-scan.md`: manual reverse-sync
327
+ - `skills/god-link.md`: manual link entry
328
+
329
+ ### Added (runtime verification - headless)
330
+ - `lib/browser-bridge.js`: headless-only browser launch (cascade:
331
+ agent-browser preferred, Playwright fallback)
332
+ - `lib/agent-browser-driver.js`: vercel-labs/agent-browser CLI wrapper
333
+ - `lib/runtime-audit.js`: design verification on rendered DOM (computed
334
+ styles vs DESIGN.md tokens, real-DOM WCAG contrast)
335
+ - `lib/runtime-test.js`: PRD acceptance criteria as user-flow assertions
336
+ - `agents/god-browser-tester.md`
337
+ - `skills/god-test-runtime.md`
338
+
339
+ ### Added (light-impeccable - 7 design domain references)
340
+ - `references/design/TYPOGRAPHY.md` (~140 lines)
341
+ - `references/design/COLOR.md` (~145 lines)
342
+ - `references/design/SPATIAL.md` (~110 lines)
343
+ - `references/design/MOTION.md` (~120 lines)
344
+ - `references/design/INTERACTION.md` (~150 lines)
345
+ - `references/design/RESPONSIVE.md` (~125 lines)
346
+ - `references/design/UX-WRITING.md` (~130 lines)
347
+
348
+ ### Added (ai-tool context)
349
+ - `lib/context-writer.js`: AGENTS.md / CLAUDE.md / GEMINI.md / .cursor/ /
350
+ .windsurf/ / others fenced section manager (11 AI tools detected)
351
+ - `agents/god-context-writer.md`
352
+ - `skills/god-context.md`
353
+
354
+ ### Added (front-door)
355
+ - `skills/god.md`: free-text intent matcher
356
+
357
+ ### Changed
358
+ - `god-orchestrator.md`: extended Quarterback responsibilities;
359
+ detection-driven Tier 1 routing; mid-arc DESIGN/PRODUCT change
360
+ detection; extended critical-finding gate (drift, lint errors,
361
+ design-review BLOCK, validator errors); explicit YOLO behavior table
362
+ - `god-updater.md`: now calls reverse-sync.run on /god-sync
363
+ - `lib/state.js`: schema additions (tier-1.design, tier-1.product,
364
+ linkage slot, yolo-decisions array)
365
+
366
+ ### Documentation
367
+ - `docs/change-propagation.md`: forward + reverse + cross-artifact propagation
368
+ - `docs/linkage.md`: stable IDs, 6 discovery mechanisms, drift detection
369
+ - `.planning/2026-05-10-production-ready-and-design.md`: comprehensive plan
370
+ - `.planning/dogfood-001-results.md`: end-to-end validation results
371
+
372
+ ### Tests
373
+ - 18 test suites, 1235 passing, 0 failing (was 4 suites, ~360 tests at 0.4.0)
374
+ - All new tests behavioral, not just structural
375
+
376
+ ### External integrations (5; all detect-and-delegate, none vendored)
377
+ - Google Labs design.md (format spec)
378
+ - Impeccable (design intelligence; 7 domain refs + 23 commands + 27 anti-patterns)
379
+ - VoltAgent awesome-design-md (71-site curated catalog)
380
+ - SkillUI (static analysis fallback for arbitrary URLs)
381
+ - vercel-labs/agent-browser + Playwright (runtime verification backends)
382
+
383
+ ## [0.8.1] - 2026-05-09
384
+
385
+ ### Changed
386
+ - Automatic mode detection across `/god-init` and `/god-mode`: greenfield /
387
+ brownfield / bluefield decided invisibly from disk signals (package.json,
388
+ source dirs, org-context markers). Users no longer need to know the
389
+ jargon; the system asks plain-English clarifying questions only when
390
+ signals are ambiguous.
391
+
392
+ ## [0.8.0] - 2026-05-09
393
+
394
+ ### Added (brownfield + bluefield support)
395
+ - `agents/god-archaeologist.md`: deep code archaeology (history, decisions,
396
+ conventions, risks, tribal knowledge) beyond `/god-map-codebase`
397
+ - `agents/god-reconstructor.md`: reverse-engineers PRD / ARCH / ROADMAP /
398
+ STACK from existing code so brownfield projects can use full
399
+ reconciliation
400
+ - `agents/god-debt-assessor.md`: 8-category debt assessment with P0-P3
401
+ prioritization (code, design, dependency, security, test, doc,
402
+ operational, knowledge)
403
+ - `agents/god-org-context-loader.md`: bluefield support for org-level
404
+ shared standards, conventions, infrastructure, libraries
405
+ - Skills: `/god-archaeology`, `/god-reconstruct`, `/god-tech-debt`,
406
+ `/god-org-context`
407
+
408
+ ## [0.7.3] - 2026-05-09
409
+
410
+ ### Added
411
+ - Greenfield artifact coverage: `/god-mode` reliably creates the 10 core
412
+ artifacts across Tier 0-3 sub-steps. The 4 capture artifacts (BACKLOG,
413
+ SEEDS, TODOS, THREADS) remain lazy by design (created only when used).
414
+ - Mandatory final sync: `/god-mode` always runs `/god-sync` at end of arc
415
+ regardless of flags (`--yolo`, `--conservative`, `--with-hygiene`).
416
+
417
+ ## [0.7.2] - 2026-05-09
418
+
419
+ ### Added (comprehensive multi-artifact reconciliation)
420
+ - Extended reconciliation from roadmap-only to all 13 impacted artifacts:
421
+ PRD, ARCH, ROADMAP, STACK, REPO, DEPLOY, OBSERVE, HARDEN, LAUNCH,
422
+ BACKLOG, SEEDS, TODOS, THREADS
423
+ - New skills: `/god-reconcile` (before feature work), `/god-sync` (after)
424
+ - Cross-artifact divergence detection (e.g. PRD/roadmap moving-target,
425
+ STACK drift vs lock files)
426
+
427
+ ## [0.7.1] - 2026-05-09
428
+
429
+ ### Added (roadmap reconciliation loop)
430
+ - `agents/god-roadmap-reconciler.md`: classifies user intent vs ROADMAP.md
431
+ with 6 verdicts (already-done, in-progress, enhancement,
432
+ prerequisite-needed, new, ambiguous)
433
+ - `agents/god-roadmap-updater.md`: keeps ROADMAP.md as a living artifact
434
+ after feature work; detects PRD divergence
435
+ - Skills: `/god-roadmap-check`, `/god-roadmap-update`
436
+
437
+ ## [0.7.0] - 2026-05-09
438
+
439
+ ### Added (recipes as programmatic input)
440
+ - `schema/recipe.v1.json`: structured recipe definition with triggers
441
+ (intent-keywords + state-conditions), decision-tree, sequences, default
442
+ - 33 structured recipes at `routing/recipes/<recipe>.yaml` covering
443
+ starting, feature-addition, production, maintaining, recovering,
444
+ collaborating, knowledge categories
445
+ - Agents consult recipes for fuzzy intent decisions (no longer just human docs)
446
+
447
+ ## [0.6.0] - 2026-05-09
448
+
449
+ ### Added (unified decision engine + routing + standards gates)
450
+ - `schema/routing.v1.json`: JSON Schema for routing definitions
451
+ - Prerequisites (required + recommended) with auto-complete commands
452
+ - Execution (spawns, secondary-spawns, reads, writes)
453
+ - Standards (substitution-test, three-label-test, have-nots,
454
+ gate-on-failure)
455
+ - Success-path + failure-path
456
+ - Standards gates between command stages (artifact discipline runs
457
+ independent of the producing agent)
458
+
459
+ ## [0.5.0] - 2026-05-09
460
+
461
+ ### Added (reference content depth)
462
+ - 12 substantive per-tier reference documents at `references/`:
463
+ - `planning/PRD-ANATOMY.md`, `PRD-ANTIPATTERNS.md`
464
+ - `planning/ARCH-ANATOMY.md`, `ARCH-ANTIPATTERNS.md`
465
+ - `planning/ROADMAP-ANATOMY.md`, `STACK-ANATOMY.md`
466
+ - `building/BUILD-VERTICAL-SLICES.md`, `BUILD-WAVES.md`
467
+ - `shipping/DEPLOY-PATTERNS.md`, `OBSERVE-SLO-EXAMPLES.md`,
468
+ `HARDEN-OWASP-WORKSHEETS.md`
469
+ - `orchestration/MODE-DETECTION.md`, `SCALE-DETECTION.md`
470
+ - `shared/GLOSSARY.md`, `ORCHESTRATORS.md`
471
+ - Each with worked examples, antipattern catalogs, concrete guidance
472
+
473
+ ## [0.4.0] - 2026-05-09
474
+
475
+ ### Added
476
+ - **god-mode lifecycle awareness**:
477
+ - god-orchestrator now has explicit Post-Launch Transition phase
478
+ - After `/god-mode` (full-arc), project enters STEADY STATE
479
+ - Steady-state hand-off message lists all 11 ongoing workflows
480
+ - New flag `/god-mode --with-hygiene` runs audit + deps + docs verification
481
+ - `/god-mode --yolo --with-hygiene` enables autonomous hygiene (still pauses on Critical CVEs)
482
+ - **2 new lifecycle slash commands**:
483
+ - `/god-hygiene`: composite health check (audit + deps + docs)
484
+ - `/god-lifecycle`: shows project phase and contextually appropriate workflows
485
+ - **v0.5 scaffolding**:
486
+ - `schema/intent.v1.yaml.json`: JSON Schema for godpowers.yaml (intent)
487
+ - `schema/state.v1.json`: JSON Schema for state.json (facts)
488
+ - `schema/events.v1.json`: OpenTelemetry-shape event vocabulary
489
+ - `lib/README.md`: planned runtime modules with target versions
490
+ - `docs/RFC/0002-workflow-yaml-v1.md`: workflow language design
491
+ - **Distribution prep**:
492
+ - `.npmignore` excludes dev files from npm package
493
+ - `package.json` repository, homepage, bugs fields populated
494
+ - `scripts/release.sh`: tag + publish flow with verification
495
+ - **First-party extension scaffold**:
496
+ - `extensions/security-pack/manifest.yaml`
497
+ - `extensions/security-pack/agents/god-soc2-auditor.md`
498
+ - `extensions/security-pack/skills/god-soc2-audit.md`
499
+ - `extensions/security-pack/README.md`
500
+ - Demonstrates extension shape for v0.8 implementation
501
+ - **Integration test scaffold**:
502
+ - `tests/README.md`: three-layer test strategy
503
+ - `tests/integration/README.md`: planned end-to-end tests with record/replay
504
+ - Fixture project layout designed for v0.5 implementation
505
+
506
+ - **8 new workflow slash commands** for real-world scenarios beyond greenfield:
507
+ - `/god-feature`: Add a feature to an existing project
508
+ - `/god-hotfix`: Urgent production bug fix (skips planning, expedited deploy)
509
+ - `/god-refactor`: Safe refactor with strict TDD (no behavior change)
510
+ - `/god-spike`: Time-boxed research with throwaway POC
511
+ - `/god-postmortem`: Post-incident investigation (root cause + class-of-bug)
512
+ - `/god-upgrade`: Framework/version migration (expand-contract pattern)
513
+ - `/god-docs`: Write/update docs verified against code
514
+ - `/god-update-deps`: CVE-aware incremental dependency updates
515
+ - **5 new specialist agents**:
516
+ - `god-incident-investigator`: Postmortems with action items + runbook updates
517
+ - `god-spike-runner`: Time-boxed POC with honest findings
518
+ - `god-migration-strategist`: Incremental migrations with rollback per slice
519
+ - `god-docs-writer`: No-lying docs verified against code
520
+ - `god-deps-auditor`: CVE-aware dependency updates with bisect-able commits
521
+ - **5 new templates** for workflow artifacts:
522
+ - `templates/POSTMORTEM.md`
523
+ - `templates/SPIKE.md`
524
+ - `templates/MIGRATION.md`
525
+ - `templates/DOCS-UPDATE-LOG.md`
526
+ - `templates/DEPS-AUDIT.md`
527
+ - **HAVE-NOTS.md catalog extended** with new failure modes for each new
528
+ artifact type (PM-01..PM-08, SP-01..SP-05, MG-01..MG-07, DC-01..DC-05,
529
+ DP-01..DP-06)
530
+ - **Architecture design documents**:
531
+ - `ARCHITECTURE.md`: 16-section canonical design for v1.0 (pure-skill model)
532
+ - `docs/RFC/0000-research-brief.md`: Synthesized research informing the design
533
+ - `docs/RFC/0001-state-model-v1.md`: First detailed RFC
534
+ - `docs/ROADMAP.md`: v0.4 -> v1.0 implementation plan
535
+
536
+ ### Changed
537
+ - `package.json` bumped to 0.4.0 (was stuck on 0.3.0 despite v0.4 work)
538
+ - `install.js` VERSION constant bumped to 0.4.0
539
+ - `/god-next` routing extended to suggest workflows based on user intent
540
+ (feature add, hotfix, refactor, etc.) when project is in steady state
541
+ - README "Other Workflows" section added to command table
542
+ - SessionStart hook updated to suggest new workflows for ambient discovery
543
+ - Smoke test PAIRS extended to verify 8 new skill-to-agent routings
544
+ - Each new agent references its template for structural starting point
545
+
546
+ ### Architecture decisions (documented, not yet implemented)
547
+ - v0.5+ will introduce three load-bearing artifacts: intent.yaml + state.json
548
+ + events.jsonl
549
+ - v0.6 will add forward-only recovery (`/god-undo`, `/god-rollback`)
550
+ - v0.7 will add OTel-shape observability
551
+ - v0.8 will add the skill pack ecosystem
552
+ - v1.0 will freeze schemas
553
+
554
+ ## [0.3.0] - 2026-05-09
555
+
556
+ ### Added
557
+ - **Critical fixes**:
558
+ - Installer now copies `references/` directory (HAVE-NOTS catalog and
559
+ per-tier reference content) so agents can find it in production
560
+ - `--uninstall` flag now actually removes Godpowers from the target runtime
561
+ - Install verification message lists how many commands and agents were
562
+ installed and shows exact next steps
563
+ - Templates explicitly referenced from each tier agent (god-pm references
564
+ PRD.md, god-architect references ARCH.md, etc.)
565
+ - **Mode B (gap-fill) implementation**:
566
+ - god-orchestrator now scans existing artifacts on disk
567
+ - Detects which tiers have passing artifacts and skips them
568
+ - Uses codebase signals (package.json, CI configs, test dirs) to detect
569
+ partial progress
570
+ - **Documentation**:
571
+ - CHANGELOG.md (this file)
572
+ - CONTRIBUTING.md
573
+ - SECURITY.md
574
+ - Per-tier reference subdirectories with placeholder content
575
+
576
+ ### Changed
577
+ - `package.json` version bumped from 0.1.0 to 0.3.0 (was stuck on first commit)
578
+ - Mode D (multi-repo) downgraded from "supported" to "future work" until real
579
+ implementation lands
580
+ - Smoke test em/en-dash check rewritten to use Python instead of buggy bash
581
+ byte-class regex (false-positives on UTF-8 multi-byte chars starting with 0xE2)
582
+ - `/god-init` skill now spawns god-orchestrator for mode/scale detection
583
+ instead of duplicating the logic
584
+ - `/god-audit` skill now explicitly spawns god-auditor agent
585
+
586
+ ### Fixed
587
+ - Smoke test no longer false-positives on block characters or other Unicode
588
+ starting with 0xE2
589
+
590
+ ## [0.2.1] - 2026-05-09
591
+
592
+ ### Added
593
+ - Build phase orchestration explicit in god-orchestrator (4-agent chain per
594
+ slice: god-planner -> god-executor -> god-spec-reviewer -> god-quality-reviewer)
595
+ - `--yolo` flag flows through to specialist agents with documented defaults
596
+ - Critical-finding carve-out: god-harden-auditor never auto-resolves Critical
597
+ findings even with `--yolo`
598
+ - 13 routing checks, 1 build-phase check, 6 YOLO handling checks, 1 carve-out
599
+ check added to smoke test
600
+
601
+ ### Fixed
602
+ - /god-mode could stall on Build phase (orchestrator didn't reference reviewers)
603
+ - /god-mode --yolo could pause at specialist agent pause conditions
604
+ (specialists didn't know about --yolo)
605
+
606
+ ## [0.2.0] - 2026-05-09
607
+
608
+ ### Added
609
+ - 6 artifact templates in `templates/` (PRD, ARCH, ROADMAP, STACK, PROGRESS,
610
+ HARDEN-FINDINGS) with embedded have-nots checklists
611
+ - `references/HAVE-NOTS.md` consolidated catalog with 115 named failure modes
612
+ - 7 new runtimes in installer: Trae, Cline, Kilo, Antigravity, Qwen, CodeBuddy, Pi
613
+ (15 total)
614
+ - 9 new slash commands:
615
+ - `/god-fast` - trivial inline edits
616
+ - `/god-quick` - TDD-discipline tasks below /god-build threshold
617
+ - `/god-explore` - Socratic ideation pre-init
618
+ - `/god-pause-work` - context handoff
619
+ - `/god-resume-work` - context restoration
620
+ - `/god-workstream` - parallel workspace management
621
+ - `/god-sprint` - sprint plan/status/retro
622
+ - `/god-party` - real multi-persona collaboration
623
+ - `/god-build-agent` - custom specialist agent generator
624
+ - 2 new agents: `god-explorer`, `god-retrospective`
625
+ - Mode A/B/C/D detection logic in god-orchestrator
626
+ - Scale detection (trivial/small/medium/large/enterprise)
627
+ - YOLO-DECISIONS.md emission for `--yolo` runs
628
+ - `hooks/pre-tool-use.sh` safety hook
629
+
630
+ ## [0.1.0] - 2026-05-09
631
+
632
+ ### Added
633
+ - Initial release
634
+ - 17 slash commands (skills/) as thin orchestrators
635
+ - 16 specialist agents (agents/) in fresh contexts
636
+ - SessionStart hook
637
+ - Installer for 8 AI coding tool runtimes
638
+ - Smoke test and skill validation infrastructure
639
+ - README, AGENTS.md, LICENSE