gitextract_hdkcvdqd/ ├── .claude-plugin/ │ ├── marketplace.json │ └── plugin.json ├── .codex/ │ └── INSTALL.md ├── .cursor-plugin/ │ └── plugin.json ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ ├── feature_request.md │ │ └── platform_support.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .opencode/ │ ├── INSTALL.md │ └── plugins/ │ └── superpowers.js ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── GEMINI.md ├── LICENSE ├── README.md ├── RELEASE-NOTES.md ├── agents/ │ └── code-reviewer.md ├── commands/ │ ├── brainstorm.md │ ├── execute-plan.md │ └── write-plan.md ├── docs/ │ ├── README.codex.md │ ├── README.opencode.md │ ├── plans/ │ │ ├── 2025-11-22-opencode-support-design.md │ │ ├── 2025-11-22-opencode-support-implementation.md │ │ ├── 2025-11-28-skills-improvements-from-user-feedback.md │ │ └── 2026-01-17-visual-brainstorming.md │ ├── superpowers/ │ │ ├── plans/ │ │ │ ├── 2026-01-22-document-review-system.md │ │ │ ├── 2026-02-19-visual-brainstorming-refactor.md │ │ │ └── 2026-03-11-zero-dep-brainstorm-server.md │ │ └── specs/ │ │ ├── 2026-01-22-document-review-system-design.md │ │ ├── 2026-02-19-visual-brainstorming-refactor-design.md │ │ └── 2026-03-11-zero-dep-brainstorm-server-design.md │ ├── testing.md │ └── windows/ │ └── polyglot-hooks.md ├── gemini-extension.json ├── hooks/ │ ├── hooks-cursor.json │ ├── hooks.json │ ├── run-hook.cmd │ └── session-start ├── package.json ├── skills/ │ ├── brainstorming/ │ │ ├── SKILL.md │ │ ├── scripts/ │ │ │ ├── frame-template.html │ │ │ ├── helper.js │ │ │ ├── server.cjs │ │ │ ├── start-server.sh │ │ │ └── stop-server.sh │ │ ├── spec-document-reviewer-prompt.md │ │ └── visual-companion.md │ ├── dispatching-parallel-agents/ │ │ └── SKILL.md │ ├── executing-plans/ │ │ └── SKILL.md │ ├── finishing-a-development-branch/ │ │ └── SKILL.md │ ├── receiving-code-review/ │ │ └── SKILL.md │ ├── requesting-code-review/ │ │ ├── SKILL.md │ │ └── code-reviewer.md │ ├── subagent-driven-development/ │ │ ├── SKILL.md │ │ ├── code-quality-reviewer-prompt.md │ │ ├── implementer-prompt.md │ │ └── spec-reviewer-prompt.md │ ├── systematic-debugging/ │ │ ├── CREATION-LOG.md │ │ ├── SKILL.md │ │ ├── condition-based-waiting-example.ts │ │ ├── condition-based-waiting.md │ │ ├── defense-in-depth.md │ │ ├── find-polluter.sh │ │ ├── root-cause-tracing.md │ │ ├── test-academic.md │ │ ├── test-pressure-1.md │ │ ├── test-pressure-2.md │ │ └── test-pressure-3.md │ ├── test-driven-development/ │ │ ├── SKILL.md │ │ └── testing-anti-patterns.md │ ├── using-git-worktrees/ │ │ └── SKILL.md │ ├── using-superpowers/ │ │ ├── SKILL.md │ │ └── references/ │ │ ├── codex-tools.md │ │ └── gemini-tools.md │ ├── verification-before-completion/ │ │ └── SKILL.md │ ├── writing-plans/ │ │ ├── SKILL.md │ │ └── plan-document-reviewer-prompt.md │ └── writing-skills/ │ ├── SKILL.md │ ├── anthropic-best-practices.md │ ├── examples/ │ │ └── CLAUDE_MD_TESTING.md │ ├── graphviz-conventions.dot │ ├── persuasion-principles.md │ ├── render-graphs.js │ └── testing-skills-with-subagents.md └── tests/ ├── brainstorm-server/ │ ├── package.json │ ├── server.test.js │ ├── windows-lifecycle.test.sh │ └── ws-protocol.test.js ├── claude-code/ │ ├── README.md │ ├── analyze-token-usage.py │ ├── run-skill-tests.sh │ ├── test-document-review-system.sh │ ├── test-helpers.sh │ ├── test-subagent-driven-development-integration.sh │ └── test-subagent-driven-development.sh ├── explicit-skill-requests/ │ ├── prompts/ │ │ ├── action-oriented.txt │ │ ├── after-planning-flow.txt │ │ ├── claude-suggested-it.txt │ │ ├── i-know-what-sdd-means.txt │ │ ├── mid-conversation-execute-plan.txt │ │ ├── please-use-brainstorming.txt │ │ ├── skip-formalities.txt │ │ ├── subagent-driven-development-please.txt │ │ └── use-systematic-debugging.txt │ ├── run-all.sh │ ├── run-claude-describes-sdd.sh │ ├── run-extended-multiturn-test.sh │ ├── run-haiku-test.sh │ ├── run-multiturn-test.sh │ └── run-test.sh ├── opencode/ │ ├── run-tests.sh │ ├── setup.sh │ ├── test-plugin-loading.sh │ ├── test-priority.sh │ └── test-tools.sh ├── skill-triggering/ │ ├── prompts/ │ │ ├── dispatching-parallel-agents.txt │ │ ├── executing-plans.txt │ │ ├── requesting-code-review.txt │ │ ├── systematic-debugging.txt │ │ ├── test-driven-development.txt │ │ └── writing-plans.txt │ ├── run-all.sh │ └── run-test.sh └── subagent-driven-dev/ ├── go-fractals/ │ ├── design.md │ ├── plan.md │ └── scaffold.sh ├── run-test.sh └── svelte-todo/ ├── design.md ├── plan.md └── scaffold.sh