@dtt_siye/atool 1.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 (463) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +235 -0
  3. package/VERSION +1 -0
  4. package/agents/code-reviewer.md +29 -0
  5. package/bin/atool.js +235 -0
  6. package/bin/postinstall.js +23 -0
  7. package/hooks/doc-sync-reminder +155 -0
  8. package/hooks/hooks-cursor.json +37 -0
  9. package/hooks/hooks.json +37 -0
  10. package/hooks/prompt-guard +135 -0
  11. package/hooks/session-start +286 -0
  12. package/install.sh +603 -0
  13. package/lib/analyze-source.sh +1265 -0
  14. package/lib/common.sh +1041 -0
  15. package/lib/compute-importance.sh +598 -0
  16. package/lib/detect-stack.sh +354 -0
  17. package/lib/generate-visualization.sh +266 -0
  18. package/lib/install-claude.sh +43 -0
  19. package/lib/install-cursor.sh +281 -0
  20. package/lib/install-hooks.sh +285 -0
  21. package/lib/install-kiro.sh +543 -0
  22. package/lib/install-mcp.sh +99 -0
  23. package/lib/install-skills.sh +129 -0
  24. package/lib/knowledge-graph.sh +1014 -0
  25. package/lib/multi-dimensional-analysis.sh +413 -0
  26. package/lib/pre-scan.sh +1045 -0
  27. package/lib/project-init.sh +552 -0
  28. package/lib/visualization-template.html +545 -0
  29. package/mcp/recommended.json +24 -0
  30. package/package.json +39 -0
  31. package/skills/_superpowers/.claude-plugin/marketplace.json +20 -0
  32. package/skills/_superpowers/.claude-plugin/plugin.json +20 -0
  33. package/skills/_superpowers/.codex/INSTALL.md +67 -0
  34. package/skills/_superpowers/.cursor-plugin/plugin.json +25 -0
  35. package/skills/_superpowers/.gitattributes +18 -0
  36. package/skills/_superpowers/.github/FUNDING.yml +3 -0
  37. package/skills/_superpowers/.github/ISSUE_TEMPLATE/bug_report.md +52 -0
  38. package/skills/_superpowers/.github/ISSUE_TEMPLATE/config.yml +5 -0
  39. package/skills/_superpowers/.github/ISSUE_TEMPLATE/feature_request.md +34 -0
  40. package/skills/_superpowers/.github/ISSUE_TEMPLATE/platform_support.md +23 -0
  41. package/skills/_superpowers/.github/PULL_REQUEST_TEMPLATE.md +87 -0
  42. package/skills/_superpowers/.opencode/INSTALL.md +83 -0
  43. package/skills/_superpowers/.opencode/plugins/superpowers.js +107 -0
  44. package/skills/_superpowers/CHANGELOG.md +13 -0
  45. package/skills/_superpowers/CODE_OF_CONDUCT.md +128 -0
  46. package/skills/_superpowers/GEMINI.md +2 -0
  47. package/skills/_superpowers/LICENSE +21 -0
  48. package/skills/_superpowers/README.md +187 -0
  49. package/skills/_superpowers/RELEASE-NOTES.md +1083 -0
  50. package/skills/_superpowers/agents/code-reviewer.md +48 -0
  51. package/skills/_superpowers/commands/brainstorm.md +5 -0
  52. package/skills/_superpowers/commands/execute-plan.md +5 -0
  53. package/skills/_superpowers/commands/write-plan.md +5 -0
  54. package/skills/_superpowers/docs/README.codex.md +126 -0
  55. package/skills/_superpowers/docs/README.opencode.md +130 -0
  56. package/skills/_superpowers/docs/plans/2025-11-22-opencode-support-design.md +294 -0
  57. package/skills/_superpowers/docs/plans/2025-11-22-opencode-support-implementation.md +1095 -0
  58. package/skills/_superpowers/docs/plans/2025-11-28-skills-improvements-from-user-feedback.md +711 -0
  59. package/skills/_superpowers/docs/plans/2026-01-17-visual-brainstorming.md +571 -0
  60. package/skills/_superpowers/docs/superpowers/plans/2026-01-22-document-review-system.md +301 -0
  61. package/skills/_superpowers/docs/superpowers/plans/2026-02-19-visual-brainstorming-refactor.md +523 -0
  62. package/skills/_superpowers/docs/superpowers/plans/2026-03-11-zero-dep-brainstorm-server.md +479 -0
  63. package/skills/_superpowers/docs/superpowers/plans/2026-03-23-codex-app-compatibility.md +564 -0
  64. package/skills/_superpowers/docs/superpowers/specs/2026-01-22-document-review-system-design.md +136 -0
  65. package/skills/_superpowers/docs/superpowers/specs/2026-02-19-visual-brainstorming-refactor-design.md +162 -0
  66. package/skills/_superpowers/docs/superpowers/specs/2026-03-11-zero-dep-brainstorm-server-design.md +118 -0
  67. package/skills/_superpowers/docs/superpowers/specs/2026-03-23-codex-app-compatibility-design.md +244 -0
  68. package/skills/_superpowers/docs/testing.md +303 -0
  69. package/skills/_superpowers/docs/windows/polyglot-hooks.md +212 -0
  70. package/skills/_superpowers/gemini-extension.json +6 -0
  71. package/skills/_superpowers/hooks/hooks-cursor.json +10 -0
  72. package/skills/_superpowers/hooks/hooks.json +16 -0
  73. package/skills/_superpowers/hooks/run-hook.cmd +46 -0
  74. package/skills/_superpowers/hooks/session-start +57 -0
  75. package/skills/_superpowers/package.json +6 -0
  76. package/skills/_superpowers/skills/brainstorming/SKILL.md +164 -0
  77. package/skills/_superpowers/skills/brainstorming/scripts/frame-template.html +214 -0
  78. package/skills/_superpowers/skills/brainstorming/scripts/helper.js +88 -0
  79. package/skills/_superpowers/skills/brainstorming/scripts/server.cjs +354 -0
  80. package/skills/_superpowers/skills/brainstorming/scripts/start-server.sh +148 -0
  81. package/skills/_superpowers/skills/brainstorming/scripts/stop-server.sh +56 -0
  82. package/skills/_superpowers/skills/brainstorming/spec-document-reviewer-prompt.md +49 -0
  83. package/skills/_superpowers/skills/brainstorming/visual-companion.md +287 -0
  84. package/skills/_superpowers/skills/dispatching-parallel-agents/SKILL.md +182 -0
  85. package/skills/_superpowers/skills/executing-plans/SKILL.md +70 -0
  86. package/skills/_superpowers/skills/finishing-a-development-branch/SKILL.md +200 -0
  87. package/skills/_superpowers/skills/receiving-code-review/SKILL.md +213 -0
  88. package/skills/_superpowers/skills/requesting-code-review/SKILL.md +105 -0
  89. package/skills/_superpowers/skills/requesting-code-review/code-reviewer.md +146 -0
  90. package/skills/_superpowers/skills/subagent-driven-development/SKILL.md +277 -0
  91. package/skills/_superpowers/skills/subagent-driven-development/code-quality-reviewer-prompt.md +26 -0
  92. package/skills/_superpowers/skills/subagent-driven-development/implementer-prompt.md +113 -0
  93. package/skills/_superpowers/skills/subagent-driven-development/spec-reviewer-prompt.md +61 -0
  94. package/skills/_superpowers/skills/systematic-debugging/CREATION-LOG.md +119 -0
  95. package/skills/_superpowers/skills/systematic-debugging/SKILL.md +296 -0
  96. package/skills/_superpowers/skills/systematic-debugging/condition-based-waiting-example.ts +158 -0
  97. package/skills/_superpowers/skills/systematic-debugging/condition-based-waiting.md +115 -0
  98. package/skills/_superpowers/skills/systematic-debugging/defense-in-depth.md +122 -0
  99. package/skills/_superpowers/skills/systematic-debugging/find-polluter.sh +63 -0
  100. package/skills/_superpowers/skills/systematic-debugging/root-cause-tracing.md +169 -0
  101. package/skills/_superpowers/skills/systematic-debugging/test-academic.md +14 -0
  102. package/skills/_superpowers/skills/systematic-debugging/test-pressure-1.md +58 -0
  103. package/skills/_superpowers/skills/systematic-debugging/test-pressure-2.md +68 -0
  104. package/skills/_superpowers/skills/systematic-debugging/test-pressure-3.md +69 -0
  105. package/skills/_superpowers/skills/test-driven-development/SKILL.md +371 -0
  106. package/skills/_superpowers/skills/test-driven-development/testing-anti-patterns.md +299 -0
  107. package/skills/_superpowers/skills/using-git-worktrees/SKILL.md +218 -0
  108. package/skills/_superpowers/skills/using-superpowers/SKILL.md +115 -0
  109. package/skills/_superpowers/skills/using-superpowers/references/codex-tools.md +100 -0
  110. package/skills/_superpowers/skills/using-superpowers/references/gemini-tools.md +33 -0
  111. package/skills/_superpowers/skills/verification-before-completion/SKILL.md +139 -0
  112. package/skills/_superpowers/skills/writing-plans/SKILL.md +152 -0
  113. package/skills/_superpowers/skills/writing-plans/plan-document-reviewer-prompt.md +49 -0
  114. package/skills/_superpowers/skills/writing-skills/SKILL.md +655 -0
  115. package/skills/_superpowers/skills/writing-skills/anthropic-best-practices.md +1150 -0
  116. package/skills/_superpowers/skills/writing-skills/examples/CLAUDE_MD_TESTING.md +189 -0
  117. package/skills/_superpowers/skills/writing-skills/graphviz-conventions.dot +172 -0
  118. package/skills/_superpowers/skills/writing-skills/persuasion-principles.md +187 -0
  119. package/skills/_superpowers/skills/writing-skills/render-graphs.js +168 -0
  120. package/skills/_superpowers/skills/writing-skills/testing-skills-with-subagents.md +384 -0
  121. package/skills/_superpowers/tests/brainstorm-server/package-lock.json +36 -0
  122. package/skills/_superpowers/tests/brainstorm-server/package.json +10 -0
  123. package/skills/_superpowers/tests/brainstorm-server/server.test.js +427 -0
  124. package/skills/_superpowers/tests/brainstorm-server/windows-lifecycle.test.sh +351 -0
  125. package/skills/_superpowers/tests/brainstorm-server/ws-protocol.test.js +392 -0
  126. package/skills/_superpowers/tests/claude-code/README.md +158 -0
  127. package/skills/_superpowers/tests/claude-code/analyze-token-usage.py +168 -0
  128. package/skills/_superpowers/tests/claude-code/run-skill-tests.sh +187 -0
  129. package/skills/_superpowers/tests/claude-code/test-document-review-system.sh +177 -0
  130. package/skills/_superpowers/tests/claude-code/test-helpers.sh +202 -0
  131. package/skills/_superpowers/tests/claude-code/test-subagent-driven-development-integration.sh +314 -0
  132. package/skills/_superpowers/tests/claude-code/test-subagent-driven-development.sh +165 -0
  133. package/skills/_superpowers/tests/explicit-skill-requests/prompts/action-oriented.txt +3 -0
  134. package/skills/_superpowers/tests/explicit-skill-requests/prompts/after-planning-flow.txt +17 -0
  135. package/skills/_superpowers/tests/explicit-skill-requests/prompts/claude-suggested-it.txt +11 -0
  136. package/skills/_superpowers/tests/explicit-skill-requests/prompts/i-know-what-sdd-means.txt +8 -0
  137. package/skills/_superpowers/tests/explicit-skill-requests/prompts/mid-conversation-execute-plan.txt +3 -0
  138. package/skills/_superpowers/tests/explicit-skill-requests/prompts/please-use-brainstorming.txt +1 -0
  139. package/skills/_superpowers/tests/explicit-skill-requests/prompts/skip-formalities.txt +3 -0
  140. package/skills/_superpowers/tests/explicit-skill-requests/prompts/subagent-driven-development-please.txt +1 -0
  141. package/skills/_superpowers/tests/explicit-skill-requests/prompts/use-systematic-debugging.txt +1 -0
  142. package/skills/_superpowers/tests/explicit-skill-requests/run-all.sh +70 -0
  143. package/skills/_superpowers/tests/explicit-skill-requests/run-claude-describes-sdd.sh +100 -0
  144. package/skills/_superpowers/tests/explicit-skill-requests/run-extended-multiturn-test.sh +113 -0
  145. package/skills/_superpowers/tests/explicit-skill-requests/run-haiku-test.sh +144 -0
  146. package/skills/_superpowers/tests/explicit-skill-requests/run-multiturn-test.sh +143 -0
  147. package/skills/_superpowers/tests/explicit-skill-requests/run-test.sh +136 -0
  148. package/skills/_superpowers/tests/opencode/run-tests.sh +163 -0
  149. package/skills/_superpowers/tests/opencode/setup.sh +73 -0
  150. package/skills/_superpowers/tests/opencode/test-plugin-loading.sh +72 -0
  151. package/skills/_superpowers/tests/opencode/test-priority.sh +198 -0
  152. package/skills/_superpowers/tests/opencode/test-tools.sh +104 -0
  153. package/skills/_superpowers/tests/skill-triggering/prompts/dispatching-parallel-agents.txt +8 -0
  154. package/skills/_superpowers/tests/skill-triggering/prompts/executing-plans.txt +1 -0
  155. package/skills/_superpowers/tests/skill-triggering/prompts/requesting-code-review.txt +3 -0
  156. package/skills/_superpowers/tests/skill-triggering/prompts/systematic-debugging.txt +11 -0
  157. package/skills/_superpowers/tests/skill-triggering/prompts/test-driven-development.txt +7 -0
  158. package/skills/_superpowers/tests/skill-triggering/prompts/writing-plans.txt +10 -0
  159. package/skills/_superpowers/tests/skill-triggering/run-all.sh +60 -0
  160. package/skills/_superpowers/tests/skill-triggering/run-test.sh +88 -0
  161. package/skills/_superpowers/tests/subagent-driven-dev/go-fractals/design.md +81 -0
  162. package/skills/_superpowers/tests/subagent-driven-dev/go-fractals/plan.md +172 -0
  163. package/skills/_superpowers/tests/subagent-driven-dev/go-fractals/scaffold.sh +45 -0
  164. package/skills/_superpowers/tests/subagent-driven-dev/run-test.sh +106 -0
  165. package/skills/_superpowers/tests/subagent-driven-dev/svelte-todo/design.md +70 -0
  166. package/skills/_superpowers/tests/subagent-driven-dev/svelte-todo/plan.md +222 -0
  167. package/skills/_superpowers/tests/subagent-driven-dev/svelte-todo/scaffold.sh +46 -0
  168. package/skills/ai-project-architecture/SKILL.md +632 -0
  169. package/skills/ai-project-architecture/reference/structure-rules.md +406 -0
  170. package/skills/ai-project-architecture/templates/compliance-report.md +300 -0
  171. package/skills/ai-project-architecture/templates/migration-plan.md +433 -0
  172. package/skills/ai-project-architecture/templates/verification-checklist.md +408 -0
  173. package/skills/android-conventions/SKILL.md +125 -0
  174. package/skills/atool-init/SKILL.md +141 -0
  175. package/skills/clarify-before-build/SKILL.md +107 -0
  176. package/skills/code-review/SKILL.md +406 -0
  177. package/skills/code-review/rules/architecture.md +285 -0
  178. package/skills/code-review/rules/coupling-cohesion.md +309 -0
  179. package/skills/code-review/rules/dead-code.md +115 -0
  180. package/skills/code-review/rules/deprecation-debt.md +279 -0
  181. package/skills/code-review/rules/duplication.md +104 -0
  182. package/skills/code-review/rules/error-security.md +143 -0
  183. package/skills/code-review/rules/maintainability.md +203 -0
  184. package/skills/code-review/rules/quality.md +158 -0
  185. package/skills/devops-conventions/SKILL.md +205 -0
  186. package/skills/doc-coauthoring/SKILL.md +392 -0
  187. package/skills/doc-standards-enforcer/SKILL.md +290 -0
  188. package/skills/doc-standards-enforcer/examples/valid-document-example.md +67 -0
  189. package/skills/doc-standards-enforcer/references/101-standards-summary.md +318 -0
  190. package/skills/doc-standards-enforcer/scripts/check_references.py +175 -0
  191. package/skills/doc-standards-enforcer/scripts/fix_common_issues.py +303 -0
  192. package/skills/doc-standards-enforcer/scripts/validate_doc_standards.py +332 -0
  193. package/skills/docx/LICENSE.txt +30 -0
  194. package/skills/docx/SKILL.md +200 -0
  195. package/skills/docx/docx-js.md +350 -0
  196. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  197. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  198. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  199. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  200. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  201. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  202. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  203. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  204. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  205. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  206. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  207. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  208. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  209. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  210. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  211. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  212. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  213. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  214. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  215. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  216. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  217. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  218. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  219. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  220. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  221. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  222. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  223. package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  224. package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  225. package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  226. package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  227. package/skills/docx/ooxml/schemas/mce/mc.xsd +75 -0
  228. package/skills/docx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
  229. package/skills/docx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
  230. package/skills/docx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
  231. package/skills/docx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
  232. package/skills/docx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
  233. package/skills/docx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  234. package/skills/docx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
  235. package/skills/docx/ooxml/scripts/pack.py +159 -0
  236. package/skills/docx/ooxml/scripts/unpack.py +29 -0
  237. package/skills/docx/ooxml/scripts/validate.py +69 -0
  238. package/skills/docx/ooxml/scripts/validation/__init__.py +15 -0
  239. package/skills/docx/ooxml/scripts/validation/base.py +951 -0
  240. package/skills/docx/ooxml/scripts/validation/docx.py +274 -0
  241. package/skills/docx/ooxml/scripts/validation/pptx.py +315 -0
  242. package/skills/docx/ooxml/scripts/validation/redlining.py +279 -0
  243. package/skills/docx/ooxml.md +610 -0
  244. package/skills/docx/scripts/__init__.py +1 -0
  245. package/skills/docx/scripts/document.py +1276 -0
  246. package/skills/docx/scripts/templates/comments.xml +3 -0
  247. package/skills/docx/scripts/templates/commentsExtended.xml +3 -0
  248. package/skills/docx/scripts/templates/commentsExtensible.xml +3 -0
  249. package/skills/docx/scripts/templates/commentsIds.xml +3 -0
  250. package/skills/docx/scripts/templates/people.xml +3 -0
  251. package/skills/docx/scripts/utilities.py +374 -0
  252. package/skills/flutter-conventions/SKILL.md +70 -0
  253. package/skills/go-conventions/SKILL.md +230 -0
  254. package/skills/harmony-conventions/SKILL.md +156 -0
  255. package/skills/java-conventions/SKILL.md +277 -0
  256. package/skills/pdf/LICENSE.txt +30 -0
  257. package/skills/pdf/SKILL.md +297 -0
  258. package/skills/pdf/forms.md +205 -0
  259. package/skills/pdf/reference.md +612 -0
  260. package/skills/pdf/scripts/check_bounding_boxes.py +70 -0
  261. package/skills/pdf/scripts/check_bounding_boxes_test.py +226 -0
  262. package/skills/pdf/scripts/check_fillable_fields.py +12 -0
  263. package/skills/pdf/scripts/convert_pdf_to_images.py +35 -0
  264. package/skills/pdf/scripts/create_validation_image.py +41 -0
  265. package/skills/pdf/scripts/extract_form_field_info.py +152 -0
  266. package/skills/pdf/scripts/fill_fillable_fields.py +114 -0
  267. package/skills/pdf/scripts/fill_pdf_form_with_annotations.py +108 -0
  268. package/skills/pptx/LICENSE.txt +30 -0
  269. package/skills/pptx/SKILL.md +487 -0
  270. package/skills/pptx/html2pptx.md +625 -0
  271. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  272. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  273. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  274. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  275. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  276. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  277. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  278. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  279. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  280. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  281. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  282. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  283. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  284. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  285. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  286. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  287. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  288. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  289. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  290. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  291. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  292. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  293. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  294. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  295. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  296. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  297. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  298. package/skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  299. package/skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  300. package/skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  301. package/skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  302. package/skills/pptx/ooxml/schemas/mce/mc.xsd +75 -0
  303. package/skills/pptx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
  304. package/skills/pptx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
  305. package/skills/pptx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
  306. package/skills/pptx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
  307. package/skills/pptx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
  308. package/skills/pptx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  309. package/skills/pptx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
  310. package/skills/pptx/ooxml/scripts/pack.py +159 -0
  311. package/skills/pptx/ooxml/scripts/unpack.py +29 -0
  312. package/skills/pptx/ooxml/scripts/validate.py +69 -0
  313. package/skills/pptx/ooxml/scripts/validation/__init__.py +15 -0
  314. package/skills/pptx/ooxml/scripts/validation/base.py +951 -0
  315. package/skills/pptx/ooxml/scripts/validation/docx.py +274 -0
  316. package/skills/pptx/ooxml/scripts/validation/pptx.py +315 -0
  317. package/skills/pptx/ooxml/scripts/validation/redlining.py +279 -0
  318. package/skills/pptx/ooxml.md +427 -0
  319. package/skills/pptx/scripts/html2pptx.js +979 -0
  320. package/skills/pptx/scripts/inventory.py +1020 -0
  321. package/skills/pptx/scripts/rearrange.py +231 -0
  322. package/skills/pptx/scripts/replace.py +385 -0
  323. package/skills/pptx/scripts/thumbnail.py +450 -0
  324. package/skills/project-analyze/SKILL.md +270 -0
  325. package/skills/project-analyze/phases/phase0-discovery.md +278 -0
  326. package/skills/project-analyze/phases/phase0.5-prescan.md +139 -0
  327. package/skills/project-analyze/phases/phase1-inventory.md +94 -0
  328. package/skills/project-analyze/phases/phase2-deep-analysis.md +249 -0
  329. package/skills/project-analyze/phases/phase2a-l4-analysis.md +94 -0
  330. package/skills/project-analyze/phases/phase2b-l5-analysis.md +97 -0
  331. package/skills/project-analyze/phases/phase3-knowledge-graph.md +120 -0
  332. package/skills/project-analyze/phases/phase3a-multi-dimensional.md +61 -0
  333. package/skills/project-analyze/phases/phase4-code-quality.md +81 -0
  334. package/skills/project-analyze/phases/phase5-synthesis.md +284 -0
  335. package/skills/project-analyze/phases/phase6-validation.md +179 -0
  336. package/skills/project-analyze/prompts/code-review-agent.md +122 -0
  337. package/skills/project-analyze/prompts/deep-analysis-agent.md +107 -0
  338. package/skills/project-analyze/prompts/inventory-agent.md +67 -0
  339. package/skills/project-analyze/prompts/l4-analysis-agent.md +98 -0
  340. package/skills/project-analyze/rules/android.md +282 -0
  341. package/skills/project-analyze/rules/devops.md +443 -0
  342. package/skills/project-analyze/rules/generic.md +243 -0
  343. package/skills/project-analyze/rules/go.md +289 -0
  344. package/skills/project-analyze/rules/harmony.md +257 -0
  345. package/skills/project-analyze/rules/java.md +507 -0
  346. package/skills/project-analyze/rules/mobile-flutter.md +315 -0
  347. package/skills/project-analyze/rules/mobile-react-native.md +283 -0
  348. package/skills/project-analyze/rules/mobile-swift.md +323 -0
  349. package/skills/project-analyze/rules/python.md +317 -0
  350. package/skills/project-analyze/rules/rust-tauri.md +243 -0
  351. package/skills/project-analyze/rules/rust.md +296 -0
  352. package/skills/project-analyze/rules/web-nextjs.md +364 -0
  353. package/skills/project-analyze/rules/web-react.md +298 -0
  354. package/skills/project-analyze/rules/web-vue.md +378 -0
  355. package/skills/project-analyze/rules/web.md +390 -0
  356. package/skills/project-query/SKILL.md +224 -0
  357. package/skills/project-query/rules/query-templates.md +212 -0
  358. package/skills/python-conventions/SKILL.md +169 -0
  359. package/skills/react-native-conventions/SKILL.md +73 -0
  360. package/skills/requirements-writer/README.md +153 -0
  361. package/skills/requirements-writer/SKILL.md +341 -0
  362. package/skills/requirements-writer/examples/prd-outline-example.md +217 -0
  363. package/skills/requirements-writer/templates/module-prd-template.md +362 -0
  364. package/skills/requirements-writer/templates/prd-outline-template.md +185 -0
  365. package/skills/requirements-writer/templates/user-story-template.md +1125 -0
  366. package/skills/rust-conventions/SKILL.md +361 -0
  367. package/skills/smart-dispatch/SKILL.md +296 -0
  368. package/skills/smart-dispatch/implementer-prompt.md +146 -0
  369. package/skills/smart-dispatch/reviewer-prompt.md +199 -0
  370. package/skills/software-architecture/SKILL.md +278 -0
  371. package/skills/swift-conventions/SKILL.md +72 -0
  372. package/skills/ui-ux-pro/SKILL.md +140 -0
  373. package/skills/verification-before-completion/SKILL.md +119 -0
  374. package/skills/web-conventions/SKILL.md +259 -0
  375. package/skills/webapp-testing/LICENSE.txt +202 -0
  376. package/skills/webapp-testing/SKILL.md +97 -0
  377. package/skills/webapp-testing/examples/console_logging.py +35 -0
  378. package/skills/webapp-testing/examples/element_discovery.py +40 -0
  379. package/skills/webapp-testing/examples/static_html_automation.py +33 -0
  380. package/skills/webapp-testing/scripts/with_server.py +106 -0
  381. package/skills/writing-plans/SKILL.md +144 -0
  382. package/skills/xlsx/LICENSE.txt +30 -0
  383. package/skills/xlsx/SKILL.md +292 -0
  384. package/skills/xlsx/recalc.py +178 -0
  385. package/templates/CLAUDE.md.android +57 -0
  386. package/templates/CLAUDE.md.devops +50 -0
  387. package/templates/CLAUDE.md.generic +34 -0
  388. package/templates/CLAUDE.md.go +67 -0
  389. package/templates/CLAUDE.md.harmony +54 -0
  390. package/templates/CLAUDE.md.java +56 -0
  391. package/templates/CLAUDE.md.mobile-flutter +38 -0
  392. package/templates/CLAUDE.md.mobile-react-native +37 -0
  393. package/templates/CLAUDE.md.mobile-swift +40 -0
  394. package/templates/CLAUDE.md.python +65 -0
  395. package/templates/CLAUDE.md.rust +68 -0
  396. package/templates/CLAUDE.md.rust-tauri +120 -0
  397. package/templates/CLAUDE.md.web +63 -0
  398. package/templates/COMPONENT.md.android +58 -0
  399. package/templates/COMPONENT.md.devops +54 -0
  400. package/templates/COMPONENT.md.generic +35 -0
  401. package/templates/COMPONENT.md.go +59 -0
  402. package/templates/COMPONENT.md.harmony +63 -0
  403. package/templates/COMPONENT.md.java +69 -0
  404. package/templates/COMPONENT.md.mobile-flutter +56 -0
  405. package/templates/COMPONENT.md.mobile-react-native +55 -0
  406. package/templates/COMPONENT.md.mobile-swift +56 -0
  407. package/templates/COMPONENT.md.python +67 -0
  408. package/templates/COMPONENT.md.rust +57 -0
  409. package/templates/COMPONENT.md.rust-tauri +66 -0
  410. package/templates/COMPONENT.md.web +39 -0
  411. package/templates/README.md.android +71 -0
  412. package/templates/README.md.devops +68 -0
  413. package/templates/README.md.generic +39 -0
  414. package/templates/README.md.go +70 -0
  415. package/templates/README.md.harmony +72 -0
  416. package/templates/README.md.java +73 -0
  417. package/templates/README.md.mobile-flutter +69 -0
  418. package/templates/README.md.mobile-react-native +65 -0
  419. package/templates/README.md.mobile-swift +69 -0
  420. package/templates/README.md.monorepo +59 -0
  421. package/templates/README.md.python +66 -0
  422. package/templates/README.md.rust +69 -0
  423. package/templates/README.md.rust-tauri +149 -0
  424. package/templates/README.md.web +94 -0
  425. package/templates/UI_STYLE.md.android +74 -0
  426. package/templates/UI_STYLE.md.devops +50 -0
  427. package/templates/UI_STYLE.md.generic +31 -0
  428. package/templates/UI_STYLE.md.go +49 -0
  429. package/templates/UI_STYLE.md.harmony +71 -0
  430. package/templates/UI_STYLE.md.java +61 -0
  431. package/templates/UI_STYLE.md.mobile-flutter +70 -0
  432. package/templates/UI_STYLE.md.mobile-react-native +71 -0
  433. package/templates/UI_STYLE.md.mobile-swift +71 -0
  434. package/templates/UI_STYLE.md.python +58 -0
  435. package/templates/UI_STYLE.md.rust +52 -0
  436. package/templates/UI_STYLE.md.rust-tauri +102 -0
  437. package/templates/UI_STYLE.md.web +92 -0
  438. package/templates/cursor-rules.android.mdc +33 -0
  439. package/templates/cursor-rules.devops.mdc +32 -0
  440. package/templates/cursor-rules.generic.mdc +25 -0
  441. package/templates/cursor-rules.go.mdc +34 -0
  442. package/templates/cursor-rules.harmony.mdc +30 -0
  443. package/templates/cursor-rules.java.mdc +30 -0
  444. package/templates/cursor-rules.mobile-flutter.mdc +42 -0
  445. package/templates/cursor-rules.mobile-react-native.mdc +43 -0
  446. package/templates/cursor-rules.mobile-swift.mdc +42 -0
  447. package/templates/cursor-rules.python.mdc +33 -0
  448. package/templates/cursor-rules.rust-tauri.mdc +67 -0
  449. package/templates/cursor-rules.rust.mdc +30 -0
  450. package/templates/cursor-rules.web.mdc +30 -0
  451. package/templates/kiro-steering.android.md +39 -0
  452. package/templates/kiro-steering.devops.md +32 -0
  453. package/templates/kiro-steering.generic.md +28 -0
  454. package/templates/kiro-steering.go.md +41 -0
  455. package/templates/kiro-steering.harmony.md +36 -0
  456. package/templates/kiro-steering.java.md +37 -0
  457. package/templates/kiro-steering.mobile-flutter.md +73 -0
  458. package/templates/kiro-steering.mobile-react-native.md +71 -0
  459. package/templates/kiro-steering.mobile-swift.md +62 -0
  460. package/templates/kiro-steering.python.md +34 -0
  461. package/templates/kiro-steering.rust-tauri.md +50 -0
  462. package/templates/kiro-steering.rust.md +36 -0
  463. package/templates/kiro-steering.web.md +41 -0
@@ -0,0 +1,1083 @@
1
+ # Superpowers Release Notes
2
+
3
+ ## v5.0.6 (2026-03-24)
4
+
5
+ ### Inline Self-Review Replaces Subagent Review Loops
6
+
7
+ The subagent review loop (dispatching a fresh agent to review plans/specs) doubled execution time (~25 min overhead) without measurably improving plan quality. Regression testing across 5 versions with 5 trials each showed identical quality scores regardless of whether the review loop ran.
8
+
9
+ - **brainstorming** — replaced Spec Review Loop (subagent dispatch + 3-iteration cap) with inline Spec Self-Review checklist: placeholder scan, internal consistency, scope check, ambiguity check
10
+ - **writing-plans** — replaced Plan Review Loop (subagent dispatch + 3-iteration cap) with inline Self-Review checklist: spec coverage, placeholder scan, type consistency
11
+ - **writing-plans** — added explicit "No Placeholders" section defining plan failures (TBD, vague descriptions, undefined references, "similar to Task N")
12
+ - Self-review catches 3-5 real bugs per run in ~30s instead of ~25 min, with comparable defect rates to the subagent approach
13
+
14
+ ### Brainstorm Server
15
+
16
+ - **Session directory restructured** — the brainstorm server session directory now contains two peer subdirectories: `content/` (HTML files served to the browser) and `state/` (events, server-info, pid, log). Previously, server state and user interaction data were stored alongside served content, making them accessible over HTTP. The `screen_dir` and `state_dir` paths are both included in the server-started JSON. (Reported by 吉田仁)
17
+
18
+ ### Bug Fixes
19
+
20
+ - **Owner-PID lifecycle fixes** — the brainstorm server's owner-PID monitoring had two bugs causing false shutdowns within 60 seconds: (1) EPERM from cross-user PIDs (Tailscale SSH, etc.) was treated as "process dead", and (2) on WSL the grandparent PID resolves to a short-lived subprocess that exits before the first lifecycle check. Fixed by treating EPERM as "alive" and validating the owner PID at startup — if it's already dead, monitoring is disabled and the server relies on the 30-minute idle timeout. This also removes the Windows/MSYS2-specific carve-out from `start-server.sh` since the server now handles it generically. (#879)
21
+ - **writing-skills** — corrected false claim that SKILL.md frontmatter supports "only two fields"; now says "two required fields" and links to the agentskills.io specification for all supported fields (PR #882 by @arittr)
22
+
23
+ ### Codex App Compatibility
24
+
25
+ - **codex-tools** — added named agent dispatch mapping documenting how to translate Claude Code's named agent types to Codex's `spawn_agent` with worker roles (PR #647 by @arittr)
26
+ - **codex-tools** — added environment detection and Codex App finishing sections for worktree-aware skills (by @arittr)
27
+ - **Design spec** — added Codex App compatibility design spec (PRI-823) covering read-only environment detection, worktree-safe skill behavior, and sandbox fallback patterns (by @arittr)
28
+
29
+ ## v5.0.5 (2026-03-17)
30
+
31
+ ### Bug Fixes
32
+
33
+ - **Brainstorm server ESM fix** — renamed `server.js` → `server.cjs` so the brainstorming server starts correctly on Node.js 22+ where the root `package.json` `"type": "module"` caused `require()` to fail. (PR #784 by @sarbojitrana, fixes #774, #780, #783)
34
+ - **Brainstorm owner-PID on Windows** — skip PID lifecycle monitoring on Windows/MSYS2 where the PID namespace is invisible to Node.js, preventing the server from self-terminating after 60 seconds. (#770, docs from PR #768 by @lucasyhzlu-debug)
35
+ - **stop-server.sh reliability** — verify the server process actually died before reporting success. SIGTERM + 2s wait + SIGKILL fallback. (#723)
36
+
37
+ ### Changed
38
+
39
+ - **Execution handoff** — restore user choice between subagent-driven and inline execution after plan writing. Subagent-driven is recommended but no longer mandatory.
40
+
41
+ ## v5.0.4 (2026-03-16)
42
+
43
+ ### Review Loop Refinements
44
+
45
+ Dramatically reduces token usage and speeds up spec and plan reviews by eliminating unnecessary review passes and tightening reviewer focus.
46
+
47
+ - **Single whole-plan review** — plan reviewer now reviews the complete plan in one pass instead of chunk-by-chunk. Removed all chunk-related concepts (`## Chunk N:` headings, 1000-line chunk limits, per-chunk dispatch).
48
+ - **Raised the bar for blocking issues** — both spec and plan reviewer prompts now include a "Calibration" section: only flag issues that would cause real problems during implementation. Minor wording, stylistic preferences, and formatting quibbles should not block approval.
49
+ - **Reduced max review iterations** — from 5 to 3 for both spec and plan review loops. If the reviewer is calibrated correctly, 3 rounds is plenty.
50
+ - **Streamlined reviewer checklists** — spec reviewer trimmed from 7 categories to 5; plan reviewer from 7 to 4. Removed formatting-focused checks (task syntax, chunk size) in favor of substance (buildability, spec alignment).
51
+
52
+ ### OpenCode
53
+
54
+ - **One-line plugin install** — OpenCode plugin now auto-registers the skills directory via a `config` hook. No symlinks or `skills.paths` config needed. Install is just adding one line to `opencode.json`. (PR #753)
55
+ - **Added `package.json`** so OpenCode can install superpowers as an npm package from git.
56
+
57
+ ### Bug Fixes
58
+
59
+ - **Verify server actually stopped** — `stop-server.sh` now confirms the process is dead before reporting success. SIGTERM + 2s wait + SIGKILL fallback. Reports failure if the process survives. (PR #751)
60
+ - **Generic agent language** — brainstorm companion waiting page now says "the agent" instead of "Claude".
61
+
62
+ ## v5.0.3 (2026-03-15)
63
+
64
+ ### Cursor Support
65
+
66
+ - **Cursor hooks** — added `hooks/hooks-cursor.json` with Cursor's camelCase format (`sessionStart`, `version: 1`) and updated `.cursor-plugin/plugin.json` to reference it. Fixed platform detection in `session-start` to check `CURSOR_PLUGIN_ROOT` first (Cursor may also set `CLAUDE_PLUGIN_ROOT`). (Based on PR #709)
67
+
68
+ ### Bug Fixes
69
+
70
+ - **Stop firing SessionStart hook on `--resume`** — the startup hook was re-injecting context on resumed sessions, which already have the context in their conversation history. The hook now fires only on `startup`, `clear`, and `compact`.
71
+ - **Bash 5.3+ hook hang** — replaced heredoc (`cat <<EOF`) with `printf` in `hooks/session-start`. Fixes indefinite hang on macOS with Homebrew bash 5.3+ caused by a bash regression with large variable expansion in heredocs. (#572, #571)
72
+ - **POSIX-safe hook script** — replaced `${BASH_SOURCE[0]:-$0}` with `$0` in `hooks/session-start`. Fixes "Bad substitution" error on Ubuntu/Debian where `/bin/sh` is dash. (#553)
73
+ - **Portable shebangs** — replaced `#!/bin/bash` with `#!/usr/bin/env bash` in all shell scripts. Fixes execution on NixOS, FreeBSD, and macOS with Homebrew bash where `/bin/bash` is outdated or missing. (#700)
74
+ - **Brainstorm server on Windows** — auto-detect Windows/Git Bash (`OSTYPE=msys*`, `MSYSTEM`) and switch to foreground mode, fixing silent server failure caused by `nohup`/`disown` process reaping. (#737)
75
+ - **Codex docs fix** — replaced deprecated `collab` flag with `multi_agent` in Codex documentation. (PR #749)
76
+
77
+ ## v5.0.2 (2026-03-11)
78
+
79
+ ### Zero-Dependency Brainstorm Server
80
+
81
+ **Removed all vendored node_modules — server.js is now fully self-contained**
82
+
83
+ - Replaced Express/Chokidar/WebSocket dependencies with zero-dependency Node.js server using built-in `http`, `fs`, and `crypto` modules
84
+ - Removed ~1,200 lines of vendored `node_modules/`, `package.json`, and `package-lock.json`
85
+ - Custom WebSocket protocol implementation (RFC 6455 framing, ping/pong, proper close handshake)
86
+ - Native `fs.watch()` file watching replaces Chokidar
87
+ - Full test suite: HTTP serving, WebSocket protocol, file watching, and integration tests
88
+
89
+ ### Brainstorm Server Reliability
90
+
91
+ - **Auto-exit after 30 minutes idle** — server shuts down when no clients are connected, preventing orphaned processes
92
+ - **Owner process tracking** — server monitors the parent harness PID and exits when the owning session dies
93
+ - **Liveness check** — skill verifies server is responsive before reusing an existing instance
94
+ - **Encoding fix** — proper `<meta charset="utf-8">` on served HTML pages
95
+
96
+ ### Subagent Context Isolation
97
+
98
+ - All delegation skills (brainstorming, dispatching-parallel-agents, requesting-code-review, subagent-driven-development, writing-plans) now include context isolation principle
99
+ - Subagents receive only the context they need, preventing context window pollution
100
+
101
+ ## v5.0.1 (2026-03-10)
102
+
103
+ ### Agentskills Compliance
104
+
105
+ **Brainstorm-server moved into skill directory**
106
+
107
+ - Moved `lib/brainstorm-server/` → `skills/brainstorming/scripts/` per the [agentskills.io](https://agentskills.io) specification
108
+ - All `${CLAUDE_PLUGIN_ROOT}/lib/brainstorm-server/` references replaced with relative `scripts/` paths
109
+ - Skills are now fully portable across platforms — no platform-specific env vars needed to locate scripts
110
+ - `lib/` directory removed (was the last remaining content)
111
+
112
+ ### New Features
113
+
114
+ **Gemini CLI extension**
115
+
116
+ - Native Gemini CLI extension support via `gemini-extension.json` and `GEMINI.md` at repo root
117
+ - `GEMINI.md` @imports `using-superpowers` skill and tool mapping table at session start
118
+ - Gemini CLI tool mapping reference (`skills/using-superpowers/references/gemini-tools.md`) — translates Claude Code tool names (Read, Write, Edit, Bash, etc.) to Gemini CLI equivalents (read_file, write_file, replace, etc.)
119
+ - Documents Gemini CLI limitations: no subagent support, skills fall back to `executing-plans`
120
+ - Extension root at repo root for cross-platform compatibility (avoids Windows symlink issues)
121
+ - Install instructions added to README
122
+
123
+ ### Improvements
124
+
125
+ **Multi-platform brainstorm server launch**
126
+
127
+ - Per-platform launch instructions in visual-companion.md: Claude Code (default mode), Codex (auto-foreground via `CODEX_CI`), Gemini CLI (`--foreground` with `is_background`), and fallback for other environments
128
+ - Server now writes startup JSON to `$SCREEN_DIR/.server-info` so agents can find the URL and port even when stdout is hidden by background execution
129
+
130
+ **Brainstorm server dependencies bundled**
131
+
132
+ - `node_modules` vendored into the repo so the brainstorm server works immediately on fresh plugin installs without requiring `npm` at runtime
133
+ - Removed `fsevents` from bundled deps (macOS-only native binary; chokidar falls back gracefully without it)
134
+ - Fallback auto-install via `npm install` if `node_modules` is missing
135
+
136
+ **OpenCode tool mapping fix**
137
+
138
+ - `TodoWrite` → `todowrite` (was incorrectly mapped to `update_plan`); verified against OpenCode source
139
+
140
+ ### Bug Fixes
141
+
142
+ **Windows/Linux: single quotes break SessionStart hook** (#577, #529, #644, PR #585)
143
+
144
+ - Single quotes around `${CLAUDE_PLUGIN_ROOT}` in hooks.json fail on Windows (cmd.exe doesn't recognize single quotes as path delimiters) and on Linux (single quotes prevent variable expansion)
145
+ - Fix: replaced single quotes with escaped double quotes — works across macOS bash, Windows cmd.exe, Windows Git Bash, and Linux, with and without spaces in paths
146
+ - Verified on Windows 11 (NT 10.0.26200.0) with Claude Code 2.1.72 and Git for Windows
147
+
148
+ **Brainstorming spec review loop skipped** (#677)
149
+
150
+ - The spec review loop (dispatch spec-document-reviewer subagent, iterate until approved) existed in the prose "After the Design" section but was missing from the checklist and process flow diagram
151
+ - Since agents follow the diagram and checklist more reliably than prose, the spec review step was being skipped entirely
152
+ - Added step 7 (spec review loop) to the checklist and corresponding nodes to the dot graph
153
+ - Tested with `claude --plugin-dir` and `claude-session-driver`: worker now correctly dispatches the reviewer
154
+
155
+ **Cursor install command** (PR #676)
156
+
157
+ - Fixed Cursor install command in README: `/plugin-add` → `/add-plugin` (confirmed via Cursor 2.5 release announcement)
158
+
159
+ **User review gate in brainstorming** (#565)
160
+
161
+ - Added explicit user review step between spec completion and writing-plans handoff
162
+ - User must approve the spec before implementation planning begins
163
+ - Checklist, process flow, and prose updated with the new gate
164
+
165
+ **Session-start hook emits context only once per platform**
166
+
167
+ - Hook now detects whether it's running in Claude Code or another platform
168
+ - Emits `hookSpecificOutput` for Claude Code, `additional_context` for others — prevents double context injection
169
+
170
+ **Linting fix in token analysis script**
171
+
172
+ - `except:` → `except Exception:` in `tests/claude-code/analyze-token-usage.py`
173
+
174
+ ### Maintenance
175
+
176
+ **Removed dead code**
177
+
178
+ - Deleted `lib/skills-core.js` and its test (`tests/opencode/test-skills-core.js`) — unused since February 2026
179
+ - Removed skills-core existence check from `tests/opencode/test-plugin-loading.sh`
180
+
181
+ ### Community
182
+
183
+ - @karuturi — Claude Code official marketplace install instructions (PR #610)
184
+ - @mvanhorn — session-start hook dual-emit fix, OpenCode tool mapping fix
185
+ - @daniel-graham — linting fix for bare except
186
+ - PR #585 author — Windows/Linux hooks quoting fix
187
+
188
+ ---
189
+
190
+ ## v5.0.0 (2026-03-09)
191
+
192
+ ### Breaking Changes
193
+
194
+ **Specs and plans directory restructured**
195
+
196
+ - Specs (brainstorming output) now save to `docs/superpowers/specs/YYYY-MM-DD-<topic>-design.md`
197
+ - Plans (writing-plans output) now save to `docs/superpowers/plans/YYYY-MM-DD-<feature-name>.md`
198
+ - User preferences for spec/plan locations override these defaults
199
+ - All internal skill references, test files, and example paths updated to match
200
+ - Migration: move existing files from `docs/plans/` to new locations if desired
201
+
202
+ **Subagent-driven development mandatory on capable harnesses**
203
+
204
+ Writing-plans no longer offers a choice between subagent-driven and executing-plans. On harnesses with subagent support (Claude Code, Codex), subagent-driven-development is required. Executing-plans is reserved for harnesses without subagent capability, and now tells the user that Superpowers works better on a subagent-capable platform.
205
+
206
+ **Executing-plans no longer batches**
207
+
208
+ Removed the "execute 3 tasks then stop for review" pattern. Plans now execute continuously, stopping only for blockers.
209
+
210
+ **Slash commands deprecated**
211
+
212
+ `/brainstorm`, `/write-plan`, and `/execute-plan` now show deprecation notices pointing users to the corresponding skills. Commands will be removed in the next major release.
213
+
214
+ ### New Features
215
+
216
+ **Visual brainstorming companion**
217
+
218
+ Optional browser-based companion for brainstorming sessions. When a topic would benefit from visuals, the brainstorming skill offers to show mockups, diagrams, comparisons, and other content in a browser window alongside terminal conversation.
219
+
220
+ - `lib/brainstorm-server/` — WebSocket server with browser helper library, session management scripts, and dark/light themed frame template ("Superpowers Brainstorming" with GitHub link)
221
+ - `skills/brainstorming/visual-companion.md` — Progressive disclosure guide for server workflow, screen authoring, and feedback collection
222
+ - Brainstorming skill adds a visual companion decision point to its process flow: after exploring project context, the skill evaluates whether upcoming questions involve visual content and offers the companion in its own message
223
+ - Per-question decision: even after accepting, each question is evaluated for whether browser or terminal is more appropriate
224
+ - Integration tests in `tests/brainstorm-server/`
225
+
226
+ **Document review system**
227
+
228
+ Automated review loops for spec and plan documents using subagent dispatch:
229
+
230
+ - `skills/brainstorming/spec-document-reviewer-prompt.md` — Reviewer checks completeness, consistency, architecture, and YAGNI
231
+ - `skills/writing-plans/plan-document-reviewer-prompt.md` — Reviewer checks spec alignment, task decomposition, file structure, and file size
232
+ - Brainstorming dispatches spec reviewer after writing the design doc
233
+ - Writing-plans includes chunk-based plan review loop after each section
234
+ - Review loops repeat until approved or escalate after 5 iterations
235
+ - End-to-end tests in `tests/claude-code/test-document-review-system.sh`
236
+ - Design spec and implementation plan in `docs/superpowers/`
237
+
238
+ **Architecture guidance across the skill pipeline**
239
+
240
+ Design-for-isolation and file-size-awareness guidance added to brainstorming, writing-plans, and subagent-driven-development:
241
+
242
+ - **Brainstorming** — New sections: "Design for isolation and clarity" (clear boundaries, well-defined interfaces, independently testable units) and "Working in existing codebases" (follow existing patterns, targeted improvements only)
243
+ - **Writing-plans** — New "File Structure" section: map out files and responsibilities before defining tasks. New "Scope Check" backstop: catch multi-subsystem specs that should have been decomposed during brainstorming
244
+ - **SDD implementer** — New "Code Organization" section (follow plan's file structure, report concerns about growing files) and "When You're in Over Your Head" escalation guidance
245
+ - **SDD code quality reviewer** — Now checks architecture, unit decomposition, plan conformance, and file growth
246
+ - **Spec/plan reviewers** — Architecture and file size added to review criteria
247
+ - **Scope assessment** — Brainstorming now assesses whether a project is too large for a single spec. Multi-subsystem requests are flagged early and decomposed into sub-projects, each with its own spec → plan → implementation cycle
248
+
249
+ **Subagent-driven development improvements**
250
+
251
+ - **Model selection** — Guidance for choosing model capability by task type: cheap models for mechanical implementation, standard for integration, capable for architecture and review
252
+ - **Implementer status protocol** — Subagents now report DONE, DONE_WITH_CONCERNS, BLOCKED, or NEEDS_CONTEXT. Controller handles each status appropriately: re-dispatching with more context, upgrading model capability, breaking tasks apart, or escalating to human
253
+
254
+ ### Improvements
255
+
256
+ **Instruction priority hierarchy**
257
+
258
+ Added explicit priority ordering to using-superpowers:
259
+
260
+ 1. User's explicit instructions (CLAUDE.md, AGENTS.md, direct requests) — highest priority
261
+ 2. Superpowers skills — override default system behavior
262
+ 3. Default system prompt — lowest priority
263
+
264
+ If CLAUDE.md or AGENTS.md says "don't use TDD" and a skill says "always use TDD," the user's instructions win.
265
+
266
+ **SUBAGENT-STOP gate**
267
+
268
+ Added `<SUBAGENT-STOP>` block to using-superpowers. Subagents dispatched for specific tasks now skip the skill instead of activating the 1% rule and invoking full skill workflows.
269
+
270
+ **Multi-platform improvements**
271
+
272
+ - Codex tool mapping moved to progressive disclosure reference file (`references/codex-tools.md`)
273
+ - Platform Adaptation pointer added so non-Claude-Code platforms can find tool equivalents
274
+ - Plan headers now address "agentic workers" instead of "Claude" specifically
275
+ - Collab feature requirement documented in `docs/README.codex.md`
276
+
277
+ **Writing-plans template updates**
278
+
279
+ - Plan steps now use checkbox syntax (`- [ ] **Step N:**`) for progress tracking
280
+ - Plan header references both subagent-driven-development and executing-plans with platform-aware routing
281
+
282
+ ---
283
+
284
+ ## v4.3.1 (2026-02-21)
285
+
286
+ ### Added
287
+
288
+ **Cursor support**
289
+
290
+ Superpowers now works with Cursor's plugin system. Includes a `.cursor-plugin/plugin.json` manifest and Cursor-specific installation instructions in the README. The SessionStart hook output now includes an `additional_context` field alongside the existing `hookSpecificOutput.additionalContext` for Cursor hook compatibility.
291
+
292
+ ### Fixed
293
+
294
+ **Windows: Restored polyglot wrapper for reliable hook execution (#518, #504, #491, #487, #466, #440)**
295
+
296
+ Claude Code's `.sh` auto-detection on Windows was prepending `bash` to the hook command, breaking execution. The fix:
297
+
298
+ - Renamed `session-start.sh` to `session-start` (extensionless) so auto-detection doesn't interfere
299
+ - Restored `run-hook.cmd` polyglot wrapper with multi-location bash discovery (standard Git for Windows paths, then PATH fallback)
300
+ - Exits silently if no bash is found rather than erroring
301
+ - On Unix, the wrapper runs the script directly via `exec bash`
302
+ - Uses POSIX-safe `dirname "$0"` path resolution (works on dash/sh, not just bash)
303
+
304
+ This fixes SessionStart failures on Windows with spaces in paths, missing WSL, `set -euo pipefail` fragility on MSYS, and backslash mangling.
305
+
306
+ ## v4.3.0 (2026-02-12)
307
+
308
+ This fix should dramatically improve superpowers skills compliance and should reduce the chances of Claude entering its native plan mode unintentionally.
309
+
310
+ ### Changed
311
+
312
+ **Brainstorming skill now enforces its workflow instead of describing it**
313
+
314
+ Models were skipping the design phase and jumping straight to implementation skills like frontend-design, or collapsing the entire brainstorming process into a single text block. The skill now uses hard gates, a mandatory checklist, and a graphviz process flow to enforce compliance:
315
+
316
+ - `<HARD-GATE>`: no implementation skills, code, or scaffolding until design is presented and user approves
317
+ - Explicit checklist (6 items) that must be created as tasks and completed in order
318
+ - Graphviz process flow with `writing-plans` as the only valid terminal state
319
+ - Anti-pattern callout for "this is too simple to need a design" — the exact rationalization models use to skip the process
320
+ - Design section sizing based on section complexity, not project complexity
321
+
322
+ **Using-superpowers workflow graph intercepts EnterPlanMode**
323
+
324
+ Added an `EnterPlanMode` intercept to the skill flow graph. When the model is about to enter Claude's native plan mode, it checks whether brainstorming has happened and routes through the brainstorming skill instead. Plan mode is never entered.
325
+
326
+ ### Fixed
327
+
328
+ **SessionStart hook now runs synchronously**
329
+
330
+ Changed `async: true` to `async: false` in hooks.json. When async, the hook could fail to complete before the model's first turn, meaning using-superpowers instructions weren't in context for the first message.
331
+
332
+ ## v4.2.0 (2026-02-05)
333
+
334
+ ### Breaking Changes
335
+
336
+ **Codex: Replaced bootstrap CLI with native skill discovery**
337
+
338
+ The `superpowers-codex` bootstrap CLI, Windows `.cmd` wrapper, and related bootstrap content file have been removed. Codex now uses native skill discovery via `~/.agents/skills/superpowers/` symlink, so the old `use_skill`/`find_skills` CLI tools are no longer needed.
339
+
340
+ Installation is now just clone + symlink (documented in INSTALL.md). No Node.js dependency required. The old `~/.codex/skills/` path is deprecated.
341
+
342
+ ### Fixes
343
+
344
+ **Windows: Fixed Claude Code 2.1.x hook execution (#331)**
345
+
346
+ Claude Code 2.1.x changed how hooks execute on Windows: it now auto-detects `.sh` files in commands and prepends `bash`. This broke the polyglot wrapper pattern because `bash "run-hook.cmd" session-start.sh` tries to execute the `.cmd` file as a bash script.
347
+
348
+ Fix: hooks.json now calls session-start.sh directly. Claude Code 2.1.x handles the bash invocation automatically. Also added .gitattributes to enforce LF line endings for shell scripts (fixes CRLF issues on Windows checkout).
349
+
350
+ **Windows: SessionStart hook runs async to prevent terminal freeze (#404, #413, #414, #419)**
351
+
352
+ The synchronous SessionStart hook blocked the TUI from entering raw mode on Windows, freezing all keyboard input. Running the hook async prevents the freeze while still injecting superpowers context.
353
+
354
+ **Windows: Fixed O(n^2) `escape_for_json` performance**
355
+
356
+ The character-by-character loop using `${input:$i:1}` was O(n^2) in bash due to substring copy overhead. On Windows Git Bash this took 60+ seconds. Replaced with bash parameter substitution (`${s//old/new}`) which runs each pattern as a single C-level pass — 7x faster on macOS, dramatically faster on Windows.
357
+
358
+ **Codex: Fixed Windows/PowerShell invocation (#285, #243)**
359
+
360
+ - Windows doesn't respect shebangs, so directly invoking the extensionless `superpowers-codex` script triggered an "Open with" dialog. All invocations now prefixed with `node`.
361
+ - Fixed `~/` path expansion on Windows — PowerShell doesn't expand `~` when passed as an argument to `node`. Changed to `$HOME` which expands correctly in both bash and PowerShell.
362
+
363
+ **Codex: Fixed path resolution in installer**
364
+
365
+ Used `fileURLToPath()` instead of manual URL pathname parsing to correctly handle paths with spaces and special characters on all platforms.
366
+
367
+ **Codex: Fixed stale skills path in writing-skills**
368
+
369
+ Updated `~/.codex/skills/` reference (deprecated) to `~/.agents/skills/` for native discovery.
370
+
371
+ ### Improvements
372
+
373
+ **Worktree isolation now required before implementation**
374
+
375
+ Added `using-git-worktrees` as a required skill for both `subagent-driven-development` and `executing-plans`. Implementation workflows now explicitly require setting up an isolated worktree before starting work, preventing accidental work directly on main.
376
+
377
+ **Main branch protection softened to require explicit consent**
378
+
379
+ Instead of prohibiting main branch work entirely, the skills now allow it with explicit user consent. More flexible while still ensuring users are aware of the implications.
380
+
381
+ **Simplified installation verification**
382
+
383
+ Removed `/help` command check and specific slash command list from verification steps. Skills are primarily invoked by describing what you want to do, not by running specific commands.
384
+
385
+ **Codex: Clarified subagent tool mapping in bootstrap**
386
+
387
+ Improved documentation of how Codex tools map to Claude Code equivalents for subagent workflows.
388
+
389
+ ### Tests
390
+
391
+ - Added worktree requirement test for subagent-driven-development
392
+ - Added main branch red flag warning test
393
+ - Fixed case sensitivity in skill recognition test assertions
394
+
395
+ ---
396
+
397
+ ## v4.1.1 (2026-01-23)
398
+
399
+ ### Fixes
400
+
401
+ **OpenCode: Standardized on `plugins/` directory per official docs (#343)**
402
+
403
+ OpenCode's official documentation uses `~/.config/opencode/plugins/` (plural). Our docs previously used `plugin/` (singular). While OpenCode accepts both forms, we've standardized on the official convention to avoid confusion.
404
+
405
+ Changes:
406
+ - Renamed `.opencode/plugin/` to `.opencode/plugins/` in repo structure
407
+ - Updated all installation docs (INSTALL.md, README.opencode.md) across all platforms
408
+ - Updated test scripts to match
409
+
410
+ **OpenCode: Fixed symlink instructions (#339, #342)**
411
+
412
+ - Added explicit `rm` before `ln -s` (fixes "file already exists" errors on reinstall)
413
+ - Added missing skills symlink step that was absent from INSTALL.md
414
+ - Updated from deprecated `use_skill`/`find_skills` to native `skill` tool references
415
+
416
+ ---
417
+
418
+ ## v4.1.0 (2026-01-23)
419
+
420
+ ### Breaking Changes
421
+
422
+ **OpenCode: Switched to native skills system**
423
+
424
+ Superpowers for OpenCode now uses OpenCode's native `skill` tool instead of custom `use_skill`/`find_skills` tools. This is a cleaner integration that works with OpenCode's built-in skill discovery.
425
+
426
+ **Migration required:** Skills must be symlinked to `~/.config/opencode/skills/superpowers/` (see updated installation docs).
427
+
428
+ ### Fixes
429
+
430
+ **OpenCode: Fixed agent reset on session start (#226)**
431
+
432
+ The previous bootstrap injection method using `session.prompt({ noReply: true })` caused OpenCode to reset the selected agent to "build" on first message. Now uses `experimental.chat.system.transform` hook which modifies the system prompt directly without side effects.
433
+
434
+ **OpenCode: Fixed Windows installation (#232)**
435
+
436
+ - Removed dependency on `skills-core.js` (eliminates broken relative imports when file is copied instead of symlinked)
437
+ - Added comprehensive Windows installation docs for cmd.exe, PowerShell, and Git Bash
438
+ - Documented proper symlink vs junction usage for each platform
439
+
440
+ **Claude Code: Fixed Windows hook execution for Claude Code 2.1.x**
441
+
442
+ Claude Code 2.1.x changed how hooks execute on Windows: it now auto-detects `.sh` files in commands and prepends `bash `. This broke the polyglot wrapper pattern because `bash "run-hook.cmd" session-start.sh` tries to execute the .cmd file as a bash script.
443
+
444
+ Fix: hooks.json now calls session-start.sh directly. Claude Code 2.1.x handles the bash invocation automatically. Also added .gitattributes to enforce LF line endings for shell scripts (fixes CRLF issues on Windows checkout).
445
+
446
+ ---
447
+
448
+ ## v4.0.3 (2025-12-26)
449
+
450
+ ### Improvements
451
+
452
+ **Strengthened using-superpowers skill for explicit skill requests**
453
+
454
+ Addressed a failure mode where Claude would skip invoking a skill even when the user explicitly requested it by name (e.g., "subagent-driven-development, please"). Claude would think "I know what that means" and start working directly instead of loading the skill.
455
+
456
+ Changes:
457
+ - Updated "The Rule" to say "Invoke relevant or requested skills" instead of "Check for skills" - emphasizing active invocation over passive checking
458
+ - Added "BEFORE any response or action" - the original wording only mentioned "response" but Claude would sometimes take action without responding first
459
+ - Added reassurance that invoking a wrong skill is okay - reduces hesitation
460
+ - Added new red flag: "I know what that means" → Knowing the concept ≠ using the skill
461
+
462
+ **Added explicit skill request tests**
463
+
464
+ New test suite in `tests/explicit-skill-requests/` that verifies Claude correctly invokes skills when users request them by name. Includes single-turn and multi-turn test scenarios.
465
+
466
+ ## v4.0.2 (2025-12-23)
467
+
468
+ ### Fixes
469
+
470
+ **Slash commands now user-only**
471
+
472
+ Added `disable-model-invocation: true` to all three slash commands (`/brainstorm`, `/execute-plan`, `/write-plan`). Claude can no longer invoke these commands via the Skill tool—they're restricted to manual user invocation only.
473
+
474
+ The underlying skills (`superpowers:brainstorming`, `superpowers:executing-plans`, `superpowers:writing-plans`) remain available for Claude to invoke autonomously. This change prevents confusion when Claude would invoke a command that just redirects to a skill anyway.
475
+
476
+ ## v4.0.1 (2025-12-23)
477
+
478
+ ### Fixes
479
+
480
+ **Clarified how to access skills in Claude Code**
481
+
482
+ Fixed a confusing pattern where Claude would invoke a skill via the Skill tool, then try to Read the skill file separately. The `using-superpowers` skill now explicitly states that the Skill tool loads skill content directly—no need to read files.
483
+
484
+ - Added "How to Access Skills" section to `using-superpowers`
485
+ - Changed "read the skill" → "invoke the skill" in instructions
486
+ - Updated slash commands to use fully qualified skill names (e.g., `superpowers:brainstorming`)
487
+
488
+ **Added GitHub thread reply guidance to receiving-code-review** (h/t @ralphbean)
489
+
490
+ Added a note about replying to inline review comments in the original thread rather than as top-level PR comments.
491
+
492
+ **Added automation-over-documentation guidance to writing-skills** (h/t @EthanJStark)
493
+
494
+ Added guidance that mechanical constraints should be automated, not documented—save skills for judgment calls.
495
+
496
+ ## v4.0.0 (2025-12-17)
497
+
498
+ ### New Features
499
+
500
+ **Two-stage code review in subagent-driven-development**
501
+
502
+ Subagent workflows now use two separate review stages after each task:
503
+
504
+ 1. **Spec compliance review** - Skeptical reviewer verifies implementation matches spec exactly. Catches missing requirements AND over-building. Won't trust implementer's report—reads actual code.
505
+
506
+ 2. **Code quality review** - Only runs after spec compliance passes. Reviews for clean code, test coverage, maintainability.
507
+
508
+ This catches the common failure mode where code is well-written but doesn't match what was requested. Reviews are loops, not one-shot: if reviewer finds issues, implementer fixes them, then reviewer checks again.
509
+
510
+ Other subagent workflow improvements:
511
+ - Controller provides full task text to workers (not file references)
512
+ - Workers can ask clarifying questions before AND during work
513
+ - Self-review checklist before reporting completion
514
+ - Plan read once at start, extracted to TodoWrite
515
+
516
+ New prompt templates in `skills/subagent-driven-development/`:
517
+ - `implementer-prompt.md` - Includes self-review checklist, encourages questions
518
+ - `spec-reviewer-prompt.md` - Skeptical verification against requirements
519
+ - `code-quality-reviewer-prompt.md` - Standard code review
520
+
521
+ **Debugging techniques consolidated with tools**
522
+
523
+ `systematic-debugging` now bundles supporting techniques and tools:
524
+ - `root-cause-tracing.md` - Trace bugs backward through call stack
525
+ - `defense-in-depth.md` - Add validation at multiple layers
526
+ - `condition-based-waiting.md` - Replace arbitrary timeouts with condition polling
527
+ - `find-polluter.sh` - Bisection script to find which test creates pollution
528
+ - `condition-based-waiting-example.ts` - Complete implementation from real debugging session
529
+
530
+ **Testing anti-patterns reference**
531
+
532
+ `test-driven-development` now includes `testing-anti-patterns.md` covering:
533
+ - Testing mock behavior instead of real behavior
534
+ - Adding test-only methods to production classes
535
+ - Mocking without understanding dependencies
536
+ - Incomplete mocks that hide structural assumptions
537
+
538
+ **Skill test infrastructure**
539
+
540
+ Three new test frameworks for validating skill behavior:
541
+
542
+ `tests/skill-triggering/` - Validates skills trigger from naive prompts without explicit naming. Tests 6 skills to ensure descriptions alone are sufficient.
543
+
544
+ `tests/claude-code/` - Integration tests using `claude -p` for headless testing. Verifies skill usage via session transcript (JSONL) analysis. Includes `analyze-token-usage.py` for cost tracking.
545
+
546
+ `tests/subagent-driven-dev/` - End-to-end workflow validation with two complete test projects:
547
+ - `go-fractals/` - CLI tool with Sierpinski/Mandelbrot (10 tasks)
548
+ - `svelte-todo/` - CRUD app with localStorage and Playwright (12 tasks)
549
+
550
+ ### Major Changes
551
+
552
+ **DOT flowcharts as executable specifications**
553
+
554
+ Rewrote key skills using DOT/GraphViz flowcharts as the authoritative process definition. Prose becomes supporting content.
555
+
556
+ **The Description Trap** (documented in `writing-skills`): Discovered that skill descriptions override flowchart content when descriptions contain workflow summaries. Claude follows the short description instead of reading the detailed flowchart. Fix: descriptions must be trigger-only ("Use when X") with no process details.
557
+
558
+ **Skill priority in using-superpowers**
559
+
560
+ When multiple skills apply, process skills (brainstorming, debugging) now explicitly come before implementation skills. "Build X" triggers brainstorming first, then domain skills.
561
+
562
+ **brainstorming trigger strengthened**
563
+
564
+ Description changed to imperative: "You MUST use this before any creative work—creating features, building components, adding functionality, or modifying behavior."
565
+
566
+ ### Breaking Changes
567
+
568
+ **Skill consolidation** - Six standalone skills merged:
569
+ - `root-cause-tracing`, `defense-in-depth`, `condition-based-waiting` → bundled in `systematic-debugging/`
570
+ - `testing-skills-with-subagents` → bundled in `writing-skills/`
571
+ - `testing-anti-patterns` → bundled in `test-driven-development/`
572
+ - `sharing-skills` removed (obsolete)
573
+
574
+ ### Other Improvements
575
+
576
+ - **render-graphs.js** - Tool to extract DOT diagrams from skills and render to SVG
577
+ - **Rationalizations table** in using-superpowers - Scannable format including new entries: "I need more context first", "Let me explore first", "This feels productive"
578
+ - **docs/testing.md** - Guide to testing skills with Claude Code integration tests
579
+
580
+ ---
581
+
582
+ ## v3.6.2 (2025-12-03)
583
+
584
+ ### Fixed
585
+
586
+ - **Linux Compatibility**: Fixed polyglot hook wrapper (`run-hook.cmd`) to use POSIX-compliant syntax
587
+ - Replaced bash-specific `${BASH_SOURCE[0]:-$0}` with standard `$0` on line 16
588
+ - Resolves "Bad substitution" error on Ubuntu/Debian systems where `/bin/sh` is dash
589
+ - Fixes #141
590
+
591
+ ---
592
+
593
+ ## v3.5.1 (2025-11-24)
594
+
595
+ ### Changed
596
+
597
+ - **OpenCode Bootstrap Refactor**: Switched from `chat.message` hook to `session.created` event for bootstrap injection
598
+ - Bootstrap now injects at session creation via `session.prompt()` with `noReply: true`
599
+ - Explicitly tells the model that using-superpowers is already loaded to prevent redundant skill loading
600
+ - Consolidated bootstrap content generation into shared `getBootstrapContent()` helper
601
+ - Cleaner single-implementation approach (removed fallback pattern)
602
+
603
+ ---
604
+
605
+ ## v3.5.0 (2025-11-23)
606
+
607
+ ### Added
608
+
609
+ - **OpenCode Support**: Native JavaScript plugin for OpenCode.ai
610
+ - Custom tools: `use_skill` and `find_skills`
611
+ - Message insertion pattern for skill persistence across context compaction
612
+ - Automatic context injection via chat.message hook
613
+ - Auto re-injection on session.compacted events
614
+ - Three-tier skill priority: project > personal > superpowers
615
+ - Project-local skills support (`.opencode/skills/`)
616
+ - Shared core module (`lib/skills-core.js`) for code reuse with Codex
617
+ - Automated test suite with proper isolation (`tests/opencode/`)
618
+ - Platform-specific documentation (`docs/README.opencode.md`, `docs/README.codex.md`)
619
+
620
+ ### Changed
621
+
622
+ - **Refactored Codex Implementation**: Now uses shared `lib/skills-core.js` ES module
623
+ - Eliminates code duplication between Codex and OpenCode
624
+ - Single source of truth for skill discovery and parsing
625
+ - Codex successfully loads ES modules via Node.js interop
626
+
627
+ - **Improved Documentation**: Rewrote README to explain problem/solution clearly
628
+ - Removed duplicate sections and conflicting information
629
+ - Added complete workflow description (brainstorm → plan → execute → finish)
630
+ - Simplified platform installation instructions
631
+ - Emphasized skill-checking protocol over automatic activation claims
632
+
633
+ ---
634
+
635
+ ## v3.4.1 (2025-10-31)
636
+
637
+ ### Improvements
638
+
639
+ - Optimized superpowers bootstrap to eliminate redundant skill execution. The `using-superpowers` skill content is now provided directly in session context, with clear guidance to use the Skill tool only for other skills. This reduces overhead and prevents the confusing loop where agents would execute `using-superpowers` manually despite already having the content from session start.
640
+
641
+ ## v3.4.0 (2025-10-30)
642
+
643
+ ### Improvements
644
+
645
+ - Simplified `brainstorming` skill to return to original conversational vision. Removed heavyweight 6-phase process with formal checklists in favor of natural dialogue: ask questions one at a time, then present design in 200-300 word sections with validation. Keeps documentation and implementation handoff features.
646
+
647
+ ## v3.3.1 (2025-10-28)
648
+
649
+ ### Improvements
650
+
651
+ - Updated `brainstorming` skill to require autonomous recon before questioning, encourage recommendation-driven decisions, and prevent agents from delegating prioritization back to humans.
652
+ - Applied writing clarity improvements to `brainstorming` skill following Strunk's "Elements of Style" principles (omitted needless words, converted negative to positive form, improved parallel construction).
653
+
654
+ ### Bug Fixes
655
+
656
+ - Clarified `writing-skills` guidance so it points to the correct agent-specific personal skill directories (`~/.claude/skills` for Claude Code, `~/.codex/skills` for Codex).
657
+
658
+ ## v3.3.0 (2025-10-28)
659
+
660
+ ### New Features
661
+
662
+ **Experimental Codex Support**
663
+ - Added unified `superpowers-codex` script with bootstrap/use-skill/find-skills commands
664
+ - Cross-platform Node.js implementation (works on Windows, macOS, Linux)
665
+ - Namespaced skills: `superpowers:skill-name` for superpowers skills, `skill-name` for personal
666
+ - Personal skills override superpowers skills when names match
667
+ - Clean skill display: shows name/description without raw frontmatter
668
+ - Helpful context: shows supporting files directory for each skill
669
+ - Tool mapping for Codex: TodoWrite→update_plan, subagents→manual fallback, etc.
670
+ - Bootstrap integration with minimal AGENTS.md for automatic startup
671
+ - Complete installation guide and bootstrap instructions specific to Codex
672
+
673
+ **Key differences from Claude Code integration:**
674
+ - Single unified script instead of separate tools
675
+ - Tool substitution system for Codex-specific equivalents
676
+ - Simplified subagent handling (manual work instead of delegation)
677
+ - Updated terminology: "Superpowers skills" instead of "Core skills"
678
+
679
+ ### Files Added
680
+ - `.codex/INSTALL.md` - Installation guide for Codex users
681
+ - `.codex/superpowers-bootstrap.md` - Bootstrap instructions with Codex adaptations
682
+ - `.codex/superpowers-codex` - Unified Node.js executable with all functionality
683
+
684
+ **Note:** Codex support is experimental. The integration provides core superpowers functionality but may require refinement based on user feedback.
685
+
686
+ ## v3.2.3 (2025-10-23)
687
+
688
+ ### Improvements
689
+
690
+ **Updated using-superpowers skill to use Skill tool instead of Read tool**
691
+ - Changed skill invocation instructions from Read tool to Skill tool
692
+ - Updated description: "using Read tool" → "using Skill tool"
693
+ - Updated step 3: "Use the Read tool" → "Use the Skill tool to read and run"
694
+ - Updated rationalization list: "Read the current version" → "Run the current version"
695
+
696
+ The Skill tool is the proper mechanism for invoking skills in Claude Code. This update corrects the bootstrap instructions to guide agents toward the correct tool.
697
+
698
+ ### Files Changed
699
+ - Updated: `skills/using-superpowers/SKILL.md` - Changed tool references from Read to Skill
700
+
701
+ ## v3.2.2 (2025-10-21)
702
+
703
+ ### Improvements
704
+
705
+ **Strengthened using-superpowers skill against agent rationalization**
706
+ - Added EXTREMELY-IMPORTANT block with absolute language about mandatory skill checking
707
+ - "If even 1% chance a skill applies, you MUST read it"
708
+ - "You do not have a choice. You cannot rationalize your way out."
709
+ - Added MANDATORY FIRST RESPONSE PROTOCOL checklist
710
+ - 5-step process agents must complete before any response
711
+ - Explicit "responding without this = failure" consequence
712
+ - Added Common Rationalizations section with 8 specific evasion patterns
713
+ - "This is just a simple question" → WRONG
714
+ - "I can check files quickly" → WRONG
715
+ - "Let me gather information first" → WRONG
716
+ - Plus 5 more common patterns observed in agent behavior
717
+
718
+ These changes address observed agent behavior where they rationalize around skill usage despite clear instructions. The forceful language and pre-emptive counter-arguments aim to make non-compliance harder.
719
+
720
+ ### Files Changed
721
+ - Updated: `skills/using-superpowers/SKILL.md` - Added three layers of enforcement to prevent skill-skipping rationalization
722
+
723
+ ## v3.2.1 (2025-10-20)
724
+
725
+ ### New Features
726
+
727
+ **Code reviewer agent now included in plugin**
728
+ - Added `superpowers:code-reviewer` agent to plugin's `agents/` directory
729
+ - Agent provides systematic code review against plans and coding standards
730
+ - Previously required users to have personal agent configuration
731
+ - All skill references updated to use namespaced `superpowers:code-reviewer`
732
+ - Fixes #55
733
+
734
+ ### Files Changed
735
+ - New: `agents/code-reviewer.md` - Agent definition with review checklist and output format
736
+ - Updated: `skills/requesting-code-review/SKILL.md` - References to `superpowers:code-reviewer`
737
+ - Updated: `skills/subagent-driven-development/SKILL.md` - References to `superpowers:code-reviewer`
738
+
739
+ ## v3.2.0 (2025-10-18)
740
+
741
+ ### New Features
742
+
743
+ **Design documentation in brainstorming workflow**
744
+ - Added Phase 4: Design Documentation to brainstorming skill
745
+ - Design documents now written to `docs/plans/YYYY-MM-DD-<topic>-design.md` before implementation
746
+ - Restores functionality from original brainstorming command that was lost during skill conversion
747
+ - Documents written before worktree setup and implementation planning
748
+ - Tested with subagent to verify compliance under time pressure
749
+
750
+ ### Breaking Changes
751
+
752
+ **Skill reference namespace standardization**
753
+ - All internal skill references now use `superpowers:` namespace prefix
754
+ - Updated format: `superpowers:test-driven-development` (previously just `test-driven-development`)
755
+ - Affects all REQUIRED SUB-SKILL, RECOMMENDED SUB-SKILL, and REQUIRED BACKGROUND references
756
+ - Aligns with how skills are invoked using the Skill tool
757
+ - Files updated: brainstorming, executing-plans, subagent-driven-development, systematic-debugging, testing-skills-with-subagents, writing-plans, writing-skills
758
+
759
+ ### Improvements
760
+
761
+ **Design vs implementation plan naming**
762
+ - Design documents use `-design.md` suffix to prevent filename collisions
763
+ - Implementation plans continue using existing `YYYY-MM-DD-<feature-name>.md` format
764
+ - Both stored in `docs/plans/` directory with clear naming distinction
765
+
766
+ ## v3.1.1 (2025-10-17)
767
+
768
+ ### Bug Fixes
769
+
770
+ - **Fixed command syntax in README** (#44) - Updated all command references to use correct namespaced syntax (`/superpowers:brainstorm` instead of `/brainstorm`). Plugin-provided commands are automatically namespaced by Claude Code to avoid conflicts between plugins.
771
+
772
+ ## v3.1.0 (2025-10-17)
773
+
774
+ ### Breaking Changes
775
+
776
+ **Skill names standardized to lowercase**
777
+ - All skill frontmatter `name:` fields now use lowercase kebab-case matching directory names
778
+ - Examples: `brainstorming`, `test-driven-development`, `using-git-worktrees`
779
+ - All skill announcements and cross-references updated to lowercase format
780
+ - This ensures consistent naming across directory names, frontmatter, and documentation
781
+
782
+ ### New Features
783
+
784
+ **Enhanced brainstorming skill**
785
+ - Added Quick Reference table showing phases, activities, and tool usage
786
+ - Added copyable workflow checklist for tracking progress
787
+ - Added decision flowchart for when to revisit earlier phases
788
+ - Added comprehensive AskUserQuestion tool guidance with concrete examples
789
+ - Added "Question Patterns" section explaining when to use structured vs open-ended questions
790
+ - Restructured Key Principles as scannable table
791
+
792
+ **Anthropic best practices integration**
793
+ - Added `skills/writing-skills/anthropic-best-practices.md` - Official Anthropic skill authoring guide
794
+ - Referenced in writing-skills SKILL.md for comprehensive guidance
795
+ - Provides patterns for progressive disclosure, workflows, and evaluation
796
+
797
+ ### Improvements
798
+
799
+ **Skill cross-reference clarity**
800
+ - All skill references now use explicit requirement markers:
801
+ - `**REQUIRED BACKGROUND:**` - Prerequisites you must understand
802
+ - `**REQUIRED SUB-SKILL:**` - Skills that must be used in workflow
803
+ - `**Complementary skills:**` - Optional but helpful related skills
804
+ - Removed old path format (`skills/collaboration/X` → just `X`)
805
+ - Updated Integration sections with categorized relationships (Required vs Complementary)
806
+ - Updated cross-reference documentation with best practices
807
+
808
+ **Alignment with Anthropic best practices**
809
+ - Fixed description grammar and voice (fully third-person)
810
+ - Added Quick Reference tables for scanning
811
+ - Added workflow checklists Claude can copy and track
812
+ - Appropriate use of flowcharts for non-obvious decision points
813
+ - Improved scannable table formats
814
+ - All skills well under 500-line recommendation
815
+
816
+ ### Bug Fixes
817
+
818
+ - **Re-added missing command redirects** - Restored `commands/brainstorm.md` and `commands/write-plan.md` that were accidentally removed in v3.0 migration
819
+ - Fixed `defense-in-depth` name mismatch (was `Defense-in-Depth-Validation`)
820
+ - Fixed `receiving-code-review` name mismatch (was `Code-Review-Reception`)
821
+ - Fixed `commands/brainstorm.md` reference to correct skill name
822
+ - Removed references to non-existent related skills
823
+
824
+ ### Documentation
825
+
826
+ **writing-skills improvements**
827
+ - Updated cross-referencing guidance with explicit requirement markers
828
+ - Added reference to Anthropic's official best practices
829
+ - Improved examples showing proper skill reference format
830
+
831
+ ## v3.0.1 (2025-10-16)
832
+
833
+ ### Changes
834
+
835
+ We now use Anthropic's first-party skills system!
836
+
837
+ ## v2.0.2 (2025-10-12)
838
+
839
+ ### Bug Fixes
840
+
841
+ - **Fixed false warning when local skills repo is ahead of upstream** - The initialization script was incorrectly warning "New skills available from upstream" when the local repository had commits ahead of upstream. The logic now correctly distinguishes between three git states: local behind (should update), local ahead (no warning), and diverged (should warn).
842
+
843
+ ## v2.0.1 (2025-10-12)
844
+
845
+ ### Bug Fixes
846
+
847
+ - **Fixed session-start hook execution in plugin context** (#8, PR #9) - The hook was failing silently with "Plugin hook error" preventing skills context from loading. Fixed by:
848
+ - Using `${BASH_SOURCE[0]:-$0}` fallback when BASH_SOURCE is unbound in Claude Code's execution context
849
+ - Adding `|| true` to handle empty grep results gracefully when filtering status flags
850
+
851
+ ---
852
+
853
+ # Superpowers v2.0.0 Release Notes
854
+
855
+ ## Overview
856
+
857
+ Superpowers v2.0 makes skills more accessible, maintainable, and community-driven through a major architectural shift.
858
+
859
+ The headline change is **skills repository separation**: all skills, scripts, and documentation have moved from the plugin into a dedicated repository ([obra/superpowers-skills](https://github.com/obra/superpowers-skills)). This transforms superpowers from a monolithic plugin into a lightweight shim that manages a local clone of the skills repository. Skills auto-update on session start. Users fork and contribute improvements via standard git workflows. The skills library versions independently from the plugin.
860
+
861
+ Beyond infrastructure, this release adds nine new skills focused on problem-solving, research, and architecture. We rewrote the core **using-skills** documentation with imperative tone and clearer structure, making it easier for Claude to understand when and how to use skills. **find-skills** now outputs paths you can paste directly into the Read tool, eliminating friction in the skills discovery workflow.
862
+
863
+ Users experience seamless operation: the plugin handles cloning, forking, and updating automatically. Contributors find the new architecture makes improving and sharing skills trivial. This release lays the foundation for skills to evolve rapidly as a community resource.
864
+
865
+ ## Breaking Changes
866
+
867
+ ### Skills Repository Separation
868
+
869
+ **The biggest change:** Skills no longer live in the plugin. They've been moved to a separate repository at [obra/superpowers-skills](https://github.com/obra/superpowers-skills).
870
+
871
+ **What this means for you:**
872
+
873
+ - **First install:** Plugin automatically clones skills to `~/.config/superpowers/skills/`
874
+ - **Forking:** During setup, you'll be offered the option to fork the skills repo (if `gh` is installed)
875
+ - **Updates:** Skills auto-update on session start (fast-forward when possible)
876
+ - **Contributing:** Work on branches, commit locally, submit PRs to upstream
877
+ - **No more shadowing:** Old two-tier system (personal/core) replaced with single-repo branch workflow
878
+
879
+ **Migration:**
880
+
881
+ If you have an existing installation:
882
+ 1. Your old `~/.config/superpowers/.git` will be backed up to `~/.config/superpowers/.git.bak`
883
+ 2. Old skills will be backed up to `~/.config/superpowers/skills.bak`
884
+ 3. Fresh clone of obra/superpowers-skills will be created at `~/.config/superpowers/skills/`
885
+
886
+ ### Removed Features
887
+
888
+ - **Personal superpowers overlay system** - Replaced with git branch workflow
889
+ - **setup-personal-superpowers hook** - Replaced by initialize-skills.sh
890
+
891
+ ## New Features
892
+
893
+ ### Skills Repository Infrastructure
894
+
895
+ **Automatic Clone & Setup** (`lib/initialize-skills.sh`)
896
+ - Clones obra/superpowers-skills on first run
897
+ - Offers fork creation if GitHub CLI is installed
898
+ - Sets up upstream/origin remotes correctly
899
+ - Handles migration from old installation
900
+
901
+ **Auto-Update**
902
+ - Fetches from tracking remote on every session start
903
+ - Auto-merges with fast-forward when possible
904
+ - Notifies when manual sync needed (branch diverged)
905
+ - Uses pulling-updates-from-skills-repository skill for manual sync
906
+
907
+ ### New Skills
908
+
909
+ **Problem-Solving Skills** (`skills/problem-solving/`)
910
+ - **collision-zone-thinking** - Force unrelated concepts together for emergent insights
911
+ - **inversion-exercise** - Flip assumptions to reveal hidden constraints
912
+ - **meta-pattern-recognition** - Spot universal principles across domains
913
+ - **scale-game** - Test at extremes to expose fundamental truths
914
+ - **simplification-cascades** - Find insights that eliminate multiple components
915
+ - **when-stuck** - Dispatch to right problem-solving technique
916
+
917
+ **Research Skills** (`skills/research/`)
918
+ - **tracing-knowledge-lineages** - Understand how ideas evolved over time
919
+
920
+ **Architecture Skills** (`skills/architecture/`)
921
+ - **preserving-productive-tensions** - Keep multiple valid approaches instead of forcing premature resolution
922
+
923
+ ### Skills Improvements
924
+
925
+ **using-skills (formerly getting-started)**
926
+ - Renamed from getting-started to using-skills
927
+ - Complete rewrite with imperative tone (v4.0.0)
928
+ - Front-loaded critical rules
929
+ - Added "Why" explanations for all workflows
930
+ - Always includes /SKILL.md suffix in references
931
+ - Clearer distinction between rigid rules and flexible patterns
932
+
933
+ **writing-skills**
934
+ - Cross-referencing guidance moved from using-skills
935
+ - Added token efficiency section (word count targets)
936
+ - Improved CSO (Claude Search Optimization) guidance
937
+
938
+ **sharing-skills**
939
+ - Updated for new branch-and-PR workflow (v2.0.0)
940
+ - Removed personal/core split references
941
+
942
+ **pulling-updates-from-skills-repository** (new)
943
+ - Complete workflow for syncing with upstream
944
+ - Replaces old "updating-skills" skill
945
+
946
+ ### Tools Improvements
947
+
948
+ **find-skills**
949
+ - Now outputs full paths with /SKILL.md suffix
950
+ - Makes paths directly usable with Read tool
951
+ - Updated help text
952
+
953
+ **skill-run**
954
+ - Moved from scripts/ to skills/using-skills/
955
+ - Improved documentation
956
+
957
+ ### Plugin Infrastructure
958
+
959
+ **Session Start Hook**
960
+ - Now loads from skills repository location
961
+ - Shows full skills list at session start
962
+ - Prints skills location info
963
+ - Shows update status (updated successfully / behind upstream)
964
+ - Moved "skills behind" warning to end of output
965
+
966
+ **Environment Variables**
967
+ - `SUPERPOWERS_SKILLS_ROOT` set to `~/.config/superpowers/skills`
968
+ - Used consistently throughout all paths
969
+
970
+ ## Bug Fixes
971
+
972
+ - Fixed duplicate upstream remote addition when forking
973
+ - Fixed find-skills double "skills/" prefix in output
974
+ - Removed obsolete setup-personal-superpowers call from session-start
975
+ - Fixed path references throughout hooks and commands
976
+
977
+ ## Documentation
978
+
979
+ ### README
980
+ - Updated for new skills repository architecture
981
+ - Prominent link to superpowers-skills repo
982
+ - Updated auto-update description
983
+ - Fixed skill names and references
984
+ - Updated Meta skills list
985
+
986
+ ### Testing Documentation
987
+ - Added comprehensive testing checklist (`docs/TESTING-CHECKLIST.md`)
988
+ - Created local marketplace config for testing
989
+ - Documented manual testing scenarios
990
+
991
+ ## Technical Details
992
+
993
+ ### File Changes
994
+
995
+ **Added:**
996
+ - `lib/initialize-skills.sh` - Skills repo initialization and auto-update
997
+ - `docs/TESTING-CHECKLIST.md` - Manual testing scenarios
998
+ - `.claude-plugin/marketplace.json` - Local testing config
999
+
1000
+ **Removed:**
1001
+ - `skills/` directory (82 files) - Now in obra/superpowers-skills
1002
+ - `scripts/` directory - Now in obra/superpowers-skills/skills/using-skills/
1003
+ - `hooks/setup-personal-superpowers.sh` - Obsolete
1004
+
1005
+ **Modified:**
1006
+ - `hooks/session-start.sh` - Use skills from ~/.config/superpowers/skills
1007
+ - `commands/brainstorm.md` - Updated paths to SUPERPOWERS_SKILLS_ROOT
1008
+ - `commands/write-plan.md` - Updated paths to SUPERPOWERS_SKILLS_ROOT
1009
+ - `commands/execute-plan.md` - Updated paths to SUPERPOWERS_SKILLS_ROOT
1010
+ - `README.md` - Complete rewrite for new architecture
1011
+
1012
+ ### Commit History
1013
+
1014
+ This release includes:
1015
+ - 20+ commits for skills repository separation
1016
+ - PR #1: Amplifier-inspired problem-solving and research skills
1017
+ - PR #2: Personal superpowers overlay system (later replaced)
1018
+ - Multiple skill refinements and documentation improvements
1019
+
1020
+ ## Upgrade Instructions
1021
+
1022
+ ### Fresh Install
1023
+
1024
+ ```bash
1025
+ # In Claude Code
1026
+ /plugin marketplace add obra/superpowers-marketplace
1027
+ /plugin install superpowers@superpowers-marketplace
1028
+ ```
1029
+
1030
+ The plugin handles everything automatically.
1031
+
1032
+ ### Upgrading from v1.x
1033
+
1034
+ 1. **Backup your personal skills** (if you have any):
1035
+ ```bash
1036
+ cp -r ~/.config/superpowers/skills ~/superpowers-skills-backup
1037
+ ```
1038
+
1039
+ 2. **Update the plugin:**
1040
+ ```bash
1041
+ /plugin update superpowers
1042
+ ```
1043
+
1044
+ 3. **On next session start:**
1045
+ - Old installation will be backed up automatically
1046
+ - Fresh skills repo will be cloned
1047
+ - If you have GitHub CLI, you'll be offered the option to fork
1048
+
1049
+ 4. **Migrate personal skills** (if you had any):
1050
+ - Create a branch in your local skills repo
1051
+ - Copy your personal skills from backup
1052
+ - Commit and push to your fork
1053
+ - Consider contributing back via PR
1054
+
1055
+ ## What's Next
1056
+
1057
+ ### For Users
1058
+
1059
+ - Explore the new problem-solving skills
1060
+ - Try the branch-based workflow for skill improvements
1061
+ - Contribute skills back to the community
1062
+
1063
+ ### For Contributors
1064
+
1065
+ - Skills repository is now at https://github.com/obra/superpowers-skills
1066
+ - Fork → Branch → PR workflow
1067
+ - See skills/meta/writing-skills/SKILL.md for TDD approach to documentation
1068
+
1069
+ ## Known Issues
1070
+
1071
+ None at this time.
1072
+
1073
+ ## Credits
1074
+
1075
+ - Problem-solving skills inspired by Amplifier patterns
1076
+ - Community contributions and feedback
1077
+ - Extensive testing and iteration on skill effectiveness
1078
+
1079
+ ---
1080
+
1081
+ **Full Changelog:** https://github.com/obra/superpowers/compare/dd013f6...main
1082
+ **Skills Repository:** https://github.com/obra/superpowers-skills
1083
+ **Issues:** https://github.com/obra/superpowers/issues