agy-superpowers 5.1.3 → 5.1.5

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 (188) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +189 -186
  3. package/package.json +1 -1
  4. package/template/agent/patches/skills-patches.md +24 -0
  5. package/template/agent/rules/git-policy.md +25 -0
  6. package/template/agent/skills/finishing-a-development-branch/SKILL.md +18 -6
  7. package/template/agent/skills/rust-developer/SKILL.md +281 -0
  8. package/template/agent/skills/rust-developer/references/rust-rules/_sections.md +231 -0
  9. package/template/agent/skills/rust-developer/references/rust-rules/anti-clone-excessive.md +124 -0
  10. package/template/agent/skills/rust-developer/references/rust-rules/anti-collect-intermediate.md +131 -0
  11. package/template/agent/skills/rust-developer/references/rust-rules/anti-empty-catch.md +132 -0
  12. package/template/agent/skills/rust-developer/references/rust-rules/anti-expect-lazy.md +95 -0
  13. package/template/agent/skills/rust-developer/references/rust-rules/anti-format-hot-path.md +141 -0
  14. package/template/agent/skills/rust-developer/references/rust-rules/anti-index-over-iter.md +125 -0
  15. package/template/agent/skills/rust-developer/references/rust-rules/anti-lock-across-await.md +127 -0
  16. package/template/agent/skills/rust-developer/references/rust-rules/anti-over-abstraction.md +120 -0
  17. package/template/agent/skills/rust-developer/references/rust-rules/anti-panic-expected.md +131 -0
  18. package/template/agent/skills/rust-developer/references/rust-rules/anti-premature-optimize.md +156 -0
  19. package/template/agent/skills/rust-developer/references/rust-rules/anti-string-for-str.md +122 -0
  20. package/template/agent/skills/rust-developer/references/rust-rules/anti-stringly-typed.md +167 -0
  21. package/template/agent/skills/rust-developer/references/rust-rules/anti-type-erasure.md +134 -0
  22. package/template/agent/skills/rust-developer/references/rust-rules/anti-unwrap-abuse.md +143 -0
  23. package/template/agent/skills/rust-developer/references/rust-rules/anti-vec-for-slice.md +121 -0
  24. package/template/agent/skills/rust-developer/references/rust-rules/api-builder-must-use.md +143 -0
  25. package/template/agent/skills/rust-developer/references/rust-rules/api-builder-pattern.md +187 -0
  26. package/template/agent/skills/rust-developer/references/rust-rules/api-common-traits.md +165 -0
  27. package/template/agent/skills/rust-developer/references/rust-rules/api-default-impl.md +177 -0
  28. package/template/agent/skills/rust-developer/references/rust-rules/api-extension-trait.md +163 -0
  29. package/template/agent/skills/rust-developer/references/rust-rules/api-from-not-into.md +146 -0
  30. package/template/agent/skills/rust-developer/references/rust-rules/api-impl-asref.md +142 -0
  31. package/template/agent/skills/rust-developer/references/rust-rules/api-impl-into.md +160 -0
  32. package/template/agent/skills/rust-developer/references/rust-rules/api-must-use.md +125 -0
  33. package/template/agent/skills/rust-developer/references/rust-rules/api-newtype-safety.md +162 -0
  34. package/template/agent/skills/rust-developer/references/rust-rules/api-non-exhaustive.md +177 -0
  35. package/template/agent/skills/rust-developer/references/rust-rules/api-parse-dont-validate.md +184 -0
  36. package/template/agent/skills/rust-developer/references/rust-rules/api-sealed-trait.md +168 -0
  37. package/template/agent/skills/rust-developer/references/rust-rules/api-serde-optional.md +182 -0
  38. package/template/agent/skills/rust-developer/references/rust-rules/api-typestate.md +199 -0
  39. package/template/agent/skills/rust-developer/references/rust-rules/async-bounded-channel.md +175 -0
  40. package/template/agent/skills/rust-developer/references/rust-rules/async-broadcast-pubsub.md +185 -0
  41. package/template/agent/skills/rust-developer/references/rust-rules/async-cancellation-token.md +203 -0
  42. package/template/agent/skills/rust-developer/references/rust-rules/async-clone-before-await.md +171 -0
  43. package/template/agent/skills/rust-developer/references/rust-rules/async-join-parallel.md +158 -0
  44. package/template/agent/skills/rust-developer/references/rust-rules/async-joinset-structured.md +195 -0
  45. package/template/agent/skills/rust-developer/references/rust-rules/async-mpsc-queue.md +171 -0
  46. package/template/agent/skills/rust-developer/references/rust-rules/async-no-lock-await.md +156 -0
  47. package/template/agent/skills/rust-developer/references/rust-rules/async-oneshot-response.md +191 -0
  48. package/template/agent/skills/rust-developer/references/rust-rules/async-select-racing.md +198 -0
  49. package/template/agent/skills/rust-developer/references/rust-rules/async-spawn-blocking.md +154 -0
  50. package/template/agent/skills/rust-developer/references/rust-rules/async-tokio-fs.md +167 -0
  51. package/template/agent/skills/rust-developer/references/rust-rules/async-tokio-runtime.md +169 -0
  52. package/template/agent/skills/rust-developer/references/rust-rules/async-try-join.md +172 -0
  53. package/template/agent/skills/rust-developer/references/rust-rules/async-watch-latest.md +189 -0
  54. package/template/agent/skills/rust-developer/references/rust-rules/doc-all-public.md +113 -0
  55. package/template/agent/skills/rust-developer/references/rust-rules/doc-cargo-metadata.md +147 -0
  56. package/template/agent/skills/rust-developer/references/rust-rules/doc-errors-section.md +122 -0
  57. package/template/agent/skills/rust-developer/references/rust-rules/doc-examples-section.md +161 -0
  58. package/template/agent/skills/rust-developer/references/rust-rules/doc-hidden-setup.md +149 -0
  59. package/template/agent/skills/rust-developer/references/rust-rules/doc-intra-links.md +138 -0
  60. package/template/agent/skills/rust-developer/references/rust-rules/doc-link-types.md +169 -0
  61. package/template/agent/skills/rust-developer/references/rust-rules/doc-module-inner.md +116 -0
  62. package/template/agent/skills/rust-developer/references/rust-rules/doc-panics-section.md +128 -0
  63. package/template/agent/skills/rust-developer/references/rust-rules/doc-question-mark.md +136 -0
  64. package/template/agent/skills/rust-developer/references/rust-rules/doc-safety-section.md +131 -0
  65. package/template/agent/skills/rust-developer/references/rust-rules/err-anyhow-app.md +179 -0
  66. package/template/agent/skills/rust-developer/references/rust-rules/err-context-chain.md +144 -0
  67. package/template/agent/skills/rust-developer/references/rust-rules/err-custom-type.md +152 -0
  68. package/template/agent/skills/rust-developer/references/rust-rules/err-doc-errors.md +145 -0
  69. package/template/agent/skills/rust-developer/references/rust-rules/err-expect-bugs-only.md +133 -0
  70. package/template/agent/skills/rust-developer/references/rust-rules/err-from-impl.md +152 -0
  71. package/template/agent/skills/rust-developer/references/rust-rules/err-lowercase-msg.md +124 -0
  72. package/template/agent/skills/rust-developer/references/rust-rules/err-no-unwrap-prod.md +115 -0
  73. package/template/agent/skills/rust-developer/references/rust-rules/err-question-mark.md +151 -0
  74. package/template/agent/skills/rust-developer/references/rust-rules/err-result-over-panic.md +130 -0
  75. package/template/agent/skills/rust-developer/references/rust-rules/err-source-chain.md +155 -0
  76. package/template/agent/skills/rust-developer/references/rust-rules/err-thiserror-lib.md +171 -0
  77. package/template/agent/skills/rust-developer/references/rust-rules/lint-cargo-metadata.md +138 -0
  78. package/template/agent/skills/rust-developer/references/rust-rules/lint-deny-correctness.md +107 -0
  79. package/template/agent/skills/rust-developer/references/rust-rules/lint-missing-docs.md +154 -0
  80. package/template/agent/skills/rust-developer/references/rust-rules/lint-pedantic-selective.md +118 -0
  81. package/template/agent/skills/rust-developer/references/rust-rules/lint-rustfmt-check.md +157 -0
  82. package/template/agent/skills/rust-developer/references/rust-rules/lint-unsafe-doc.md +133 -0
  83. package/template/agent/skills/rust-developer/references/rust-rules/lint-warn-complexity.md +131 -0
  84. package/template/agent/skills/rust-developer/references/rust-rules/lint-warn-perf.md +136 -0
  85. package/template/agent/skills/rust-developer/references/rust-rules/lint-warn-style.md +135 -0
  86. package/template/agent/skills/rust-developer/references/rust-rules/lint-warn-suspicious.md +122 -0
  87. package/template/agent/skills/rust-developer/references/rust-rules/lint-workspace-lints.md +172 -0
  88. package/template/agent/skills/rust-developer/references/rust-rules/mem-arena-allocator.md +168 -0
  89. package/template/agent/skills/rust-developer/references/rust-rules/mem-arrayvec.md +142 -0
  90. package/template/agent/skills/rust-developer/references/rust-rules/mem-assert-type-size.md +168 -0
  91. package/template/agent/skills/rust-developer/references/rust-rules/mem-avoid-format.md +147 -0
  92. package/template/agent/skills/rust-developer/references/rust-rules/mem-box-large-variant.md +158 -0
  93. package/template/agent/skills/rust-developer/references/rust-rules/mem-boxed-slice.md +139 -0
  94. package/template/agent/skills/rust-developer/references/rust-rules/mem-clone-from.md +147 -0
  95. package/template/agent/skills/rust-developer/references/rust-rules/mem-compact-string.md +149 -0
  96. package/template/agent/skills/rust-developer/references/rust-rules/mem-reuse-collections.md +174 -0
  97. package/template/agent/skills/rust-developer/references/rust-rules/mem-smaller-integers.md +159 -0
  98. package/template/agent/skills/rust-developer/references/rust-rules/mem-smallvec.md +138 -0
  99. package/template/agent/skills/rust-developer/references/rust-rules/mem-thinvec.md +142 -0
  100. package/template/agent/skills/rust-developer/references/rust-rules/mem-with-capacity.md +156 -0
  101. package/template/agent/skills/rust-developer/references/rust-rules/mem-write-over-format.md +172 -0
  102. package/template/agent/skills/rust-developer/references/rust-rules/mem-zero-copy.md +164 -0
  103. package/template/agent/skills/rust-developer/references/rust-rules/name-acronym-word.md +99 -0
  104. package/template/agent/skills/rust-developer/references/rust-rules/name-as-free.md +104 -0
  105. package/template/agent/skills/rust-developer/references/rust-rules/name-consts-screaming.md +94 -0
  106. package/template/agent/skills/rust-developer/references/rust-rules/name-crate-no-rs.md +78 -0
  107. package/template/agent/skills/rust-developer/references/rust-rules/name-funcs-snake.md +76 -0
  108. package/template/agent/skills/rust-developer/references/rust-rules/name-into-ownership.md +123 -0
  109. package/template/agent/skills/rust-developer/references/rust-rules/name-is-has-bool.md +127 -0
  110. package/template/agent/skills/rust-developer/references/rust-rules/name-iter-convention.md +129 -0
  111. package/template/agent/skills/rust-developer/references/rust-rules/name-iter-method.md +131 -0
  112. package/template/agent/skills/rust-developer/references/rust-rules/name-iter-type-match.md +142 -0
  113. package/template/agent/skills/rust-developer/references/rust-rules/name-lifetime-short.md +86 -0
  114. package/template/agent/skills/rust-developer/references/rust-rules/name-no-get-prefix.md +154 -0
  115. package/template/agent/skills/rust-developer/references/rust-rules/name-to-expensive.md +118 -0
  116. package/template/agent/skills/rust-developer/references/rust-rules/name-type-param-single.md +92 -0
  117. package/template/agent/skills/rust-developer/references/rust-rules/name-types-camel.md +65 -0
  118. package/template/agent/skills/rust-developer/references/rust-rules/name-variants-camel.md +101 -0
  119. package/template/agent/skills/rust-developer/references/rust-rules/opt-bounds-check.md +161 -0
  120. package/template/agent/skills/rust-developer/references/rust-rules/opt-cache-friendly.md +187 -0
  121. package/template/agent/skills/rust-developer/references/rust-rules/opt-codegen-units.md +142 -0
  122. package/template/agent/skills/rust-developer/references/rust-rules/opt-cold-unlikely.md +152 -0
  123. package/template/agent/skills/rust-developer/references/rust-rules/opt-inline-always-rare.md +141 -0
  124. package/template/agent/skills/rust-developer/references/rust-rules/opt-inline-never-cold.md +181 -0
  125. package/template/agent/skills/rust-developer/references/rust-rules/opt-inline-small.md +160 -0
  126. package/template/agent/skills/rust-developer/references/rust-rules/opt-likely-hint.md +171 -0
  127. package/template/agent/skills/rust-developer/references/rust-rules/opt-lto-release.md +130 -0
  128. package/template/agent/skills/rust-developer/references/rust-rules/opt-pgo-profile.md +167 -0
  129. package/template/agent/skills/rust-developer/references/rust-rules/opt-simd-portable.md +144 -0
  130. package/template/agent/skills/rust-developer/references/rust-rules/opt-target-cpu.md +154 -0
  131. package/template/agent/skills/rust-developer/references/rust-rules/own-arc-shared.md +141 -0
  132. package/template/agent/skills/rust-developer/references/rust-rules/own-borrow-over-clone.md +95 -0
  133. package/template/agent/skills/rust-developer/references/rust-rules/own-clone-explicit.md +135 -0
  134. package/template/agent/skills/rust-developer/references/rust-rules/own-copy-small.md +124 -0
  135. package/template/agent/skills/rust-developer/references/rust-rules/own-cow-conditional.md +135 -0
  136. package/template/agent/skills/rust-developer/references/rust-rules/own-lifetime-elision.md +134 -0
  137. package/template/agent/skills/rust-developer/references/rust-rules/own-move-large.md +134 -0
  138. package/template/agent/skills/rust-developer/references/rust-rules/own-mutex-interior.md +105 -0
  139. package/template/agent/skills/rust-developer/references/rust-rules/own-rc-single-thread.md +65 -0
  140. package/template/agent/skills/rust-developer/references/rust-rules/own-refcell-interior.md +97 -0
  141. package/template/agent/skills/rust-developer/references/rust-rules/own-rwlock-readers.md +122 -0
  142. package/template/agent/skills/rust-developer/references/rust-rules/own-slice-over-vec.md +119 -0
  143. package/template/agent/skills/rust-developer/references/rust-rules/perf-black-box-bench.md +153 -0
  144. package/template/agent/skills/rust-developer/references/rust-rules/perf-chain-avoid.md +136 -0
  145. package/template/agent/skills/rust-developer/references/rust-rules/perf-collect-into.md +133 -0
  146. package/template/agent/skills/rust-developer/references/rust-rules/perf-collect-once.md +120 -0
  147. package/template/agent/skills/rust-developer/references/rust-rules/perf-drain-reuse.md +137 -0
  148. package/template/agent/skills/rust-developer/references/rust-rules/perf-entry-api.md +134 -0
  149. package/template/agent/skills/rust-developer/references/rust-rules/perf-extend-batch.md +150 -0
  150. package/template/agent/skills/rust-developer/references/rust-rules/perf-iter-lazy.md +123 -0
  151. package/template/agent/skills/rust-developer/references/rust-rules/perf-iter-over-index.md +113 -0
  152. package/template/agent/skills/rust-developer/references/rust-rules/perf-profile-first.md +175 -0
  153. package/template/agent/skills/rust-developer/references/rust-rules/perf-release-profile.md +149 -0
  154. package/template/agent/skills/rust-developer/references/rust-rules/proj-bin-dir.md +142 -0
  155. package/template/agent/skills/rust-developer/references/rust-rules/proj-flat-small.md +133 -0
  156. package/template/agent/skills/rust-developer/references/rust-rules/proj-lib-main-split.md +148 -0
  157. package/template/agent/skills/rust-developer/references/rust-rules/proj-mod-by-feature.md +130 -0
  158. package/template/agent/skills/rust-developer/references/rust-rules/proj-mod-rs-dir.md +120 -0
  159. package/template/agent/skills/rust-developer/references/rust-rules/proj-prelude-module.md +155 -0
  160. package/template/agent/skills/rust-developer/references/rust-rules/proj-pub-crate-internal.md +139 -0
  161. package/template/agent/skills/rust-developer/references/rust-rules/proj-pub-super-parent.md +135 -0
  162. package/template/agent/skills/rust-developer/references/rust-rules/proj-pub-use-reexport.md +162 -0
  163. package/template/agent/skills/rust-developer/references/rust-rules/proj-workspace-deps.md +186 -0
  164. package/template/agent/skills/rust-developer/references/rust-rules/proj-workspace-large.md +162 -0
  165. package/template/agent/skills/rust-developer/references/rust-rules/test-arrange-act-assert.md +160 -0
  166. package/template/agent/skills/rust-developer/references/rust-rules/test-cfg-test-module.md +151 -0
  167. package/template/agent/skills/rust-developer/references/rust-rules/test-criterion-bench.md +171 -0
  168. package/template/agent/skills/rust-developer/references/rust-rules/test-descriptive-names.md +142 -0
  169. package/template/agent/skills/rust-developer/references/rust-rules/test-doctest-examples.md +168 -0
  170. package/template/agent/skills/rust-developer/references/rust-rules/test-fixture-raii.md +151 -0
  171. package/template/agent/skills/rust-developer/references/rust-rules/test-integration-dir.md +144 -0
  172. package/template/agent/skills/rust-developer/references/rust-rules/test-mock-traits.md +189 -0
  173. package/template/agent/skills/rust-developer/references/rust-rules/test-mockall-mocking.md +226 -0
  174. package/template/agent/skills/rust-developer/references/rust-rules/test-proptest-properties.md +161 -0
  175. package/template/agent/skills/rust-developer/references/rust-rules/test-should-panic.md +130 -0
  176. package/template/agent/skills/rust-developer/references/rust-rules/test-tokio-async.md +154 -0
  177. package/template/agent/skills/rust-developer/references/rust-rules/test-use-super.md +127 -0
  178. package/template/agent/skills/rust-developer/references/rust-rules/type-enum-states.md +154 -0
  179. package/template/agent/skills/rust-developer/references/rust-rules/type-generic-bounds.md +142 -0
  180. package/template/agent/skills/rust-developer/references/rust-rules/type-never-diverge.md +146 -0
  181. package/template/agent/skills/rust-developer/references/rust-rules/type-newtype-ids.md +160 -0
  182. package/template/agent/skills/rust-developer/references/rust-rules/type-newtype-validated.md +159 -0
  183. package/template/agent/skills/rust-developer/references/rust-rules/type-no-stringly.md +144 -0
  184. package/template/agent/skills/rust-developer/references/rust-rules/type-option-nullable.md +137 -0
  185. package/template/agent/skills/rust-developer/references/rust-rules/type-phantom-marker.md +188 -0
  186. package/template/agent/skills/rust-developer/references/rust-rules/type-repr-transparent.md +143 -0
  187. package/template/agent/skills/rust-developer/references/rust-rules/type-result-fallible.md +131 -0
  188. package/template/agent/skills/using-git-worktrees/SKILL.md +3 -1
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 Jesse Vincent
3
+ Copyright (c) 2026 Thoai Nguyen
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -5,7 +5,6 @@
5
5
 
6
6
  > **Superpowers for [Google Antigravity](https://antigravity.google)** — a complete development workflow powered by composable skills, workflows, and rules.
7
7
 
8
-
9
8
  This repo ports the [Superpowers](https://github.com/obra/superpowers) skills library to work natively with **Google Antigravity agent**, with Antigravity-compatible path conventions, an auto-update workflow, and curated workflow files translated from the upstream skills.
10
9
 
11
10
  ---
@@ -38,14 +37,13 @@ agy-superpowers init
38
37
 
39
38
  ---
40
39
 
41
-
42
40
  ## What's Inside
43
41
 
44
42
  ```
45
43
  .agent/
46
44
  ├── rules/
47
45
  │ └── superpowers.md # Always-on rule: agent checks skills before acting
48
- ├── skills/ # 56 skills (patched from upstream + 12 indie hacker skills)
46
+ ├── skills/ # 58 skills (14 upstream + 44 expansion skills)
49
47
  │ ├── brainstorming/
50
48
  │ ├── writing-plans/
51
49
  │ ├── executing-plans/
@@ -91,11 +89,13 @@ agy-superpowers init
91
89
 
92
90
  ### Additional Workflows
93
91
 
94
- | Workflow | What happens |
95
- | --------------------- | ------------------------------------------------------------ |
96
- | `/debug` | Systematic 4-phase debugging process |
97
- | `/publish` | Publish to npm with version bump, git tag, and push |
98
- | `/update-superpowers` | Pull latest upstream release, re-sync skills, AI-rewrite rules |
92
+ | Workflow | What happens |
93
+ | ---------------------- | -------------------------------------------------------------- |
94
+ | `/debug` | Systematic 4-phase debugging process |
95
+ | `/publish` | Publish to npm with version bump, git tag, and push |
96
+ | `/update-superpowers` | Pull latest upstream release, re-sync skills, AI-rewrite rules |
97
+ | `/ui-ux-pro-max` | Plan and implement UI with curated design intelligence |
98
+ | `/mobile-uiux-promax` | Plan and implement mobile app UI across all major platforms |
99
99
 
100
100
  ---
101
101
 
@@ -103,31 +103,31 @@ agy-superpowers init
103
103
 
104
104
  ### Getting Started in 5 Minutes
105
105
 
106
- **How it works:** Superpowers gives your agent 56 specialized skills. You don't need to remember or invoke them — the agent **automatically reads and selects the right skill** based on what you ask. Just describe what you need in natural language.
106
+ **How it works:** Superpowers gives your agent 58 specialized skills. You don't need to remember or invoke them — the agent **automatically reads and selects the right skill** based on what you ask. Just describe what you need in natural language.
107
107
 
108
108
  #### Your First Feature: A Walkthrough
109
109
 
110
110
  Let's say you want to add dark mode to your React app. Here's what the full cycle looks like:
111
111
 
112
- | Step | You type | What happens |
113
- | ---- | -------- | ------------ |
114
- | 1 | `/brainstorm add dark mode to my React app` | Agent asks clarifying questions, explores approaches, and produces a design spec |
115
- | 2 | `/write-plan` | Spec gets converted into a task list with exact file paths and acceptance criteria |
116
- | 3 | `/execute-plan` | Agent implements tasks one by one, pausing for your review at checkpoints |
117
- | 4 | `/code-review` | Agent reviews the completed code against the plan, reports issues by severity |
118
- | 5 | _(automatic)_ | Agent offers to merge, create a PR, or discard the branch |
112
+ | Step | You type | What happens |
113
+ | ---- | ------------------------------------------- | ---------------------------------------------------------------------------------- |
114
+ | 1 | `/brainstorm add dark mode to my React app` | Agent asks clarifying questions, explores approaches, and produces a design spec |
115
+ | 2 | `/write-plan` | Spec gets converted into a task list with exact file paths and acceptance criteria |
116
+ | 3 | `/execute-plan` | Agent implements tasks one by one, pausing for your review at checkpoints |
117
+ | 4 | `/code-review` | Agent reviews the completed code against the plan, reports issues by severity |
118
+ | 5 | _(automatic)_ | Agent offers to merge, create a PR, or discard the branch |
119
119
 
120
120
  That's it. Five steps from idea to merge-ready code.
121
121
 
122
122
  #### Quick Reference: The 5 Commands You'll Use Most
123
123
 
124
- | Command | What it does | Example |
125
- | ------- | ------------ | ------- |
126
- | `/brainstorm` | Turn a rough idea into a validated design spec | `/brainstorm add user onboarding flow` |
127
- | `/write-plan` | Break an approved spec into bite-sized tasks | `/write-plan` (after brainstorm) |
128
- | `/execute-plan` | Execute tasks with human review checkpoints | `/execute-plan` (after write-plan) |
129
- | `/code-review` | Review completed work before merging | `/code-review` |
130
- | `/debug` | Systematic 4-phase debugging for any issue | `/debug users can't log in on Safari` |
124
+ | Command | What it does | Example |
125
+ | --------------- | ---------------------------------------------- | -------------------------------------- |
126
+ | `/brainstorm` | Turn a rough idea into a validated design spec | `/brainstorm add user onboarding flow` |
127
+ | `/write-plan` | Break an approved spec into bite-sized tasks | `/write-plan` (after brainstorm) |
128
+ | `/execute-plan` | Execute tasks with human review checkpoints | `/execute-plan` (after write-plan) |
129
+ | `/code-review` | Review completed work before merging | `/code-review` |
130
+ | `/debug` | Systematic 4-phase debugging for any issue | `/debug users can't log in on Safari` |
131
131
 
132
132
  ---
133
133
 
@@ -139,96 +139,96 @@ The agent doesn't just write code — it has specialized knowledge in marketing,
139
139
 
140
140
  These are triggered via slash commands or activate automatically during the dev loop:
141
141
 
142
- | Skill | When it activates |
143
- | ----- | ----------------- |
144
- | `brainstorming` | Adding a feature, building a component, or modifying behavior |
145
- | `writing-plans` | Design is approved — breaking work into tasks |
146
- | `executing-plans` | Running a plan step-by-step with checkpoints |
147
- | `test-driven-development` | Implementing any feature or bugfix |
148
- | `systematic-debugging` | Debugging any issue |
149
- | `verification-before-completion` | Before declaring a fix or task done |
150
- | `requesting-code-review` | Completing tasks or before merging |
151
- | `receiving-code-review` | Receiving code review feedback |
152
- | `finishing-a-development-branch` | Implementation is complete — merge / PR / discard |
153
- | `using-git-worktrees` | Starting work on an isolated branch |
154
- | `dispatching-parallel-agents` | 2+ independent tasks that can run in parallel |
155
- | `subagent-driven-development` | Executing plan tasks in the current session |
142
+ | Skill | When it activates |
143
+ | -------------------------------- | ------------------------------------------------------------- |
144
+ | `brainstorming` | Adding a feature, building a component, or modifying behavior |
145
+ | `writing-plans` | Design is approved — breaking work into tasks |
146
+ | `executing-plans` | Running a plan step-by-step with checkpoints |
147
+ | `test-driven-development` | Implementing any feature or bugfix |
148
+ | `systematic-debugging` | Debugging any issue |
149
+ | `verification-before-completion` | Before declaring a fix or task done |
150
+ | `requesting-code-review` | Completing tasks or before merging |
151
+ | `receiving-code-review` | Receiving code review feedback |
152
+ | `finishing-a-development-branch` | Implementation is complete — merge / PR / discard |
153
+ | `using-git-worktrees` | Starting work on an isolated branch |
154
+ | `dispatching-parallel-agents` | 2+ independent tasks that can run in parallel |
155
+ | `subagent-driven-development` | Executing plan tasks in the current session |
156
156
 
157
157
  #### 💻 Technical Skills
158
158
 
159
159
  Activate when you work on specific technical domains:
160
160
 
161
- | Skill | When it activates |
162
- | ----- | ----------------- |
163
- | `backend-developer` | Designing APIs, server-side logic, database schemas |
164
- | `frontend-developer` | Building web UI, component architecture |
165
- | `mobile-developer` | Mobile app features, React Native / Flutter / iOS / Android |
166
- | `game-developer` | Game app features, game code, game architecture |
167
- | `api-design` | REST or GraphQL APIs, versioning, rate limiting, pagination |
168
- | `real-time-features` | WebSockets, SSE, live collaboration, real-time notifications |
169
- | `auth-and-identity` | Authentication, authorization, SSO, RBAC |
170
- | `devops-engineer` | CI/CD, infrastructure, deployment, monitoring |
171
- | `security-engineer` | App security, user data handling, GDPR/App Store compliance |
172
- | `email-infrastructure` | Transactional email, deliverability, SPF/DKIM/DMARC |
173
- | `saas-architect` | Multi-tenant SaaS architecture, tenant isolation |
174
- | `chrome-extension-developer` | Chrome extensions, browser-based tools |
161
+ | Skill | When it activates |
162
+ | ---------------------------- | ------------------------------------------------------------ |
163
+ | `backend-developer` | Designing APIs, server-side logic, database schemas |
164
+ | `frontend-developer` | Building web UI, component architecture |
165
+ | `mobile-developer` | Mobile app features, React Native / Flutter / iOS / Android |
166
+ | `game-developer` | Game app features, game code, game architecture |
167
+ | `api-design` | REST or GraphQL APIs, versioning, rate limiting, pagination |
168
+ | `real-time-features` | WebSockets, SSE, live collaboration, real-time notifications |
169
+ | `auth-and-identity` | Authentication, authorization, SSO, RBAC |
170
+ | `devops-engineer` | CI/CD, infrastructure, deployment, monitoring |
171
+ | `security-engineer` | App security, user data handling, GDPR/App Store compliance |
172
+ | `email-infrastructure` | Transactional email, deliverability, SPF/DKIM/DMARC |
173
+ | `saas-architect` | Multi-tenant SaaS architecture, tenant isolation |
174
+ | `chrome-extension-developer` | Chrome extensions, browser-based tools |
175
175
 
176
176
  > **Example prompt:** _"Design a REST API for user management with rate limiting and pagination"_ → activates `api-design` + `backend-developer`
177
177
 
178
178
  #### 🎨 Product & Design
179
179
 
180
- | Skill | When it activates |
181
- | ----- | ----------------- |
182
- | `product-manager` | Defining requirements, prioritizing features, planning roadmaps |
183
- | `ux-designer` | Designing UI, wireframes, user research, information architecture |
184
- | `cto-architect` | System design decisions, tech debt, planning for scale |
185
- | `i18n-localization` | Internationalization, localizing for new markets |
186
- | `game-design` | Game mechanics, core loops, progression, difficulty curves |
180
+ | Skill | When it activates |
181
+ | ------------------- | ----------------------------------------------------------------- |
182
+ | `product-manager` | Defining requirements, prioritizing features, planning roadmaps |
183
+ | `ux-designer` | Designing UI, wireframes, user research, information architecture |
184
+ | `cto-architect` | System design decisions, tech debt, planning for scale |
185
+ | `i18n-localization` | Internationalization, localizing for new markets |
186
+ | `game-design` | Game mechanics, core loops, progression, difficulty curves |
187
187
 
188
188
  > **Example prompt:** _"Help me prioritize features for the next sprint based on user feedback"_ → activates `product-manager`
189
189
 
190
190
  #### 📈 Marketing & Growth
191
191
 
192
- | Skill | When it activates |
193
- | ----- | ----------------- |
194
- | `growth-hacker` | User acquisition, viral loops, activation funnels |
195
- | `content-marketer` | Content strategy, SEO content, social media, newsletters |
196
- | `seo-specialist` | Technical SEO, keyword research, on-page optimization |
197
- | `conversion-optimizer` | Landing pages, trial-to-paid funnels, paywall design |
198
- | `copywriter` | Landing page copy, app store descriptions, email sequences |
199
- | `community-manager` | Discord, Reddit, Slack communities, engagement strategy |
200
- | `influencer-marketer` | UGC campaigns, creator partnerships, TikTok/YouTube marketing |
201
- | `paid-acquisition-specialist` | Meta Ads, Google Ads, Apple Search Ads, ROAS optimization |
202
- | `launch-strategist` | Product launch, go-to-market, pre-launch campaigns |
203
- | `landing-page-builder` | Landing pages, waitlist pages, marketing sites |
204
- | `app-store-optimizer` | App Store / Google Play listing optimization, keyword strategy |
192
+ | Skill | When it activates |
193
+ | ----------------------------- | -------------------------------------------------------------- |
194
+ | `growth-hacker` | User acquisition, viral loops, activation funnels |
195
+ | `content-marketer` | Content strategy, SEO content, social media, newsletters |
196
+ | `seo-specialist` | Technical SEO, keyword research, on-page optimization |
197
+ | `conversion-optimizer` | Landing pages, trial-to-paid funnels, paywall design |
198
+ | `copywriter` | Landing page copy, app store descriptions, email sequences |
199
+ | `community-manager` | Discord, Reddit, Slack communities, engagement strategy |
200
+ | `influencer-marketer` | UGC campaigns, creator partnerships, TikTok/YouTube marketing |
201
+ | `paid-acquisition-specialist` | Meta Ads, Google Ads, Apple Search Ads, ROAS optimization |
202
+ | `launch-strategist` | Product launch, go-to-market, pre-launch campaigns |
203
+ | `landing-page-builder` | Landing pages, waitlist pages, marketing sites |
204
+ | `app-store-optimizer` | App Store / Google Play listing optimization, keyword strategy |
205
205
 
206
206
  > **Example prompt:** _"Write an ASO-optimized App Store description for my meditation app"_ → activates `app-store-optimizer` + `copywriter`
207
207
 
208
208
  #### 💰 Revenue & Operations
209
209
 
210
- | Skill | When it activates |
211
- | ----- | ----------------- |
212
- | `monetization-strategist` | Pricing models, freemium strategy, IAP, unit economics |
213
- | `pricing-psychologist` | Pricing, paywalls, free-to-paid conversion |
214
- | `subscription-billing` | Stripe integration, webhooks, trial logic, dunning flows |
215
- | `bootstrapper-finance` | MRR tracking, runway calculation, financial decisions |
216
- | `solo-founder-ops` | Time management, feature prioritization, running multiple products |
217
- | `analytics-setup` | Analytics, tracking tools, metrics dashboards |
218
- | `customer-success-manager` | User support, feedback loops, NPS/CSAT, churn |
219
- | `data-analyst` | Metrics frameworks, funnel analysis, cohort analysis, A/B tests |
220
- | `indie-legal` | Privacy policies, terms of service, GDPR/CCPA |
210
+ | Skill | When it activates |
211
+ | -------------------------- | ------------------------------------------------------------------ |
212
+ | `monetization-strategist` | Pricing models, freemium strategy, IAP, unit economics |
213
+ | `pricing-psychologist` | Pricing, paywalls, free-to-paid conversion |
214
+ | `subscription-billing` | Stripe integration, webhooks, trial logic, dunning flows |
215
+ | `bootstrapper-finance` | MRR tracking, runway calculation, financial decisions |
216
+ | `solo-founder-ops` | Time management, feature prioritization, running multiple products |
217
+ | `analytics-setup` | Analytics, tracking tools, metrics dashboards |
218
+ | `customer-success-manager` | User support, feedback loops, NPS/CSAT, churn |
219
+ | `data-analyst` | Metrics frameworks, funnel analysis, cohort analysis, A/B tests |
220
+ | `indie-legal` | Privacy policies, terms of service, GDPR/CCPA |
221
221
 
222
222
  > **Example prompt:** _"Should I charge $9/mo or $29/mo for my SaaS? Here's my target audience..."_ → activates `pricing-psychologist` + `monetization-strategist`
223
223
 
224
224
  #### 🚀 Validate & Scale
225
225
 
226
- | Skill | When it activates |
227
- | ----- | ----------------- |
228
- | `idea-validator` | Evaluating a product idea, assessing market fit before building |
229
- | `market-researcher` | Finding a niche, analyzing market size, customer discovery |
230
- | `ai-integrated-product` | Integrating AI/LLM capabilities, building AI-powered features |
231
- | `micro-saas-builder` | Building a micro-SaaS, choosing a niche SaaS idea |
226
+ | Skill | When it activates |
227
+ | ----------------------- | --------------------------------------------------------------- |
228
+ | `idea-validator` | Evaluating a product idea, assessing market fit before building |
229
+ | `market-researcher` | Finding a niche, analyzing market size, customer discovery |
230
+ | `ai-integrated-product` | Integrating AI/LLM capabilities, building AI-powered features |
231
+ | `micro-saas-builder` | Building a micro-SaaS, choosing a niche SaaS idea |
232
232
 
233
233
  > **Example prompt:** _"I have an idea for an AI writing tool — is it worth building?"_ → activates `idea-validator` + `market-researcher`
234
234
 
@@ -238,12 +238,12 @@ Activate when you work on specific technical domains:
238
238
 
239
239
  #### When to `/brainstorm` vs Just Ask
240
240
 
241
- | Situation | What to do |
242
- | --------- | ---------- |
243
- | Multi-file feature, new component, architectural change | `/brainstorm` → full design cycle |
244
- | Quick fix, rename, typo, single-line change | Just ask directly |
245
- | Knowledge question ("What's the best auth library?") | Just ask directly |
246
- | Not sure about scope | Start with `/brainstorm` — it's safe to exit early |
241
+ | Situation | What to do |
242
+ | ------------------------------------------------------- | -------------------------------------------------- |
243
+ | Multi-file feature, new component, architectural change | `/brainstorm` → full design cycle |
244
+ | Quick fix, rename, typo, single-line change | Just ask directly |
245
+ | Knowledge question ("What's the best auth library?") | Just ask directly |
246
+ | Not sure about scope | Start with `/brainstorm` — it's safe to exit early |
247
247
 
248
248
  **Rule of thumb:** if it touches more than one file or involves design tradeoffs → `/brainstorm`.
249
249
 
@@ -256,6 +256,7 @@ Activate when you work on specific technical domains:
256
256
  #### Combining Workflows for Complex Projects
257
257
 
258
258
  **Full product launch cycle:**
259
+
259
260
  ```
260
261
  /brainstorm → /write-plan → /execute-plan → /code-review
261
262
  ↓ then in separate conversations:
@@ -265,6 +266,7 @@ Activate when you work on specific technical domains:
265
266
  ```
266
267
 
267
268
  **Idea → Validation → Build:**
269
+
268
270
  ```
269
271
  "I have an idea for X, is it viable?" → idea-validator
270
272
  "Research the market for X" → market-researcher
@@ -272,6 +274,7 @@ Activate when you work on specific technical domains:
272
274
  ```
273
275
 
274
276
  **Debugging effectively:**
277
+
275
278
  ```
276
279
  /debug → systematic investigation
277
280
  ↓ if architectural issue found:
@@ -280,20 +283,17 @@ Activate when you work on specific technical domains:
280
283
 
281
284
  #### Configuration
282
285
 
283
- Per-project settings live in `.agent/config.yml`:
284
-
285
- - Set `auto_commit: false` when you want full control over your git history
286
- - This file is preserved across `/update-superpowers` runs — your settings won't be overwritten
286
+ Per-project settings (like `auto_commit`) live in `.agent/config.yml` — see [Configuration](#configuration-1) for details.
287
287
 
288
288
  #### Common Pitfalls
289
289
 
290
- | ❌ Don't | ✅ Do instead |
291
- | -------- | ------------- |
292
- | Skip `/brainstorm` for large features | Always brainstorm features that touch multiple files |
293
- | Cram multiple goals into one prompt | One conversation = one clear objective |
294
- | Jump to `/execute-plan` without reviewing the spec | Review and approve the design spec before execution |
295
- | Skip `/code-review` before merging | Always review before merge — catch bugs early |
296
- | Assume the agent only writes code | Ask about pricing, marketing, legal — it has skills for those too |
290
+ | ❌ Don't | ✅ Do instead |
291
+ | -------------------------------------------------- | ----------------------------------------------------------------- |
292
+ | Skip `/brainstorm` for large features | Always brainstorm features that touch multiple files |
293
+ | Cram multiple goals into one prompt | One conversation = one clear objective |
294
+ | Jump to `/execute-plan` without reviewing the spec | Review and approve the design spec before execution |
295
+ | Skip `/code-review` before merging | Always review before merge — catch bugs early |
296
+ | Assume the agent only writes code | Ask about pricing, marketing, legal — it has skills for those too |
297
297
 
298
298
  ---
299
299
 
@@ -302,6 +302,7 @@ Per-project settings live in `.agent/config.yml`:
302
302
  Skills are sourced from upstream Superpowers but automatically patched to be Antigravity-native. The patching system uses a human-readable spec at `.agent/patches/skills-patches.md` which the AI interprets semantically — making patches resilient to upstream changes.
303
303
 
304
304
  When you run `/update-superpowers`, skills are:
305
+
305
306
  1. Copied fresh from `superpowers/skills/`
306
307
  2. Patched via AI to remove non-Antigravity references
307
308
  3. Ready to use immediately
@@ -310,77 +311,80 @@ When you run `/update-superpowers`, skills are:
310
311
 
311
312
  ## Skills Reference
312
313
 
313
- | Skill | Triggers automatically when... |
314
- | ----- | ------------------------------ |
315
- | `ai-integrated-product` | Integrating AI/LLM capabilities into a product, building AI-powered features |
316
- | `analytics-setup` | Setting up analytics, choosing tracking tools, or designing a metrics dashboard for an indie product |
317
- | `api-design` | Designing REST or GraphQL APIs, versioning, rate limiting, pagination, or API docs |
318
- | `app-store-optimizer` | Working on App Store / Google Play listing optimization, keyword strategy, or A/B testing |
319
- | `auth-and-identity` | Implementing authentication, authorization, SSO/SAML/OIDC, session management, or RBAC |
320
- | `backend-developer` | Designing APIs, server-side logic, database schemas, or reviewing backend code |
321
- | `bootstrapper-finance` | Tracking MRR, calculating runway, making financial decisions for a solo/bootstrapped business |
322
- | `brainstorming` | Adding a feature, building a component, or modifying behavior |
323
- | `chrome-extension-developer` | Building a Chrome extension, browser extension, or browser-based tool |
324
- | `community-manager` | Building and managing communities on Discord, Reddit, Slack, or social platforms |
325
- | `content-marketer` | Planning content strategy, SEO content, social media, or email newsletters |
326
- | `conversion-optimizer` | Optimizing landing pages, trial-to-paid funnels, paywall design, or onboarding flows |
327
- | `copywriter` | Writing landing page copy, app store descriptions, email sequences, or user-facing text |
328
- | `cto-architect` | Making system design decisions, managing tech debt, planning for scale |
329
- | `customer-success-manager` | Managing user support, feedback loops, NPS/CSAT tracking, or handling churn |
330
- | `data-analyst` | Setting up metrics, analyzing funnels, cohort analysis, dashboards, or A/B test results |
331
- | `devops-engineer` | Working on CI/CD pipelines, infrastructure, deployment, monitoring, or reliability |
332
- | `dispatching-parallel-agents` | Facing 2+ independent tasks that can run without shared state |
333
- | `email-infrastructure` | Setting up transactional email, deliverability, SPF/DKIM/DMARC, or email templates |
334
- | `executing-plans` | Running a plan step-by-step with checkpoints |
335
- | `finishing-a-development-branch` | Implementation is complete and you need to merge / PR / discard |
336
- | `frontend-developer` | Building web UI, component architecture, or reviewing frontend code |
337
- | `game-design` | Designing game mechanics, core loops, progression, monetization, or difficulty curves |
338
- | `game-developer` | Working on game app features, reviewing game code, or game architecture decisions |
339
- | `growth-hacker` | Planning user acquisition, viral loops, activation funnels, or growth experiments |
340
- | `i18n-localization` | Planning i18n architecture, localizing for new markets, or managing translations |
341
- | `idea-validator` | Starting a new project, evaluating a product idea, or assessing market fit before building |
342
- | `indie-legal` | Creating privacy policies, terms of service, handling GDPR/CCPA basics, or understanding legal requirements |
343
- | `influencer-marketer` | Planning UGC campaigns, creator partnerships, TikTok/YouTube/Instagram marketing |
344
- | `landing-page-builder` | Creating a landing page, waitlist page, product page, or marketing site |
345
- | `launch-strategist` | Preparing to launch a product, planning go-to-market, or running a pre-launch campaign |
346
- | `market-researcher` | Finding a niche, analyzing market size, researching customer segments, or doing customer discovery |
347
- | `micro-saas-builder` | Building a micro-SaaS product, choosing a niche SaaS idea, or designing a small scalable SaaS |
348
- | `mobile-developer` | Working on mobile app features, reviewing mobile code, or mobile architecture |
349
- | `monetization-strategist` | Designing pricing models, freemium strategy, IAP, or modeling unit economics |
350
- | `paid-acquisition-specialist` | Running Meta Ads, Google Ads, Apple Search Ads, or any paid acquisition channel |
351
- | `pricing-psychologist` | Designing pricing, paywalls, free-to-paid conversion, or optimizing upgrade flows |
352
- | `product-manager` | Defining requirements, prioritizing features, planning roadmaps, or validating problems |
353
- | `real-time-features` | Implementing WebSockets, SSE, live collaboration, or real-time notifications |
354
- | `receiving-code-review` | Receiving code review feedback, before implementing suggestions |
355
- | `requesting-code-review` | Completing tasks or before merging to verify work meets requirements |
356
- | `retention-specialist` | Improving user retention, reducing churn, analyzing engagement, or re-engagement |
357
- | `saas-architect` | Designing multi-tenant SaaS architecture, tenant isolation, or data models |
358
- | `security-engineer` | Reviewing app security, handling user data, ensuring GDPR/App Store compliance |
359
- | `seo-specialist` | Working on technical SEO, keyword research, on-page optimization, or backlink strategy |
360
- | `solo-founder-ops` | Managing time, prioritizing features, or running multiple products as a solo founder |
361
- | `subagent-driven-development` | Executing implementation plans with independent tasks in the current session |
362
- | `subscription-billing` | Integrating subscription billing, Stripe webhooks, trial logic, or dunning flows |
363
- | `systematic-debugging` | Debugging any issue |
364
- | `test-driven-development` | Implementing any feature or bugfix |
365
- | `using-git-worktrees` | Starting work on an isolated branch |
366
- | `using-superpowers` | Starting any conversation checks for relevant skills |
367
- | `ux-designer` | Designing UI, wireframes, user research, or information architecture |
368
- | `verification-before-completion` | Before declaring a fix or task done |
369
- | `writing-plans` | Design is approved breaking work into tasks |
370
- | `writing-skills` | Creating or editing a skill |
314
+ | Skill | Triggers automatically when... |
315
+ | -------------------------------- | ----------------------------------------------------------------------------------------------------------- |
316
+ | `ai-integrated-product` | Integrating AI/LLM capabilities into a product, building AI-powered features |
317
+ | `analytics-setup` | Setting up analytics, choosing tracking tools, or designing a metrics dashboard for an indie product |
318
+ | `api-design` | Designing REST or GraphQL APIs, versioning, rate limiting, pagination, or API docs |
319
+ | `app-store-optimizer` | Working on App Store / Google Play listing optimization, keyword strategy, or A/B testing |
320
+ | `auth-and-identity` | Implementing authentication, authorization, SSO/SAML/OIDC, session management, or RBAC |
321
+ | `backend-developer` | Designing APIs, server-side logic, database schemas, or reviewing backend code |
322
+ | `bootstrapper-finance` | Tracking MRR, calculating runway, making financial decisions for a solo/bootstrapped business |
323
+ | `brainstorming` | Adding a feature, building a component, or modifying behavior |
324
+ | `chrome-extension-developer` | Building a Chrome extension, browser extension, or browser-based tool |
325
+ | `community-manager` | Building and managing communities on Discord, Reddit, Slack, or social platforms |
326
+ | `content-marketer` | Planning content strategy, SEO content, social media, or email newsletters |
327
+ | `conversion-optimizer` | Optimizing landing pages, trial-to-paid funnels, paywall design, or onboarding flows |
328
+ | `copywriter` | Writing landing page copy, app store descriptions, email sequences, or user-facing text |
329
+ | `cto-architect` | Making system design decisions, managing tech debt, planning for scale |
330
+ | `customer-success-manager` | Managing user support, feedback loops, NPS/CSAT tracking, or handling churn |
331
+ | `data-analyst` | Setting up metrics, analyzing funnels, cohort analysis, dashboards, or A/B test results |
332
+ | `devops-engineer` | Working on CI/CD pipelines, infrastructure, deployment, monitoring, or reliability |
333
+ | `dispatching-parallel-agents` | Facing 2+ independent tasks that can run without shared state |
334
+ | `email-infrastructure` | Setting up transactional email, deliverability, SPF/DKIM/DMARC, or email templates |
335
+ | `executing-plans` | Running a plan step-by-step with checkpoints |
336
+ | `finishing-a-development-branch` | Implementation is complete and you need to merge / PR / discard |
337
+ | `frontend-design` | Building web components, pages, or apps with high design quality — avoids generic AI aesthetics |
338
+ | `frontend-developer` | Building web UI, component architecture, or reviewing frontend code |
339
+ | `game-design` | Designing game mechanics, core loops, progression, monetization, or difficulty curves |
340
+ | `game-developer` | Working on game app features, reviewing game code, or game architecture decisions |
341
+ | `growth-hacker` | Planning user acquisition, viral loops, activation funnels, or growth experiments |
342
+ | `i18n-localization` | Planning i18n architecture, localizing for new markets, or managing translations |
343
+ | `idea-validator` | Starting a new project, evaluating a product idea, or assessing market fit before building |
344
+ | `indie-legal` | Creating privacy policies, terms of service, handling GDPR/CCPA basics, or understanding legal requirements |
345
+ | `influencer-marketer` | Planning UGC campaigns, creator partnerships, TikTok/YouTube/Instagram marketing |
346
+ | `landing-page-builder` | Creating a landing page, waitlist page, product page, or marketing site |
347
+ | `launch-strategist` | Preparing to launch a product, planning go-to-market, or running a pre-launch campaign |
348
+ | `market-researcher` | Finding a niche, analyzing market size, researching customer segments, or doing customer discovery |
349
+ | `micro-saas-builder` | Building a micro-SaaS product, choosing a niche SaaS idea, or designing a small scalable SaaS |
350
+ | `mobile-developer` | Working on mobile app features, reviewing mobile code, or mobile architecture |
351
+ | `mobile-uiux-promax` | Designing or building mobile app UI for iOS, Android, React Native, Flutter, SwiftUI, or Compose |
352
+ | `monetization-strategist` | Designing pricing models, freemium strategy, IAP, or modeling unit economics |
353
+ | `paid-acquisition-specialist` | Running Meta Ads, Google Ads, Apple Search Ads, or any paid acquisition channel |
354
+ | `pricing-psychologist` | Designing pricing, paywalls, free-to-paid conversion, or optimizing upgrade flows |
355
+ | `product-manager` | Defining requirements, prioritizing features, planning roadmaps, or validating problems |
356
+ | `real-time-features` | Implementing WebSockets, SSE, live collaboration, or real-time notifications |
357
+ | `receiving-code-review` | Receiving code review feedback, before implementing suggestions |
358
+ | `requesting-code-review` | Completing tasks or before merging to verify work meets requirements |
359
+ | `retention-specialist` | Improving user retention, reducing churn, analyzing engagement, or re-engagement |
360
+ | `saas-architect` | Designing multi-tenant SaaS architecture, tenant isolation, or data models |
361
+ | `security-engineer` | Reviewing app security, handling user data, ensuring GDPR/App Store compliance |
362
+ | `seo-specialist` | Working on technical SEO, keyword research, on-page optimization, or backlink strategy |
363
+ | `solo-founder-ops` | Managing time, prioritizing features, or running multiple products as a solo founder |
364
+ | `subagent-driven-development` | Executing implementation plans with independent tasks in the current session |
365
+ | `subscription-billing` | Integrating subscription billing, Stripe webhooks, trial logic, or dunning flows |
366
+ | `systematic-debugging` | Debugging any issue |
367
+ | `test-driven-development` | Implementing any feature or bugfix |
368
+ | `using-git-worktrees` | Starting work on an isolated branch |
369
+ | `using-superpowers` | Starting any conversation checks for relevant skills |
370
+ | `ux-designer` | Designing UI, wireframes, user research, or information architecture |
371
+ | `verification-before-completion` | Before declaring a fix or task done |
372
+ | `writing-plans` | Design is approved — breaking work into tasks |
373
+ | `writing-skills` | Creating or editing a skill |
371
374
 
372
375
  ---
373
376
 
374
-
375
377
  ### The Indie Hacker Journey
376
378
 
377
- Our 12 expansion skills comprehensively support the indie hacker roadmap:
379
+ 44 expansion skills cover the full indie hacker lifecycle — from first idea to sustainable business:
380
+
378
381
  - **Validate:** `idea-validator`, `market-researcher`
379
- - **Build:** `chrome-extension-developer`
380
- - **Launch:** `launch-strategist`, `landing-page-builder`
381
- - **Revenue:** `pricing-psychologist`, `bootstrapper-finance`
382
- - **Operate:** `solo-founder-ops`, `indie-legal`, `analytics-setup`
383
- - **Advanced:** `ai-integrated-product`, `micro-saas-builder`
382
+ - **Design:** `product-manager`, `ux-designer`, `cto-architect`
383
+ - **Build:** `backend-developer`, `frontend-developer`, `frontend-design`, `mobile-developer`, `mobile-uiux-promax`, `game-developer`, `game-design`, `chrome-extension-developer`, `api-design`, `real-time-features`, `auth-and-identity`, `email-infrastructure`, `saas-architect`, `devops-engineer`, `security-engineer`, `i18n-localization`, `ai-integrated-product`, `micro-saas-builder`
384
+ - **Launch:** `launch-strategist`, `landing-page-builder`, `app-store-optimizer`, `copywriter`
385
+ - **Grow:** `growth-hacker`, `content-marketer`, `seo-specialist`, `conversion-optimizer`, `community-manager`, `influencer-marketer`, `paid-acquisition-specialist`, `retention-specialist`
386
+ - **Revenue:** `monetization-strategist`, `pricing-psychologist`, `subscription-billing`, `bootstrapper-finance`
387
+ - **Operate:** `solo-founder-ops`, `analytics-setup`, `customer-success-manager`, `data-analyst`, `indie-legal`
384
388
 
385
389
  ---
386
390
 
@@ -417,9 +421,9 @@ Per-project settings live in `.agent/config.yml`. Create or edit this file in yo
417
421
  auto_commit: true
418
422
  ```
419
423
 
420
- | Setting | Default | Description |
421
- |---|---|---|
422
- | `auto_commit` | `true` | AI auto-commits after tasks and design docs. Set to `false` to skip all commits. |
424
+ | Setting | Default | Description |
425
+ | ------------- | ------- | -------------------------------------------------------------------------------- |
426
+ | `auto_commit` | `true` | AI auto-commits after tasks and design docs. Set to `false` to skip all commits. |
423
427
 
424
428
  This file is preserved across `/update-superpowers` runs.
425
429
 
@@ -457,22 +461,21 @@ This project stands on the shoulders of many great open-source projects. A huge
457
461
 
458
462
  Content from these repos was ported, adapted, and integrated into the skills library:
459
463
 
460
- | Repository | Author | Skills |
461
- |---|---|---|
462
- | [obra/superpowers](https://github.com/obra/superpowers) | [Jesse Vincent](https://blog.fsck.com) & [Prime Radiant](https://primeradiant.com) | **Core foundation** — upstream skills library this repo is built on |
463
- | [vercel-labs/agent-skills](https://github.com/vercel-labs/agent-skills) | Vercel Labs | 66 React/Next.js rules + 36 React Native rules (in `frontend-developer` + `mobile-developer`) |
464
- | [antfu/skills](https://github.com/antfu/skills) | [Anthony Fu](https://github.com/antfu) | 44 Vue/Nuxt rules (in `frontend-developer`) |
465
- | [vuejs-ai/skills](https://github.com/vuejs-ai/skills) | vuejs-ai | Vue ecosystem agent skill rules (upstream of antfu/skills) |
466
- | [kevmoo/dash_skills](https://github.com/kevmoo/dash_skills) | [Kevin Moore](https://github.com/kevmoo) | 8 Dart & Flutter best-practice rules (in `mobile-developer`) |
467
- | [new-silvermoon/awesome-android-agent-skills](https://github.com/new-silvermoon/awesome-android-agent-skills) | new-silvermoon | 17 Android/Compose/Kotlin rules (in `mobile-developer`) |
468
- | [AvdLee/SwiftUI-Agent-Skill](https://github.com/AvdLee/SwiftUI-Agent-Skill) | [Antoine van der Lee](https://github.com/AvdLee) | 19 SwiftUI reference files (in `mobile-developer`) |
469
- | [msitarzewski/agency-agents](https://github.com/msitarzewski/agency-agents) | msitarzewski | Deliverable-focused, workflow-oriented agent patterns (inspired indie hacker skills) |
470
- | [nextlevelbuilder/ui-ux-pro-max-skill](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill) | nextlevelbuilder | UI/UX Pro Max search databases — curated style, typography, color, UX, and stack knowledge (in `.shared/ui-ux-pro-max`) |
464
+ | Repository | Author | Skills |
465
+ | ------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
466
+ | [obra/superpowers](https://github.com/obra/superpowers) | [Jesse Vincent](https://blog.fsck.com) & [Prime Radiant](https://primeradiant.com) | **Core foundation** — upstream skills library this repo is built on |
467
+ | [vercel-labs/agent-skills](https://github.com/vercel-labs/agent-skills) | Vercel Labs | 66 React/Next.js rules + 36 React Native rules (in `frontend-developer` + `mobile-developer`) |
468
+ | [antfu/skills](https://github.com/antfu/skills) | [Anthony Fu](https://github.com/antfu) | 44 Vue/Nuxt rules (in `frontend-developer`) |
469
+ | [vuejs-ai/skills](https://github.com/vuejs-ai/skills) | vuejs-ai | Vue ecosystem agent skill rules (upstream of antfu/skills) |
470
+ | [kevmoo/dash_skills](https://github.com/kevmoo/dash_skills) | [Kevin Moore](https://github.com/kevmoo) | 8 Dart & Flutter best-practice rules (in `mobile-developer`) |
471
+ | [new-silvermoon/awesome-android-agent-skills](https://github.com/new-silvermoon/awesome-android-agent-skills) | new-silvermoon | 17 Android/Compose/Kotlin rules (in `mobile-developer`) |
472
+ | [AvdLee/SwiftUI-Agent-Skill](https://github.com/AvdLee/SwiftUI-Agent-Skill) | [Antoine van der Lee](https://github.com/AvdLee) | 19 SwiftUI reference files (in `mobile-developer`) |
473
+ | [msitarzewski/agency-agents](https://github.com/msitarzewski/agency-agents) | msitarzewski | Deliverable-focused, workflow-oriented agent patterns (inspired indie hacker skills) |
474
+ | [nextlevelbuilder/ui-ux-pro-max-skill](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill) | nextlevelbuilder | UI/UX Pro Max search databases — curated style, typography, color, UX, and stack knowledge (in `.shared/ui-ux-pro-max`) |
471
475
 
472
476
  ---
473
477
 
474
-
475
- Antigravity integration, workflow adaptation & expansion skills (12 indie hacker skills, UI/UX intelligence databases, mobile design system) by [@bonnguyenitc](https://github.com/bonnguyenitc).
478
+ Antigravity integration, workflow adaptation & 44 expansion skills (UI/UX intelligence databases, mobile design system) by [@bonnguyenitc](https://github.com/bonnguyenitc).
476
479
 
477
480
  ---
478
481
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agy-superpowers",
3
- "version": "5.1.3",
3
+ "version": "5.1.5",
4
4
  "description": "Superpowers skills library for Google Antigravity agent — scaffold .agent/ with one command",
5
5
  "type": "module",
6
6
  "bin": {
@@ -92,3 +92,27 @@ Update any diagram labels that mention "commits" to reflect this conditionality
92
92
  **Intent:** Make the "Commit your work" step in the implementer's job list conditional:
93
93
  - Change "4. Commit your work" to "4. Commit your work (if auto_commit is enabled)"
94
94
  - Add sub-steps: read `.agent/config.yml`, if `auto_commit: true` (or not set): `git add` + `git commit`, if `auto_commit: false`: skip commit and staging entirely, print skip message.
95
+
96
+ ---
97
+
98
+ ## Patch: git-policy rule — finishing-a-development-branch
99
+
100
+ **File:** `finishing-a-development-branch/SKILL.md`
101
+ **Intent:** Before each git write operation in Execute Choice (Option 1: merge + branch delete,
102
+ Option 2: push, Option 4: branch delete), add an explicit `auto_commit` check:
103
+ - Read `.agent/config.yml` before the git operation
104
+ - If `auto_commit: false`: skip the operation, print "Skipping git operation (auto_commit: false)."
105
+ - If `auto_commit: true` (or absent): proceed normally.
106
+
107
+ ---
108
+
109
+ ## Patch: git-policy rule — using-git-worktrees
110
+
111
+ **File:** `using-git-worktrees/SKILL.md`
112
+ **Intent:** In the "If NOT ignored" safety verification block, make the git commit step conditional:
113
+ - Step 1 (add to .gitignore): always runs — file edit is not a git write operation
114
+ - Step 2 (commit): check `auto_commit` in `.agent/config.yml`
115
+ - If `false`: skip commit, print "Skipping git operation (auto_commit: false)."
116
+ - If `true` (or absent): `git add .gitignore && git commit -m "chore: ignore worktree directory"`
117
+ - Step 3 (proceed with worktree creation): always runs
118
+