agy-superpowers 5.1.2 → 5.1.4
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.
- package/LICENSE +1 -1
- package/README.md +198 -175
- package/package.json +1 -1
- package/template/agent/.shared/mobile-uiux-promax/data/accessibility.csv +25 -0
- package/template/agent/.shared/mobile-uiux-promax/data/animation.csv +22 -0
- package/template/agent/.shared/mobile-uiux-promax/data/components.csv +21 -0
- package/template/agent/.shared/mobile-uiux-promax/data/gestures.csv +26 -0
- package/template/agent/.shared/mobile-uiux-promax/data/layout.csv +21 -0
- package/template/agent/.shared/mobile-uiux-promax/data/navigation.csv +27 -0
- package/template/agent/.shared/mobile-uiux-promax/data/onboarding.csv +17 -0
- package/template/agent/.shared/mobile-uiux-promax/data/platform.csv +22 -0
- package/template/agent/.shared/mobile-uiux-promax/data/stacks/flutter.csv +19 -0
- package/template/agent/.shared/mobile-uiux-promax/data/stacks/jetpack-compose.csv +18 -0
- package/template/agent/.shared/mobile-uiux-promax/data/stacks/react-native.csv +20 -0
- package/template/agent/.shared/mobile-uiux-promax/data/stacks/swiftui.csv +18 -0
- package/template/agent/.shared/mobile-uiux-promax/data/ux-laws.csv +16 -0
- package/template/agent/.shared/mobile-uiux-promax/scripts/mobile-search.py +157 -0
- package/template/agent/.shared/ui-ux-pro-max/data/charts.csv +26 -0
- package/template/agent/.shared/ui-ux-pro-max/data/colors.csv +97 -0
- package/template/agent/.shared/ui-ux-pro-max/data/landing.csv +31 -0
- package/template/agent/.shared/ui-ux-pro-max/data/products.csv +97 -0
- package/template/agent/.shared/ui-ux-pro-max/data/prompts.csv +24 -0
- package/template/agent/.shared/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
- package/template/agent/.shared/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
- package/template/agent/.shared/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
- package/template/agent/.shared/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
- package/template/agent/.shared/ui-ux-pro-max/data/stacks/react.csv +54 -0
- package/template/agent/.shared/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
- package/template/agent/.shared/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
- package/template/agent/.shared/ui-ux-pro-max/data/stacks/vue.csv +50 -0
- package/template/agent/.shared/ui-ux-pro-max/data/styles.csv +59 -0
- package/template/agent/.shared/ui-ux-pro-max/data/typography.csv +58 -0
- package/template/agent/.shared/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
- package/template/agent/.shared/ui-ux-pro-max/scripts/__pycache__/core.cpython-313.pyc +0 -0
- package/template/agent/.shared/ui-ux-pro-max/scripts/core.py +236 -0
- package/template/agent/.shared/ui-ux-pro-max/scripts/search.py +61 -0
- package/template/agent/.tests/TESTS.md +119 -0
- package/template/agent/.tests/mobile-uiux-promax/test_search.py +266 -0
- package/template/agent/.tests/run_tests.py +86 -0
- package/template/agent/patches/skills-patches.md +24 -0
- package/template/agent/rules/git-policy.md +25 -0
- package/template/agent/skills/brainstorming/SKILL.md +57 -0
- package/template/agent/skills/finishing-a-development-branch/SKILL.md +18 -6
- package/template/agent/skills/frontend-design/SKILL.md +147 -0
- package/template/agent/skills/frontend-design/reference/color-and-contrast.md +117 -0
- package/template/agent/skills/frontend-design/reference/interaction-design.md +159 -0
- package/template/agent/skills/frontend-design/reference/motion-design.md +150 -0
- package/template/agent/skills/frontend-design/reference/responsive-design.md +161 -0
- package/template/agent/skills/frontend-design/reference/spatial-design.md +122 -0
- package/template/agent/skills/frontend-design/reference/typography.md +124 -0
- package/template/agent/skills/frontend-design/reference/ux-writing.md +127 -0
- package/template/agent/skills/mobile-uiux-promax/SKILL.md +139 -0
- package/template/agent/skills/using-git-worktrees/SKILL.md +3 -1
- package/template/agent/skills/verification-before-completion/SKILL.md +11 -0
- package/template/agent/workflows/mobile-uiux-promax.md +137 -0
- package/template/agent/workflows/ui-ux-pro-max.md +231 -0
package/LICENSE
CHANGED
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/ #
|
|
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
|
|
95
|
-
|
|
|
96
|
-
| `/debug`
|
|
97
|
-
| `/publish`
|
|
98
|
-
| `/update-superpowers`
|
|
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
|
|
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
|
|
113
|
-
| ---- |
|
|
114
|
-
| 1
|
|
115
|
-
| 2
|
|
116
|
-
| 3
|
|
117
|
-
| 4
|
|
118
|
-
| 5
|
|
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
|
|
125
|
-
|
|
|
126
|
-
| `/brainstorm`
|
|
127
|
-
| `/write-plan`
|
|
128
|
-
| `/execute-plan` | Execute tasks with human review checkpoints
|
|
129
|
-
| `/code-review`
|
|
130
|
-
| `/debug`
|
|
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
|
|
143
|
-
|
|
|
144
|
-
| `brainstorming`
|
|
145
|
-
| `writing-plans`
|
|
146
|
-
| `executing-plans`
|
|
147
|
-
| `test-driven-development`
|
|
148
|
-
| `systematic-debugging`
|
|
149
|
-
| `verification-before-completion` | Before declaring a fix or task done
|
|
150
|
-
| `requesting-code-review`
|
|
151
|
-
| `receiving-code-review`
|
|
152
|
-
| `finishing-a-development-branch` | Implementation is complete — merge / PR / discard
|
|
153
|
-
| `using-git-worktrees`
|
|
154
|
-
| `dispatching-parallel-agents`
|
|
155
|
-
| `subagent-driven-development`
|
|
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
|
|
162
|
-
|
|
|
163
|
-
| `backend-developer`
|
|
164
|
-
| `frontend-developer`
|
|
165
|
-
| `mobile-developer`
|
|
166
|
-
| `game-developer`
|
|
167
|
-
| `api-design`
|
|
168
|
-
| `real-time-features`
|
|
169
|
-
| `auth-and-identity`
|
|
170
|
-
| `devops-engineer`
|
|
171
|
-
| `security-engineer`
|
|
172
|
-
| `email-infrastructure`
|
|
173
|
-
| `saas-architect`
|
|
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
|
|
181
|
-
|
|
|
182
|
-
| `product-manager`
|
|
183
|
-
| `ux-designer`
|
|
184
|
-
| `cto-architect`
|
|
185
|
-
| `i18n-localization` | Internationalization, localizing for new markets
|
|
186
|
-
| `game-design`
|
|
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
|
|
193
|
-
|
|
|
194
|
-
| `growth-hacker`
|
|
195
|
-
| `content-marketer`
|
|
196
|
-
| `seo-specialist`
|
|
197
|
-
| `conversion-optimizer`
|
|
198
|
-
| `copywriter`
|
|
199
|
-
| `community-manager`
|
|
200
|
-
| `influencer-marketer`
|
|
201
|
-
| `paid-acquisition-specialist` | Meta Ads, Google Ads, Apple Search Ads, ROAS optimization
|
|
202
|
-
| `launch-strategist`
|
|
203
|
-
| `landing-page-builder`
|
|
204
|
-
| `app-store-optimizer`
|
|
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
|
|
211
|
-
|
|
|
212
|
-
| `monetization-strategist`
|
|
213
|
-
| `pricing-psychologist`
|
|
214
|
-
| `subscription-billing`
|
|
215
|
-
| `bootstrapper-finance`
|
|
216
|
-
| `solo-founder-ops`
|
|
217
|
-
| `analytics-setup`
|
|
218
|
-
| `customer-success-manager` | User support, feedback loops, NPS/CSAT, churn
|
|
219
|
-
| `data-analyst`
|
|
220
|
-
| `indie-legal`
|
|
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
|
|
227
|
-
|
|
|
228
|
-
| `idea-validator`
|
|
229
|
-
| `market-researcher`
|
|
230
|
-
| `ai-integrated-product` | Integrating AI/LLM capabilities, building AI-powered features
|
|
231
|
-
| `micro-saas-builder`
|
|
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
|
|
242
|
-
|
|
|
243
|
-
| Multi-file feature, new component, architectural change | `/brainstorm` → full design cycle
|
|
244
|
-
| Quick fix, rename, typo, single-line change
|
|
245
|
-
| Knowledge question ("What's the best auth library?")
|
|
246
|
-
| Not sure about scope
|
|
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
|
|
291
|
-
|
|
|
292
|
-
| Skip `/brainstorm` for large features
|
|
293
|
-
| Cram multiple goals into one prompt
|
|
294
|
-
| Jump to `/execute-plan` without reviewing the spec | Review and approve the design spec before execution
|
|
295
|
-
| Skip `/code-review` before merging
|
|
296
|
-
| Assume the agent only writes code
|
|
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
|
|
314
|
-
|
|
|
315
|
-
| `ai-integrated-product`
|
|
316
|
-
| `analytics-setup`
|
|
317
|
-
| `api-design`
|
|
318
|
-
| `app-store-optimizer`
|
|
319
|
-
| `auth-and-identity`
|
|
320
|
-
| `backend-developer`
|
|
321
|
-
| `bootstrapper-finance`
|
|
322
|
-
| `brainstorming`
|
|
323
|
-
| `chrome-extension-developer`
|
|
324
|
-
| `community-manager`
|
|
325
|
-
| `content-marketer`
|
|
326
|
-
| `conversion-optimizer`
|
|
327
|
-
| `copywriter`
|
|
328
|
-
| `cto-architect`
|
|
329
|
-
| `customer-success-manager`
|
|
330
|
-
| `data-analyst`
|
|
331
|
-
| `devops-engineer`
|
|
332
|
-
| `dispatching-parallel-agents`
|
|
333
|
-
| `email-infrastructure`
|
|
334
|
-
| `executing-plans`
|
|
335
|
-
| `finishing-a-development-branch` | Implementation is complete and you need to merge / PR / discard
|
|
336
|
-
| `frontend-
|
|
337
|
-
| `
|
|
338
|
-
| `game-
|
|
339
|
-
| `
|
|
340
|
-
| `
|
|
341
|
-
| `
|
|
342
|
-
| `
|
|
343
|
-
| `
|
|
344
|
-
| `
|
|
345
|
-
| `
|
|
346
|
-
| `
|
|
347
|
-
| `
|
|
348
|
-
| `
|
|
349
|
-
| `
|
|
350
|
-
| `
|
|
351
|
-
| `
|
|
352
|
-
| `
|
|
353
|
-
| `
|
|
354
|
-
| `
|
|
355
|
-
| `
|
|
356
|
-
| `
|
|
357
|
-
| `
|
|
358
|
-
| `
|
|
359
|
-
| `
|
|
360
|
-
| `
|
|
361
|
-
| `
|
|
362
|
-
| `
|
|
363
|
-
| `
|
|
364
|
-
| `
|
|
365
|
-
| `
|
|
366
|
-
| `
|
|
367
|
-
| `
|
|
368
|
-
| `
|
|
369
|
-
| `
|
|
370
|
-
| `
|
|
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
|
-
|
|
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
|
-
- **
|
|
380
|
-
- **
|
|
381
|
-
- **
|
|
382
|
-
- **
|
|
383
|
-
- **
|
|
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
|
|
421
|
-
|
|
422
|
-
| `auto_commit` | `true`
|
|
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
|
|
|
@@ -451,8 +455,27 @@ This setup enforces four core principles across every task:
|
|
|
451
455
|
|
|
452
456
|
## Credits
|
|
453
457
|
|
|
454
|
-
|
|
455
|
-
|
|
458
|
+
This project stands on the shoulders of many great open-source projects. A huge thank you to all of them! 🙏
|
|
459
|
+
|
|
460
|
+
### 🏗️ Skill Sources
|
|
461
|
+
|
|
462
|
+
Content from these repos was ported, adapted, and integrated into the skills library:
|
|
463
|
+
|
|
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`) |
|
|
475
|
+
|
|
476
|
+
---
|
|
477
|
+
|
|
478
|
+
Antigravity integration, workflow adaptation & 44 expansion skills (UI/UX intelligence databases, mobile design system) by [@bonnguyenitc](https://github.com/bonnguyenitc).
|
|
456
479
|
|
|
457
480
|
---
|
|
458
481
|
|