@appsforgood/next-supabase-kit 0.1.6 → 0.1.7
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/CHANGELOG.md +7 -0
- package/DOGFOOD.md +31 -0
- package/README.md +209 -42
- package/antigravity/commands/review.toml +16 -0
- package/antigravity/commands/spec.toml +17 -0
- package/antigravity/commands/test.toml +17 -0
- package/antigravity/plugin.json +4 -1
- package/assistant-adapters/antigravity.md +7 -0
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/examples/next-supabase-installed/.agent-kit/agent-roster.json +46 -11
- package/examples/next-supabase-installed/.agent-kit/manifest.json +2 -2
- package/examples/next-supabase-installed/audit-output.json +380 -380
- package/package.json +1 -1
- package/prompts/lifecycle-command-index.md +180 -0
- package/rosters/next-supabase-default-council.json +16 -2
|
@@ -96,13 +96,7 @@
|
|
|
96
96
|
"voice-tone",
|
|
97
97
|
"pricing-copy"
|
|
98
98
|
],
|
|
99
|
-
"skills": [
|
|
100
|
-
"positioning-messaging",
|
|
101
|
-
"conversion-copywriting",
|
|
102
|
-
"landing-page-copy",
|
|
103
|
-
"product-voice-tone",
|
|
104
|
-
"onboarding-empty-state-copy"
|
|
105
|
-
],
|
|
99
|
+
"skills": ["positioning-messaging", "conversion-copywriting", "landing-page-copy", "product-voice-tone", "onboarding-empty-state-copy"],
|
|
106
100
|
"handsOffTo": ["frontend-design-lead", "nextjs-engineer", "qa-engineer", "docs-maintainer"]
|
|
107
101
|
},
|
|
108
102
|
{
|
|
@@ -117,7 +111,7 @@
|
|
|
117
111
|
"id": "qa-engineer",
|
|
118
112
|
"name": "QA Engineer",
|
|
119
113
|
"file": ".agent-kit/agents/qa-engineer.md",
|
|
120
|
-
"defaultFor": ["testing", "regression", "smoke", "acceptance-evidence"],
|
|
114
|
+
"defaultFor": ["testing", "regression", "smoke", "acceptance-evidence", "test", "review", "code-review"],
|
|
121
115
|
"skills": ["testing-qa", "best-practice-maturity-review", "visual-regression-qa", "accessibility-wcag"],
|
|
122
116
|
"handsOffTo": ["docs-maintainer", "deployment-observability-engineer"]
|
|
123
117
|
},
|
|
@@ -141,14 +135,26 @@
|
|
|
141
135
|
"workflows": [
|
|
142
136
|
{
|
|
143
137
|
"id": "planning",
|
|
144
|
-
"triggers": ["plan", "roadmap", "phase", "scope", "what should we do", "break this down"],
|
|
138
|
+
"triggers": ["plan", "roadmap", "phase", "scope", "spec", "specification", "acceptance criteria", "what should we do", "break this down"],
|
|
145
139
|
"sequence": ["planner", "lead-architect", "qa-engineer", "docs-maintainer"],
|
|
146
140
|
"council": ["planner", "lead-architect"],
|
|
147
141
|
"requiredOutputs": ["phased checklist", "maturity target", "affected layers", "preserved capabilities", "verification plan", "docs impact"]
|
|
148
142
|
},
|
|
149
143
|
{
|
|
150
144
|
"id": "core-change",
|
|
151
|
-
"triggers": [
|
|
145
|
+
"triggers": [
|
|
146
|
+
"schema",
|
|
147
|
+
"auth",
|
|
148
|
+
"rls",
|
|
149
|
+
"api",
|
|
150
|
+
"route handler",
|
|
151
|
+
"server action",
|
|
152
|
+
"dependency",
|
|
153
|
+
"upgrade",
|
|
154
|
+
"release workflow",
|
|
155
|
+
"package behavior",
|
|
156
|
+
"cross-layer"
|
|
157
|
+
],
|
|
152
158
|
"sequence": [
|
|
153
159
|
"planner",
|
|
154
160
|
"lead-architect",
|
|
@@ -195,7 +201,22 @@
|
|
|
195
201
|
},
|
|
196
202
|
{
|
|
197
203
|
"id": "marketing-copy",
|
|
198
|
-
"triggers": [
|
|
204
|
+
"triggers": [
|
|
205
|
+
"copy",
|
|
206
|
+
"copywriting",
|
|
207
|
+
"marketing",
|
|
208
|
+
"positioning",
|
|
209
|
+
"messaging",
|
|
210
|
+
"value prop",
|
|
211
|
+
"value proposition",
|
|
212
|
+
"landing page",
|
|
213
|
+
"headline",
|
|
214
|
+
"cta",
|
|
215
|
+
"conversion",
|
|
216
|
+
"onboarding",
|
|
217
|
+
"empty state",
|
|
218
|
+
"pricing"
|
|
219
|
+
],
|
|
199
220
|
"sequence": ["planner", "marketing-copy-lead", "frontend-design-lead", "qa-engineer", "docs-maintainer"],
|
|
200
221
|
"council": ["marketing-copy-lead", "frontend-design-lead"],
|
|
201
222
|
"requiredOutputs": [
|
|
@@ -209,6 +230,20 @@
|
|
|
209
230
|
"handoff notes for design and implementation"
|
|
210
231
|
]
|
|
211
232
|
},
|
|
233
|
+
{
|
|
234
|
+
"id": "testing",
|
|
235
|
+
"triggers": ["test", "tests", "unit test", "regression test", "smoke test", "playwright", "acceptance test"],
|
|
236
|
+
"sequence": ["qa-engineer", "docs-maintainer"],
|
|
237
|
+
"council": ["qa-engineer"],
|
|
238
|
+
"requiredOutputs": ["test plan", "commands run", "pass/fail summary", "coverage gaps", "skipped-test rationale"]
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"id": "code-review",
|
|
242
|
+
"triggers": ["review", "code review", "pre-merge", "pr review", "merge review"],
|
|
243
|
+
"sequence": ["qa-engineer", "security-reviewer", "docs-maintainer"],
|
|
244
|
+
"council": ["qa-engineer", "security-reviewer"],
|
|
245
|
+
"requiredOutputs": ["reviewed scope", "findings by severity", "required fixes", "security notes when applicable", "merge recommendation"]
|
|
246
|
+
},
|
|
212
247
|
{
|
|
213
248
|
"id": "security-review",
|
|
214
249
|
"triggers": ["security", "owasp", "secret", "token", "permission", "ssrf", "idor", "dependency"],
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"packageName": "@appsforgood/next-supabase-kit",
|
|
3
|
-
"packageVersion": "0.1.
|
|
3
|
+
"packageVersion": "0.1.7",
|
|
4
4
|
"stack": "next-supabase",
|
|
5
|
-
"installedAt": "2026-
|
|
5
|
+
"installedAt": "2026-07-04T01:32:06.844Z",
|
|
6
6
|
"docs": [
|
|
7
7
|
"AGENTS.md",
|
|
8
8
|
"AGENT_ROSTER.md",
|