@appsforgood/next-supabase-kit 0.3.0 → 0.4.1
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 +19 -0
- package/README.md +22 -555
- package/UPGRADE.md +18 -73
- package/USER_GUIDE.html +808 -0
- package/USER_GUIDE.md +183 -0
- package/agents/app-engineer/agent.md +34 -0
- package/agents/copy/agent.md +40 -0
- package/agents/design/agent.md +33 -0
- package/agents/optional/deploy/agent.md +18 -0
- package/agents/optional/docs/agent.md +16 -0
- package/agents/optional/lead-architect/agent.md +20 -0
- package/agents/optional/research/agent.md +16 -0
- package/agents/planner/agent.md +37 -0
- package/agents/qa/agent.md +37 -0
- package/agents/security/agent.md +30 -0
- package/assistant-adapters/cursor-agent-kit.mdc +5 -26
- package/catalog.json +21 -0
- package/dist/index.js +931 -8227
- package/dist/index.js.map +1 -1
- package/examples/next-supabase-installed/.agent-kit/config.json +23 -26
- package/examples/next-supabase-installed/.agent-kit/manifest.json +83 -222
- package/examples/next-supabase-installed/.antigravity/agent-kit/commands/browser-qa.toml +6 -0
- package/examples/next-supabase-installed/.antigravity/agent-kit/commands/copy.toml +6 -0
- package/examples/next-supabase-installed/.antigravity/agent-kit/commands/frontend.toml +6 -0
- package/examples/next-supabase-installed/.antigravity/agent-kit/commands/plan.toml +6 -0
- package/examples/next-supabase-installed/.antigravity/agent-kit/commands/security.toml +6 -0
- package/examples/next-supabase-installed/.antigravity/agent-kit/commands/ship.toml +6 -0
- package/examples/next-supabase-installed/.antigravity/agent-kit/commands/test.toml +6 -0
- package/examples/next-supabase-installed/.antigravity/agent-kit/plugin.json +12 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/accessibility-wcag/SKILL.md +26 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/browser-qa/SKILL.md +67 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/deslop/SKILL.md +62 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/frontend-design/SKILL.md +107 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/nextjs-app-router/SKILL.md +23 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/owasp-security-review/SKILL.md +23 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/planning/SKILL.md +25 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/postgres-migrations/SKILL.md +21 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/product-copy/SKILL.md +54 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/ship/SKILL.md +22 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/supabase-auth-rls/SKILL.md +23 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/testing-qa/SKILL.md +27 -0
- package/examples/next-supabase-installed/.claude/agents/app-engineer.md +34 -0
- package/examples/next-supabase-installed/.claude/agents/copy.md +40 -0
- package/examples/next-supabase-installed/.claude/agents/design.md +33 -0
- package/examples/next-supabase-installed/.claude/agents/planner.md +37 -0
- package/examples/next-supabase-installed/.claude/agents/qa.md +37 -0
- package/examples/next-supabase-installed/.claude/agents/security.md +30 -0
- package/examples/next-supabase-installed/.codex/agents/app-engineer.toml +41 -0
- package/examples/next-supabase-installed/.codex/agents/copy.toml +47 -0
- package/examples/next-supabase-installed/.codex/agents/design.toml +40 -0
- package/examples/next-supabase-installed/.codex/agents/planner.toml +44 -0
- package/examples/next-supabase-installed/.codex/agents/qa.toml +44 -0
- package/examples/next-supabase-installed/.codex/agents/security.toml +37 -0
- package/examples/next-supabase-installed/.cursor/agents/app-engineer.md +34 -0
- package/examples/next-supabase-installed/.cursor/agents/copy.md +40 -0
- package/examples/next-supabase-installed/.cursor/agents/design.md +33 -0
- package/examples/next-supabase-installed/.cursor/agents/planner.md +37 -0
- package/examples/next-supabase-installed/.cursor/agents/qa.md +37 -0
- package/examples/next-supabase-installed/.cursor/agents/security.md +30 -0
- package/examples/next-supabase-installed/.cursor/rules/cursor-agent-kit.mdc +12 -0
- package/examples/next-supabase-installed/.cursor/skills/accessibility-wcag/SKILL.md +26 -0
- package/examples/next-supabase-installed/.cursor/skills/browser-qa/SKILL.md +67 -0
- package/examples/next-supabase-installed/.cursor/skills/deslop/SKILL.md +62 -0
- package/examples/next-supabase-installed/.cursor/skills/frontend-design/SKILL.md +107 -0
- package/examples/next-supabase-installed/.cursor/skills/nextjs-app-router/SKILL.md +23 -0
- package/examples/next-supabase-installed/.cursor/skills/owasp-security-review/SKILL.md +23 -0
- package/examples/next-supabase-installed/.cursor/skills/planning/SKILL.md +25 -0
- package/examples/next-supabase-installed/.cursor/skills/postgres-migrations/SKILL.md +21 -0
- package/examples/next-supabase-installed/.cursor/skills/product-copy/SKILL.md +54 -0
- package/examples/next-supabase-installed/.cursor/skills/ship/SKILL.md +22 -0
- package/examples/next-supabase-installed/.cursor/skills/supabase-auth-rls/SKILL.md +23 -0
- package/examples/next-supabase-installed/.cursor/skills/testing-qa/SKILL.md +27 -0
- package/examples/next-supabase-installed/.github/copilot-instructions.md +23 -0
- package/examples/next-supabase-installed/AGENTS.md +30 -0
- package/examples/next-supabase-installed/CLAUDE.md +7 -0
- package/examples/next-supabase-installed/README.md +2 -14
- package/examples/next-supabase-installed/USER_GUIDE.html +808 -0
- package/examples/next-supabase-installed/USER_GUIDE.md +183 -0
- package/examples/next-supabase-installed/skills/accessibility-wcag/SKILL.md +26 -0
- package/examples/next-supabase-installed/skills/browser-qa/SKILL.md +67 -0
- package/examples/next-supabase-installed/skills/deslop/SKILL.md +62 -0
- package/examples/next-supabase-installed/skills/frontend-design/SKILL.md +107 -0
- package/examples/next-supabase-installed/skills/nextjs-app-router/SKILL.md +23 -0
- package/examples/next-supabase-installed/skills/owasp-security-review/SKILL.md +23 -0
- package/examples/next-supabase-installed/skills/planning/SKILL.md +25 -0
- package/examples/next-supabase-installed/skills/postgres-migrations/SKILL.md +21 -0
- package/examples/next-supabase-installed/skills/product-copy/SKILL.md +54 -0
- package/examples/next-supabase-installed/skills/ship/SKILL.md +22 -0
- package/examples/next-supabase-installed/skills/supabase-auth-rls/SKILL.md +23 -0
- package/examples/next-supabase-installed/skills/testing-qa/SKILL.md +27 -0
- package/examples/next-supabase-installed/tree.txt +60 -42
- package/package.json +20 -46
- package/research/agent-skill-gap-report.md +133 -0
- package/skills/accessibility-wcag/SKILL.md +26 -0
- package/skills/browser-qa/SKILL.md +67 -0
- package/skills/deslop/SKILL.md +62 -0
- package/skills/frontend-design/SKILL.md +107 -0
- package/skills/nextjs-app-router/SKILL.md +23 -0
- package/skills/optional/debug/SKILL.md +11 -0
- package/skills/optional/docs/SKILL.md +10 -0
- package/skills/optional/ui-polish/SKILL.md +10 -0
- package/skills/optional/upgrade/SKILL.md +10 -0
- package/skills/owasp-security-review/SKILL.md +23 -0
- package/skills/planning/SKILL.md +25 -0
- package/skills/postgres-migrations/SKILL.md +21 -0
- package/skills/product-copy/SKILL.md +54 -0
- package/skills/ship/SKILL.md +22 -0
- package/skills/supabase-auth-rls/SKILL.md +23 -0
- package/skills/testing-qa/SKILL.md +27 -0
- package/templates/next-supabase/AGENTS.md +19 -129
- package/templates/next-supabase/CLAUDE.md +4 -36
- package/BEST_PRACTICE_EVIDENCE.md +0 -45
- package/DOGFOOD.md +0 -201
- package/GOVERNANCE.md +0 -45
- package/LOOP_CODING.md +0 -107
- package/MAINTAINER_RELEASE.md +0 -100
- package/REPOSITORY_SETTINGS.md +0 -83
- package/RESEARCH_CITATION_POLICY.md +0 -26
- package/SUPPLY_CHAIN.md +0 -57
- package/agents/deployment-observability-engineer.md +0 -13
- package/agents/docs-maintainer.md +0 -17
- package/agents/frontend-design-lead.md +0 -22
- package/agents/lead-architect.md +0 -25
- package/agents/marketing-copy-lead.md +0 -20
- package/agents/nextjs-engineer.md +0 -20
- package/agents/planner.md +0 -20
- package/agents/qa-engineer.md +0 -19
- package/agents/research-analyst.md +0 -13
- package/agents/security-reviewer.md +0 -16
- package/agents/supabase-postgres-engineer.md +0 -19
- package/antigravity/commands/accessibility-pass.toml +0 -16
- package/antigravity/commands/audit.toml +0 -16
- package/antigravity/commands/browser-qa.toml +0 -18
- package/antigravity/commands/copy.toml +0 -16
- package/antigravity/commands/distinctiveness-pass.toml +0 -16
- package/antigravity/commands/frontend.toml +0 -18
- package/antigravity/commands/handoff.toml +0 -16
- package/antigravity/commands/layout-cleanup.toml +0 -16
- package/antigravity/commands/plan.toml +0 -18
- package/antigravity/commands/responsive-cleanup.toml +0 -16
- package/antigravity/commands/review.toml +0 -16
- package/antigravity/commands/screenshot-critique.toml +0 -16
- package/antigravity/commands/security.toml +0 -16
- package/antigravity/commands/setup.toml +0 -16
- package/antigravity/commands/ship.toml +0 -17
- package/antigravity/commands/spec.toml +0 -17
- package/antigravity/commands/test.toml +0 -17
- package/antigravity/commands/ui-audit.toml +0 -17
- package/antigravity/commands/ui-polish.toml +0 -17
- package/antigravity/commands/upgrade.toml +0 -17
- package/antigravity/plugin.json +0 -70
- package/assistant-adapters/antigravity.md +0 -65
- package/assistant-adapters/claude-code-subagents.md +0 -38
- package/assistant-adapters/codex-agents.md +0 -53
- package/assistant-adapters/cursor-frontend.mdc +0 -16
- package/assistant-adapters/cursor-planner.mdc +0 -14
- package/assistant-adapters/cursor-security.mdc +0 -18
- package/assistant-adapters/github-copilot-instructions.md +0 -35
- package/assistant-adapters/github-next-supabase.instructions.md +0 -28
- package/assistant-adapters/model-selection/claude-code-subagents-with-models.md +0 -32
- package/assistant-adapters/model-selection/codex-config.example.toml +0 -32
- package/assistant-adapters/model-selection/cursor-model-selection.mdc +0 -24
- package/assistant-adapters/model-selection/github-copilot-model-selection.md +0 -20
- package/assistant-adapters/orchestrator-runtime.md +0 -39
- package/checklists/accessibility.md +0 -12
- package/checklists/agent-council.md +0 -13
- package/checklists/brand-content.md +0 -15
- package/checklists/deployment.md +0 -10
- package/checklists/design-critique.md +0 -13
- package/checklists/frontend-distinctiveness.md +0 -12
- package/checklists/frontend-product-quality.md +0 -13
- package/checklists/frontend-quality.md +0 -21
- package/checklists/marketing-copy.md +0 -11
- package/checklists/owasp.md +0 -12
- package/checklists/rls.md +0 -10
- package/checklists/testing.md +0 -12
- package/checklists/ui-acceptance-rubric.md +0 -58
- package/checklists/ui-detectors.md +0 -81
- package/checklists/upgrade.md +0 -13
- package/checklists/visual-regression.md +0 -11
- package/design-adapters/claude-design.prompt.md +0 -27
- package/design-adapters/figma.prompt.md +0 -18
- package/design-adapters/google-stitch.prompt.md +0 -36
- package/design-adapters/human-designer-brief.prompt.md +0 -36
- package/design-briefs/admin-dashboard.md +0 -21
- package/design-briefs/ai-workflow-product.md +0 -25
- package/design-briefs/community-social.md +0 -26
- package/design-briefs/content-app.md +0 -21
- package/design-briefs/ecommerce.md +0 -25
- package/design-briefs/education-course.md +0 -25
- package/design-briefs/marketplace.md +0 -21
- package/design-briefs/portfolio-venue.md +0 -25
- package/design-briefs/saas.md +0 -21
- package/design-briefs/tool.md +0 -21
- package/examples/next-supabase-installed/.agent-kit/agent-roster.json +0 -267
- package/examples/next-supabase-installed/.agent-kit/model-routing.json +0 -171
- package/examples/next-supabase-installed/.agent-kit/overrides.json +0 -3
- package/examples/next-supabase-installed/audit-output.json +0 -405
- package/model-routing/default-model-routing.json +0 -171
- package/profiles/admin-app.md +0 -17
- package/profiles/content-app.md +0 -17
- package/profiles/marketplace.md +0 -17
- package/profiles/saas.md +0 -17
- package/profiles/stack-next-firebase.md +0 -25
- package/profiles/stack-next-postgres.md +0 -24
- package/profiles/stack-remix-supabase.md +0 -24
- package/prompts/audit-project-setup.md +0 -28
- package/prompts/brand-content-intake.md +0 -17
- package/prompts/copy-review.md +0 -15
- package/prompts/council-session-review.md +0 -17
- package/prompts/creative-direction-matrix.md +0 -22
- package/prompts/design-critique-gate.md +0 -28
- package/prompts/docs-update.md +0 -16
- package/prompts/frontend-design-review.md +0 -35
- package/prompts/frontend-distinctiveness-benchmark.md +0 -32
- package/prompts/frontend-product-quality-scorecard.md +0 -35
- package/prompts/implement-feature.md +0 -14
- package/prompts/lifecycle-command-index.md +0 -180
- package/prompts/migration-review.md +0 -14
- package/prompts/screenshot-review.md +0 -28
- package/prompts/security-review.md +0 -17
- package/prompts/ui-command-index.md +0 -124
- package/prompts/upgrade-review.md +0 -18
- package/prompts/visual-qa-plan.md +0 -16
- package/research/proposed-updates.md +0 -70
- package/research/scan-config.json +0 -261
- package/research/scan-plan.md +0 -24
- package/research/summaries/.gitkeep +0 -1
- package/research/summaries/agent-workflow-patterns.md +0 -37
- package/research/summaries/agentic-engineering-maturity-levels.md +0 -54
- package/research/summaries/creative-design-patterns.md +0 -38
- package/research/summaries/design-critique-patterns.md +0 -34
- package/research/summaries/docs-and-agent-patterns.md +0 -64
- package/research/summaries/dogfood-adoption-patterns.md +0 -33
- package/research/summaries/frontend-design-patterns.md +0 -64
- package/research/summaries/frontend-distinctiveness-benchmark-patterns.md +0 -38
- package/research/summaries/frontend-product-quality-rubric-patterns.md +0 -37
- package/research/summaries/maturity-model-patterns.md +0 -29
- package/research/summaries/nextjs-patterns.md +0 -65
- package/research/summaries/repo-health-patterns.md +0 -41
- package/research/summaries/scan-overview.md +0 -46
- package/research/summaries/security-patterns.md +0 -64
- package/research/summaries/supabase-rls-patterns.md +0 -54
- package/research/summaries/supply-chain-patterns.md +0 -38
- package/research/summaries/testing-patterns.md +0 -63
- package/research/summaries/upgrade-lifecycle-patterns.md +0 -26
- package/research/summaries/visual-qa-patterns.md +0 -39
- package/rosters/next-supabase-default-council.json +0 -267
- package/runtime-skills/README.md +0 -7
- package/runtime-skills/accessibility-wcag/SKILL.md +0 -8
- package/runtime-skills/agent-handoff-tracing/SKILL.md +0 -8
- package/runtime-skills/best-practice-maturity-review/SKILL.md +0 -8
- package/runtime-skills/content-first-design/SKILL.md +0 -8
- package/runtime-skills/conversion-copywriting/SKILL.md +0 -8
- package/runtime-skills/deployment-observability/SKILL.md +0 -8
- package/runtime-skills/docs-maintainer/SKILL.md +0 -8
- package/runtime-skills/frontend-design-system/SKILL.md +0 -8
- package/runtime-skills/frontend-distinctiveness-benchmark/SKILL.md +0 -8
- package/runtime-skills/frontend-product-quality-rubric/SKILL.md +0 -8
- package/runtime-skills/landing-page-copy/SKILL.md +0 -8
- package/runtime-skills/nextjs-app-router/SKILL.md +0 -8
- package/runtime-skills/onboarding-empty-state-copy/SKILL.md +0 -8
- package/runtime-skills/owasp-security-review/SKILL.md +0 -8
- package/runtime-skills/planning-council/SKILL.md +0 -8
- package/runtime-skills/positioning-messaging/SKILL.md +0 -8
- package/runtime-skills/postgres-migrations/SKILL.md +0 -8
- package/runtime-skills/product-voice-tone/SKILL.md +0 -8
- package/runtime-skills/reference-led-design-critique/SKILL.md +0 -8
- package/runtime-skills/supabase-auth-rls/SKILL.md +0 -8
- package/runtime-skills/testing-qa/SKILL.md +0 -8
- package/runtime-skills/ui-improvement-harness/SKILL.md +0 -12
- package/runtime-skills/upgrade-maintenance/SKILL.md +0 -8
- package/runtime-skills/visual-regression-qa/SKILL.md +0 -8
- package/schemas/agent-roster.schema.json +0 -54
- package/schemas/agentic-level.schema.json +0 -47
- package/schemas/audit-report-v2.schema.json +0 -71
- package/schemas/audit-report.schema.json +0 -50
- package/schemas/correction-rules.schema.json +0 -32
- package/schemas/council-session.schema.json +0 -65
- package/schemas/model-routing.schema.json +0 -72
- package/schemas/onboarding-state.schema.json +0 -36
- package/schemas/orchestrator.schema.json +0 -167
- package/schemas/project-context.schema.json +0 -94
- package/schemas/runtime-event.schema.json +0 -66
- package/schemas/runtime-run.schema.json +0 -58
- package/schemas/session-event.schema.json +0 -48
- package/schemas/studio-session.schema.json +0 -48
- package/skills/accessibility-wcag.md +0 -15
- package/skills/agent-handoff-tracing.md +0 -44
- package/skills/best-practice-maturity-review.md +0 -26
- package/skills/content-first-design.md +0 -50
- package/skills/conversion-copywriting.md +0 -38
- package/skills/deployment-observability.md +0 -14
- package/skills/docs-maintainer.md +0 -19
- package/skills/frontend-design-system.md +0 -68
- package/skills/frontend-distinctiveness-benchmark.md +0 -40
- package/skills/frontend-product-quality-rubric.md +0 -59
- package/skills/landing-page-copy.md +0 -29
- package/skills/nextjs-app-router.md +0 -18
- package/skills/onboarding-empty-state-copy.md +0 -37
- package/skills/owasp-security-review.md +0 -19
- package/skills/planning-council.md +0 -21
- package/skills/positioning-messaging.md +0 -42
- package/skills/postgres-migrations.md +0 -14
- package/skills/product-voice-tone.md +0 -35
- package/skills/reference-led-design-critique.md +0 -48
- package/skills/supabase-auth-rls.md +0 -20
- package/skills/testing-qa.md +0 -15
- package/skills/ui-improvement-harness.md +0 -96
- package/skills/upgrade-maintenance.md +0 -32
- package/skills/visual-regression-qa.md +0 -42
- package/templates/next-supabase/.agent-kit/orchestrator.json +0 -48
- package/templates/next-supabase/.agent-kit/runtime/gitignore.template +0 -2
- package/templates/next-supabase/.github/workflows/agent-kit-audit.yml +0 -34
- package/templates/next-supabase/AGENT_ROSTER.md +0 -101
- package/templates/next-supabase/ASSISTANT_ADAPTERS.md +0 -146
- package/templates/next-supabase/COUNCIL.md +0 -54
- package/templates/next-supabase/DECISIONS.md +0 -87
- package/templates/next-supabase/DEPLOYMENT.md +0 -51
- package/templates/next-supabase/DESIGN.md +0 -180
- package/templates/next-supabase/DOCS.md +0 -80
- package/templates/next-supabase/LOOP_CODING.md +0 -98
- package/templates/next-supabase/MESSAGING.md +0 -81
- package/templates/next-supabase/MODEL_ROUTING.md +0 -130
- package/templates/next-supabase/QUALITY_GATES.md +0 -98
- package/templates/next-supabase/SKILLS.md +0 -235
- package/templates/next-supabase/SPEC.md +0 -122
- package/templates/next-supabase/STYLE_GUIDE.md +0 -121
- package/templates/next-supabase/TESTING.md +0 -107
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: docs
|
|
3
|
+
description: Optional. Use when updating USER_GUIDE.md or project docs after a significant change.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Docs (optional)
|
|
7
|
+
|
|
8
|
+
Update only the docs that users need. Do not restore the old 17-doc operating system.
|
|
9
|
+
|
|
10
|
+
Add with `agent-kit add skill docs`.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ui-polish
|
|
3
|
+
description: Optional. Use for a focused UI polish loop after the main design pass.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# UI Polish (optional)
|
|
7
|
+
|
|
8
|
+
Improve hierarchy, spacing, states, and mobile fit without changing product scope. Still requires desktop and mobile screenshots via `browser-qa`.
|
|
9
|
+
|
|
10
|
+
Add with `agent-kit add skill ui-polish`.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: upgrade
|
|
3
|
+
description: Optional. Use when updating this pack or framework versions. Prefer agent-kit update over re-init.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Upgrade (optional)
|
|
7
|
+
|
|
8
|
+
Run `agent-kit update` on a branch. Local edits win or become conflicts. Do not delete user files.
|
|
9
|
+
|
|
10
|
+
Add with `agent-kit add skill upgrade`.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: owasp-security-review
|
|
3
|
+
description: Use when reviewing auth, APIs, Server Actions, uploads, webhooks, dependencies, secrets, or data mutations.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# OWASP Security Review
|
|
7
|
+
|
|
8
|
+
## Use when
|
|
9
|
+
|
|
10
|
+
Auth, APIs, Server Actions, external fetches, uploads, webhooks, dependencies, or mutations.
|
|
11
|
+
|
|
12
|
+
## Checks
|
|
13
|
+
|
|
14
|
+
- Broken access control and IDOR are tested.
|
|
15
|
+
- Inputs are validated with safe schemas.
|
|
16
|
+
- Outputs are encoded; secrets are not logged or bundled.
|
|
17
|
+
- SSRF risk is addressed for server-side fetches.
|
|
18
|
+
- Dependencies are reviewed for known critical CVEs.
|
|
19
|
+
- Errors are explicit without leaking internals.
|
|
20
|
+
|
|
21
|
+
## Done when
|
|
22
|
+
|
|
23
|
+
Each finding has severity, affected behavior, and a concrete fix. User-visible auth failures were seen in the browser.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: planning
|
|
3
|
+
description: Classify work, pick an owner, and name the evidence QA must capture. Use when the request is ambiguous, cross-layer, or needs a specialist.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Planning
|
|
7
|
+
|
|
8
|
+
## Use when
|
|
9
|
+
|
|
10
|
+
Planning, roadmaps, “what should we do,” or any request that needs an owner.
|
|
11
|
+
|
|
12
|
+
## Steps
|
|
13
|
+
|
|
14
|
+
1. Read enough of the repo to name affected routes and data.
|
|
15
|
+
2. Pick one owner: `app-engineer`, `security`, `design`, `qa`, or `copy`.
|
|
16
|
+
3. Add Security for auth/data/secrets, Design for UI, QA for behavior/UI, Copy for public words.
|
|
17
|
+
4. If the change is user-visible, list the desktop and mobile screenshots QA must capture.
|
|
18
|
+
|
|
19
|
+
## Done when
|
|
20
|
+
|
|
21
|
+
Owner, extra reviewers, preserved behavior, and required screenshots are explicit. No product code was written.
|
|
22
|
+
|
|
23
|
+
## Reject
|
|
24
|
+
|
|
25
|
+
Implementing in the planning pass. Asking one chat to play every role.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: postgres-migrations
|
|
3
|
+
description: Use for schema changes, migrations, constraints, indexes, and rollback risk.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Postgres Migrations
|
|
7
|
+
|
|
8
|
+
## Use when
|
|
9
|
+
|
|
10
|
+
Creating or changing tables, constraints, indexes, functions, triggers, or seed data.
|
|
11
|
+
|
|
12
|
+
## Checks
|
|
13
|
+
|
|
14
|
+
- Migrations are additive or have an explicit rollback path.
|
|
15
|
+
- Constraints protect integrity; indexes match real query paths.
|
|
16
|
+
- RLS is planned in the same change when the table holds user or tenant data.
|
|
17
|
+
- Generated types are refreshed after schema changes.
|
|
18
|
+
|
|
19
|
+
## Done when
|
|
20
|
+
|
|
21
|
+
Migration order and rollback risk are named. User data is not left unprotected.
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: product-copy
|
|
3
|
+
description: Use for headlines, CTAs, empty states, and conversion copy. Review rendered screenshots, not only strings in source.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Product Copy
|
|
7
|
+
|
|
8
|
+
## Use when
|
|
9
|
+
|
|
10
|
+
Landing pages, CTAs, positioning, onboarding, empty states, pricing copy, or the public user guide (`USER_GUIDE.html`).
|
|
11
|
+
|
|
12
|
+
## Audience
|
|
13
|
+
|
|
14
|
+
Engineers and coding agents on a Next.js + Supabase repo who already have Cursor, Claude, Codex, Copilot, or Antigravity. They do not need a manifesto. They need to know **who to @**, **what to paste**, and **what “done” looks like**.
|
|
15
|
+
|
|
16
|
+
## Positioning (this product)
|
|
17
|
+
|
|
18
|
+
Name the specialist. Prove the screen. Six agents, twelve skills, five IDEs. QA is two screenshots, not a file diff.
|
|
19
|
+
|
|
20
|
+
Do not describe this as an “agent operating system,” a copilot marketplace, or “AI-powered delivery.”
|
|
21
|
+
|
|
22
|
+
## Voice
|
|
23
|
+
|
|
24
|
+
Direct, specific, slightly dry. Prefer verbs: ask, paste, open, capture, reject.
|
|
25
|
+
|
|
26
|
+
Use: specialist, owner, screenshot, desktop, mobile, fail-closed, paste, Planner, browser-qa.
|
|
27
|
+
Avoid: supercharge, seamless, unlock, copilot for X, 10x, enterprise-grade, magic, revolutionize.
|
|
28
|
+
|
|
29
|
+
## Headline test
|
|
30
|
+
|
|
31
|
+
If the headline could sell GitHub Copilot, Cursor, or any agent marketplace, rewrite it.
|
|
32
|
+
|
|
33
|
+
Good: `Ask one specialist. Then open the running UI.`
|
|
34
|
+
Bad: `Supercharge your AI workflow with agents and skills.`
|
|
35
|
+
|
|
36
|
+
## CTA test
|
|
37
|
+
|
|
38
|
+
A CTA is a command or a pasteable prompt, not “Get started.”
|
|
39
|
+
|
|
40
|
+
Good: `Paste this to Planner` followed by the plan prompt.
|
|
41
|
+
Good: `npx --yes @appsforgood/next-supabase-kit init --activate all`
|
|
42
|
+
Bad: `Start building today`.
|
|
43
|
+
|
|
44
|
+
## Checks
|
|
45
|
+
|
|
46
|
+
- Audience, pain, and outcome are specific to this product.
|
|
47
|
+
- Claims are backed or marked as assumptions. Do not invent user counts or “best-in-class.”
|
|
48
|
+
- Headlines could not fit any competitor.
|
|
49
|
+
- CTAs say what happens next.
|
|
50
|
+
- Review the words on a screenshot for truncation, wrapping, and hierarchy. Copy that only exists in markdown is not approved for a public HTML page.
|
|
51
|
+
|
|
52
|
+
## Done when
|
|
53
|
+
|
|
54
|
+
Copy is specific and the rendered screenshot shows the key line and CTA clearly on desktop and mobile. Copy then runs `deslop` as the last pass — this skill is not the end of the run.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ship
|
|
3
|
+
description: Use before release. Check env vars, migration order, smoke, and rollback. User-visible releases still need browser-qa evidence.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Ship
|
|
7
|
+
|
|
8
|
+
## Use when
|
|
9
|
+
|
|
10
|
+
Preparing to deploy, promote, or roll back.
|
|
11
|
+
|
|
12
|
+
## Checks
|
|
13
|
+
|
|
14
|
+
- Production-critical env vars are named.
|
|
15
|
+
- Migration order and rollback are explicit.
|
|
16
|
+
- Smoke of the primary path passed.
|
|
17
|
+
- User-visible changes have desktop and mobile screenshot evidence from `browser-qa`.
|
|
18
|
+
- Secrets are not in the repo or client bundle.
|
|
19
|
+
|
|
20
|
+
## Done when
|
|
21
|
+
|
|
22
|
+
Go / no-go is explicit, with commands run and rollback named.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: supabase-auth-rls
|
|
3
|
+
description: Use for Supabase Auth, SSR clients, middleware, sessions, Row Level Security, Storage policies, and service-role usage.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Supabase Auth And RLS
|
|
7
|
+
|
|
8
|
+
## Use when
|
|
9
|
+
|
|
10
|
+
Supabase Auth, SSR clients, middleware, sessions, tables, policies, Storage, or service-role operations.
|
|
11
|
+
|
|
12
|
+
## Checks
|
|
13
|
+
|
|
14
|
+
- RLS is enabled on user-owned and tenant-owned tables.
|
|
15
|
+
- Policies enforce ownership and tenant boundaries.
|
|
16
|
+
- Service-role keys stay server-only.
|
|
17
|
+
- Auth middleware refreshes sessions safely.
|
|
18
|
+
- Storage buckets have explicit policies.
|
|
19
|
+
- IDOR is considered and tested at the policy boundary.
|
|
20
|
+
|
|
21
|
+
## Done when
|
|
22
|
+
|
|
23
|
+
A table that stores user data cannot be read or written across users without a failing policy. UI checks are not treated as authorization.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: testing-qa
|
|
3
|
+
description: Use when adding unit, regression, or smoke tests. Visual proof of a screen always also uses browser-qa.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Testing QA
|
|
7
|
+
|
|
8
|
+
## Use when
|
|
9
|
+
|
|
10
|
+
Adding or reviewing tests, smoke checks, or regression coverage.
|
|
11
|
+
|
|
12
|
+
## Checks
|
|
13
|
+
|
|
14
|
+
- Core logic has unit tests.
|
|
15
|
+
- Preserved behavior has regression tests.
|
|
16
|
+
- Critical flows have Playwright or equivalent smoke tests.
|
|
17
|
+
- Auth and mutation paths are prioritized.
|
|
18
|
+
- Network failure, empty, and error behavior is covered.
|
|
19
|
+
- Gaps are named when infrastructure is missing.
|
|
20
|
+
|
|
21
|
+
## Visual proof
|
|
22
|
+
|
|
23
|
+
User-visible screens also require `browser-qa`. This skill does not replace screenshots.
|
|
24
|
+
|
|
25
|
+
## Done when
|
|
26
|
+
|
|
27
|
+
Commands run, results, and residual gaps are listed.
|
|
@@ -1,140 +1,30 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Agents
|
|
2
2
|
|
|
3
|
-
This
|
|
3
|
+
This repo uses a small specialist pack. **Agent** = who. **Skill** = how. **Tool** = what they must use.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Read `USER_GUIDE.md` for how to invoke these in Cursor, Claude, Codex, Copilot, and Antigravity.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
## Screenshot rule
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
A user-visible change is not done until someone opened the running UI, captured desktop and mobile screenshots, and reviewed those images. Reading TSX is not QA.
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
## Who to ask
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
- Keep roadmap and delivery status current.
|
|
13
|
+
| Ask | Agent |
|
|
14
|
+
| --- | --- |
|
|
15
|
+
| Plan, scope, who owns this | `@planner` |
|
|
16
|
+
| Implement Next.js or Supabase | `@app-engineer` |
|
|
17
|
+
| Auth, RLS, secrets, OWASP | `@security` |
|
|
18
|
+
| UI looks wrong / generic | `@design` |
|
|
19
|
+
| Is this done? | `@qa` |
|
|
20
|
+
| Headlines, CTAs, empty states | `@copy` |
|
|
22
21
|
|
|
23
|
-
|
|
22
|
+
Do not ask one chat to be all six.
|
|
24
23
|
|
|
25
|
-
|
|
24
|
+
## Handoff
|
|
26
25
|
|
|
27
|
-
|
|
28
|
-
- Confirm existing behavior before changing it.
|
|
29
|
-
- Map each change across data, business logic, presentation, auth, and deployment.
|
|
30
|
-
- Decide whether logic belongs in Supabase SQL/RLS, Route Handlers, Server Actions, Server Components, or client state.
|
|
31
|
-
- Keep changes scoped and preserve behavioral contracts.
|
|
26
|
+
Planner names the owner. Security joins auth/data/secret work. Design joins user-facing screens. QA joins any behavior or UI change and **must use the browser**. Copy joins public/conversion copy. Stop there.
|
|
32
27
|
|
|
33
|
-
##
|
|
28
|
+
## Skills
|
|
34
29
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
Responsibilities:
|
|
38
|
-
- Keep server/client boundaries explicit.
|
|
39
|
-
- Avoid exposing secrets or privileged data to client bundles.
|
|
40
|
-
- Provide loading, error, empty, and success states.
|
|
41
|
-
- Preserve accessibility and responsive behavior.
|
|
42
|
-
|
|
43
|
-
## Supabase/Postgres Engineer
|
|
44
|
-
|
|
45
|
-
Owns schema, migrations, RLS policies, Auth integration, Storage policies, SQL functions, triggers, indexes, and seed data.
|
|
46
|
-
|
|
47
|
-
Responsibilities:
|
|
48
|
-
- Enforce authorization in Postgres RLS, not only in UI code.
|
|
49
|
-
- Keep service-role access server-only.
|
|
50
|
-
- Add constraints and indexes that protect data integrity and performance.
|
|
51
|
-
- Document migration order and rollback risks.
|
|
52
|
-
|
|
53
|
-
## Security Reviewer
|
|
54
|
-
|
|
55
|
-
Owns OWASP Top 10 review, auth boundary review, IDOR prevention, input validation, output encoding, SSRF prevention, dependency risk, and secret handling.
|
|
56
|
-
|
|
57
|
-
Responsibilities:
|
|
58
|
-
- Review all data mutations and privileged reads.
|
|
59
|
-
- Verify least privilege for Supabase, API routes, automation tokens, and storage.
|
|
60
|
-
- Flag unsafe dependencies or misconfiguration.
|
|
61
|
-
- Ensure every failure path is explicit and observable.
|
|
62
|
-
|
|
63
|
-
## Frontend Design Lead
|
|
64
|
-
|
|
65
|
-
Owns content-first creative direction, visual quality, design systems, accessibility, and prevention of generic AI-looking UI.
|
|
66
|
-
|
|
67
|
-
Responsibilities:
|
|
68
|
-
- Maintain `DESIGN.md` as the project visual identity and content-direction contract.
|
|
69
|
-
- Require audience, user needs, content inventory, brand constraints, and creative-direction options before implementation.
|
|
70
|
-
- Require reference-set evidence, anti-references, source-safety notes, and a design critique verdict before accepting significant frontend work.
|
|
71
|
-
- Require a frontend product-quality scorecard before accepting significant frontend work.
|
|
72
|
-
- Reject generic gradient heroes, vague SaaS copy, card soup, and fake dashboard metrics.
|
|
73
|
-
- Prefer task-first screens, domain-specific hierarchy, real workflow affordances, and reusable components.
|
|
74
|
-
- Require visual QA evidence for important responsive screens and reusable component states.
|
|
75
|
-
- Maintain WCAG 2.1 AA, keyboard navigation, focus states, and mobile-first behavior.
|
|
76
|
-
- Use design adapters for Stitch, Claude, Figma, or human review when visual direction is weak.
|
|
77
|
-
|
|
78
|
-
## Marketing Copy Lead
|
|
79
|
-
|
|
80
|
-
Owns positioning, value proposition, conversion copy, product voice, and UX copy for public-facing or conversion-facing surfaces.
|
|
81
|
-
|
|
82
|
-
Responsibilities:
|
|
83
|
-
- Maintain `MESSAGING.md` as the positioning, value proposition, voice, proof, objection, and CTA contract.
|
|
84
|
-
- Ask discovery questions when audience, pain, outcome, differentiator, proof, objections, voice, or conversion goal is unclear.
|
|
85
|
-
- Reject vague SaaS copy, unsupported AI claims, invented proof, and headlines that could fit any competitor.
|
|
86
|
-
- Translate product facts into specific headlines, CTAs, onboarding copy, empty states, pricing copy, and objection handling.
|
|
87
|
-
- Handoff public-facing copy to Frontend Design Lead so layout, hierarchy, imagery, and interaction tone reinforce the message.
|
|
88
|
-
- Flag risky pricing, security, privacy, compliance, financial, legal, medical, or performance claims before release.
|
|
89
|
-
|
|
90
|
-
## QA Engineer
|
|
91
|
-
|
|
92
|
-
Owns tests, regression coverage, smoke checks, and acceptance evidence.
|
|
93
|
-
|
|
94
|
-
Responsibilities:
|
|
95
|
-
- Add unit coverage for core logic and edge cases.
|
|
96
|
-
- Add regression tests for preserved behavior.
|
|
97
|
-
- Add Playwright smoke coverage for auth and primary workflows.
|
|
98
|
-
- Add screenshot or visual-regression evidence for high-risk UI changes.
|
|
99
|
-
- Report test gaps explicitly when infrastructure is missing.
|
|
100
|
-
|
|
101
|
-
## Documentation Maintainer
|
|
102
|
-
|
|
103
|
-
Owns living markdown docs.
|
|
104
|
-
|
|
105
|
-
Responsibilities:
|
|
106
|
-
- Validate handoff evidence against `COUNCIL.md` and `.agent-kit/schemas/`.
|
|
107
|
-
- Update `SPEC.md`, `DECISIONS.md`, `DOCS.md`, `ASSISTANT_ADAPTERS.md`, `MODEL_ROUTING.md`, `QUALITY_GATES.md`, `DESIGN.md`, `MESSAGING.md`, `STYLE_GUIDE.md`, `SECURITY.md`, `TESTING.md`, `DEPLOYMENT.md`, and `UPGRADE.md`.
|
|
108
|
-
- Record decisions with context, decision, and consequences.
|
|
109
|
-
- Keep docs actionable for another engineer or agent to continue safely.
|
|
110
|
-
|
|
111
|
-
## Deployment/Observability Engineer
|
|
112
|
-
|
|
113
|
-
Owns deployment config, environment variables, migrations, logs, monitoring, and rollback guidance.
|
|
114
|
-
|
|
115
|
-
Responsibilities:
|
|
116
|
-
- Verify production-critical env vars.
|
|
117
|
-
- Confirm migration and release order.
|
|
118
|
-
- Ensure errors are visible through logs or monitoring.
|
|
119
|
-
- Define rollback and recovery steps for risky changes.
|
|
120
|
-
|
|
121
|
-
## Default Handoff
|
|
122
|
-
|
|
123
|
-
Use this order for feature work:
|
|
124
|
-
|
|
125
|
-
1. Planner classifies the request, maps the workflow, and names the council.
|
|
126
|
-
2. Planner starts or updates an Agent Studio session with `agent-kit session start` when the work is meaningful, risky, or cross-agent, then records fallback notes in `COUNCIL.md` if CLI tooling is unavailable.
|
|
127
|
-
3. Lead Architect maps affected layers and preserved behavior.
|
|
128
|
-
4. Supabase/Postgres Engineer handles schema, RLS, and migrations when data/auth changes are involved.
|
|
129
|
-
5. Next.js Engineer implements runtime behavior and UI.
|
|
130
|
-
6. Frontend Design Lead owns content-first creative direction and reviews UX quality/accessibility when user-facing screens change.
|
|
131
|
-
7. Marketing Copy Lead owns positioning, value proposition, conversion copy, product voice, and UX copy when public-facing or conversion-facing copy changes.
|
|
132
|
-
8. Security Reviewer checks OWASP, auth, data boundaries, dependencies, external calls, and secrets.
|
|
133
|
-
9. QA Engineer adds and runs tests.
|
|
134
|
-
10. Documentation Maintainer updates living docs and council evidence.
|
|
135
|
-
11. Deployment/Observability Engineer verifies release and upgrade readiness.
|
|
136
|
-
12. The active agent records decisions, handoffs, corrections, artifacts, required-output status, verification, and status with `agent-kit session ...` commands, then runs `agent-kit session render` so `index.md` and `transcript.md` are current. Run `agent-kit studio export` when the user needs a local visual session view.
|
|
137
|
-
|
|
138
|
-
## Council Rule
|
|
139
|
-
|
|
140
|
-
Core changes cannot skip Planner or Lead Architect. Frontend changes cannot skip content/brand intake, creative-direction rationale, reference-led critique, product-quality scorecard, visual QA evidence, and Frontend Design Lead review. Public-facing or conversion-facing copy changes cannot skip Marketing Copy Lead discovery questions, value proposition, proof, objection, voice/tone, and CTA review. Auth, RLS, data mutation, dependency, secret, external-call, and release-risk changes cannot skip Security Reviewer. Behavior changes cannot skip QA evidence. Significant changes cannot skip Documentation Maintainer. Meaningful multi-agent work cannot skip a decision, risk, next-handoff, required-output status, and evidence record. Human corrections must be recorded before continuing work, and durable project or agent corrections must be applied in future sessions. Work is not best-practice ready until it satisfies the relevant `QUALITY_GATES.md` evidence level.
|
|
30
|
+
Default skills live in `.cursor/skills/*/SKILL.md` (and the matching Claude/Codex/Antigravity copies). QA of a screen always uses `browser-qa`, not `testing-qa` alone. Copy finishes public words with `deslop`. Planner uses `planning` and names owners; it does not run the other agents. Each agent file points at `catalog.json` for the full skill list.
|
|
@@ -1,39 +1,7 @@
|
|
|
1
|
-
# Claude Code
|
|
1
|
+
# Claude Code
|
|
2
2
|
|
|
3
|
-
This
|
|
3
|
+
This repo uses a small agent and skill pack. Read `AGENTS.md` and `USER_GUIDE.md`.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
- `AGENT_ROSTER.md`
|
|
7
|
-
- `.agent-kit/agent-roster.json`
|
|
8
|
-
- `MODEL_ROUTING.md`
|
|
9
|
-
- `.agent-kit/model-routing.json`
|
|
10
|
-
- `.agent-kit/project-context.json`
|
|
11
|
-
- `.agent-kit/project-context.md`
|
|
12
|
-
- `.agent-kit/agent-briefs.md` when present
|
|
13
|
-
- `.agent-kit/corrections/project-rules.json`
|
|
14
|
-
- `.agent-kit/corrections/agent-rules.json`
|
|
15
|
-
- `COUNCIL.md`
|
|
16
|
-
- `.agent-kit/council-sessions/`
|
|
17
|
-
- `QUALITY_GATES.md`
|
|
5
|
+
Subagents live in `.claude/agents/`. Use the matching subagent instead of one generic thread.
|
|
18
6
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
Project subagents live in `.claude/agents/*.md` and are generated from `.agent-kit/agent-roster.json` when you run:
|
|
22
|
-
|
|
23
|
-
```sh
|
|
24
|
-
agent-kit init --activate claude
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
Use the matching subagent for the active workflow instead of treating every request as a generic implementation pass.
|
|
28
|
-
|
|
29
|
-
## Validation
|
|
30
|
-
|
|
31
|
-
```sh
|
|
32
|
-
agent-kit audit --min-readiness baseline-setup
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
Use `agent-kit session checkpoint --file <json>` to batch-record council evidence instead of many individual session commands.
|
|
36
|
-
|
|
37
|
-
## Model Selection
|
|
38
|
-
|
|
39
|
-
Use Claude Code model settings with the profiles in `MODEL_ROUTING.md`. Exact model names are dated recommendations — review when provider docs change.
|
|
7
|
+
A user-visible change is not done until someone opened the running UI, captured desktop and mobile screenshots, and reviewed those images. If you cannot open a browser, use the Playwright fallback in `skills/browser-qa/SKILL.md`.
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
# Best-Practice Evidence Matrix
|
|
2
|
-
|
|
3
|
-
This repository treats the 100-repo research pass as input, not proof. A practice only counts as part of the kit when it is promoted into at least one durable artifact and one validation path.
|
|
4
|
-
|
|
5
|
-
## Evidence Rule
|
|
6
|
-
|
|
7
|
-
- Research findings identify repeated gaps or strong patterns.
|
|
8
|
-
- Promoted behavior must appear in installed templates, agents, skills, checklists, schemas, prompts, or repository workflows.
|
|
9
|
-
- Validation must exist through audit checks, schema contracts, tests, release gates, install smoke, or documented external repository settings.
|
|
10
|
-
- Fresh installs are only `baseline-setup` until project-specific evidence replaces starter placeholders.
|
|
11
|
-
|
|
12
|
-
## Promotion Matrix
|
|
13
|
-
|
|
14
|
-
| Research signal | Scan evidence | Promoted behavior | Installed or repo artifact | Validation path |
|
|
15
|
-
| --- | --- | --- | --- | --- |
|
|
16
|
-
| Supabase/Auth/RLS expectations are often weak or hard to discover. | 88 of 100 findings had weak or non-discoverable Supabase/Auth/RLS signals. | Make RLS, auth boundaries, service-role isolation, and migration review explicit defaults. | `templates/next-supabase/SECURITY.md`, `templates/next-supabase/SPEC.md`, `skills/supabase-auth-rls.md`, `skills/postgres-migrations.md`, `checklists/rls.md`. | `agent-kit audit`, template hash checks, install smoke, public-readiness tests. |
|
|
17
|
-
| Agent handoff and AI-workflow contracts are immature. | 66 of 100 findings had immature agent handoff or AI-workflow signals. | Require Planner-first routing, Lead Architect ownership for core changes, council handoffs, and evidence records. | `rosters/next-supabase-default-council.json`, `templates/next-supabase/COUNCIL.md`, `schemas/agent-roster.schema.json`, `schemas/council-session.schema.json`, `skills/planning-council.md`, `skills/agent-handoff-tracing.md`. | Roster schema validation, council-session schema validation, `agent-kit audit`, `tests/audit.test.ts`, `tests/public-readiness.test.ts`. |
|
|
18
|
-
| Agent instructions need to load in the tools teams actually use. | Follow-up review of current Codex/AGENTS.md, GitHub Copilot, VS Code, Cursor, and Claude Code instruction surfaces showed that each tool has its own activation path. | Keep the council roster as the source of truth and ship thin adapters for AGENTS.md-compatible tools, Copilot instructions, Cursor rules, and Claude Code subagents. | `templates/next-supabase/ASSISTANT_ADAPTERS.md`, `assistant-adapters/*`, `AGENTS.md`, `AGENT_ROSTER.md`, `.agent-kit/agent-roster.json`. | `agent-kit audit`, public-readiness tests, install smoke, project-specific adapter evidence. |
|
|
19
|
-
| Reusable kits need a safe upgrade lifecycle. | Follow-up review of framework and tooling upgrade practices showed repeated use of upgrade guides, codemods, migration history, diff flows, release notes, and rollback evidence. | Separate initial install from upgrade review and require diff, update, migration, audit, release-note, and rollback evidence. | `UPGRADE.md`, `templates/next-supabase/UPGRADE.md`, `skills/upgrade-maintenance.md`, `checklists/upgrade.md`, `prompts/upgrade-review.md`. | `agent-kit audit`, public-readiness tests, install smoke, release check. |
|
|
20
|
-
| Accessibility evidence is commonly too implicit. | 57 of 100 findings had weak accessibility signals. | Make WCAG-oriented review part of frontend and QA work instead of a late checklist. | `skills/accessibility-wcag.md`, `checklists/accessibility.md`, `checklists/frontend-quality.md`, `templates/next-supabase/TESTING.md`, `templates/next-supabase/STYLE_GUIDE.md`. | Public-readiness tests, install smoke, project maturity evidence in `QUALITY_GATES.md`. |
|
|
21
|
-
| Security expectations are often incomplete. | 54 of 100 findings had implicit or incomplete security expectations. | Treat OWASP, least privilege, input validation, output encoding, dependency risk, and disclosure process as release concerns. | `agents/security-reviewer.md`, `skills/owasp-security-review.md`, `checklists/owasp.md`, `SECURITY.md`, `.github/workflows/codeql.yml`, `.github/workflows/dependency-review.yml`. | `npm audit --audit-level=moderate`, Dependency Review, CodeQL, public-readiness tests, release check. |
|
|
22
|
-
| Reusable components and tokens do not prevent generic AI-looking UI. | Follow-up design review found frontend scoring over-weighted components, tokens, and states. | Require content-first creative direction, brand/content intake, real workflow screens, and screenshot evidence. | `templates/next-supabase/DESIGN.md`, `skills/content-first-design.md`, `skills/frontend-design-system.md`, `agents/frontend-design-lead.md`, `prompts/brand-content-intake.md`, `prompts/creative-direction-matrix.md`, `design-briefs/*`. | Frontend-change roster requirements, `agent-kit audit`, public-readiness tests, screenshot review prompt. |
|
|
23
|
-
| Frontend critique needs reference and distinctiveness evidence. | Follow-up review of design-system and component-state practices showed that strong primitives and screenshots do not prove a product-specific visual direction. | Require reference sets, anti-references, source-safety notes, and a written design critique verdict before accepting significant frontend work. | `skills/reference-led-design-critique.md`, `prompts/design-critique-gate.md`, `checklists/design-critique.md`, `templates/next-supabase/DESIGN.md`, `rosters/next-supabase-default-council.json`. | Frontend-change roster requirements, `agent-kit audit`, public-readiness tests, install smoke. |
|
|
24
|
-
| Frontend distinctiveness needs proof, not taste. | Focused follow-up review of design-system, service-design, content, accessibility, and visual-testing guidance showed that a polished UI can still be interchangeable without first-screen proof, content fingerprint, safe reference learning, asset provenance, state proof, and visual QA proof. | Require a frontend distinctiveness benchmark before accepting significant UI work. | `skills/frontend-distinctiveness-benchmark.md`, `prompts/frontend-distinctiveness-benchmark.md`, `checklists/frontend-distinctiveness.md`, `templates/next-supabase/DESIGN.md`, `rosters/next-supabase-default-council.json`, `research/summaries/frontend-distinctiveness-benchmark-patterns.md`. | Frontend-change roster requirements, `agent-kit audit`, public-readiness tests, install smoke. |
|
|
25
|
-
| Frontend acceptance needs a repeatable product-quality threshold. | Focused follow-up review of design-system, service-design, component-state, and accessibility guidance showed that good primitives do not prove product-specific quality. | Score significant UI work against user/task fit, content specificity, visual identity, information architecture, component states, accessibility and interaction, and source safety. | `skills/frontend-product-quality-rubric.md`, `prompts/frontend-product-quality-scorecard.md`, `checklists/frontend-product-quality.md`, `templates/next-supabase/DESIGN.md`, `rosters/next-supabase-default-council.json`. | Frontend-change roster requirements, `agent-kit audit`, public-readiness tests, install smoke. |
|
|
26
|
-
| Visual QA needs a path beyond manual taste review. | Follow-up visual-testing review identified Storybook, Playwright screenshots, Chromatic, Argos, Loki, and baseline evidence as repeatable patterns. | Provide visual QA tiers that scale from screenshot review to regression evidence. | `skills/visual-regression-qa.md`, `checklists/visual-regression.md`, `prompts/visual-qa-plan.md`, `templates/next-supabase/TESTING.md`. | Public-readiness tests, `QUALITY_GATES.md` maturity evidence, downstream visual QA artifacts. |
|
|
27
|
-
| Public OSS maintainability needs more than a package tarball. | Repository-health follow-up identified structured intake, ownership, labels, support, and governance as durable signals. | Ship contributor intake, labels, CODEOWNERS, support, conduct, governance, and repository settings guidance. | `.github/ISSUE_TEMPLATE/*`, `.github/pull_request_template.md`, `.github/CODEOWNERS`, `.github/labels.yml`, `SUPPORT.md`, `GOVERNANCE.md`, `REPOSITORY_SETTINGS.md`. | Public-readiness tests, PR labeler workflow, documented branch and repository settings. |
|
|
28
|
-
| Supply-chain trust must be visible before publish. | Supply-chain follow-up identified OIDC publishing, provenance, dependency review, Scorecard, SBOMs, workflow controls, and release gates. | Use Trusted Publishing, avoid long-lived npm publish tokens, generate and attest a package-rooted CycloneDX SBOM for every tarball, and verify each public package before creating the source release. | `.github/workflows/release.yml`, `.github/workflows/scorecard.yml`, `.github/workflows/dependency-review.yml`, `SUPPLY_CHAIN.md`, `scripts/release-check.mjs`, `scripts/sbom-check.mjs`. | `npm run release:check`, root/runtime SBOM checks, OpenSSF Scorecard, Dependency Review, npm Trusted Publishing, SBOM attestations, pack dry runs. |
|
|
29
|
-
| Best-practice claims need a maturity model. | Follow-up review showed a green build alone does not prove best-practice readiness. | Separate setup validity from project evidence and best-practice candidacy. | `templates/next-supabase/QUALITY_GATES.md`, `schemas/audit-report.schema.json`, `skills/best-practice-maturity-review.md`, `src/install/audit.ts`. | `agent-kit audit --min-readiness`, audit-report schema validation, install smoke, release check. |
|
|
30
|
-
| Downstream adoption evidence must stay current. | Current read-only dogfood audits of two older installs both produced `11 pass / 20 warn / 7 fail`, proving that later hardening made older installs drift below baseline setup. | Publish a sanitized dogfood summary and keep detailed local-path evidence repo-only. Treat stale dogfood findings as upgrade inputs. | `DOGFOOD.md`, `dogfood/*.md`, `UPGRADE.md`, `agent-kit audit`, `agent-kit update`, `tests/public-readiness.test.ts`. | Public-readiness tests, release check, read-only dogfood audit snapshots, package dry run. |
|
|
31
|
-
| Older installs need a conflict-safe upgrade proof. | Dogfood audits showed both older installs lacked current roster schemas, assistant adapters, maturity gates, upgrade docs, and design critique assets. | Add a deterministic old-install fixture that proves diff previews missing/conflicting assets and update adds missing current assets while preserving customized docs through conflicts. | `tests/update.test.ts`, `src/install/diff.ts`, `src/install/install.ts`, `UPGRADE.md`, `DOGFOOD.md`. | Unit tests, audit report on upgraded fixture, release check. |
|
|
32
|
-
| Public examples must not drift from CLI behavior. | Repeated package hardening changed installed docs, roster messages, manifest hashes, and audit output. Hand-maintained examples can look trustworthy while going stale. | Regenerate a clean install with the built CLI and compare committed example roster, stable manifest fields, audit output, and tree summary before release. | `examples/next-supabase-installed/*`, `scripts/example-check.mjs`, `scripts/release-check.mjs`. | `npm run examples:check`, `npm run release:check`, public-readiness tests. |
|
|
33
|
-
| Package version metadata must agree before release. | Public npm release workflows can publish a package whose lockfile, changelog, or GitHub tag no longer matches `package.json`. | Validate SemVer shape, package-lock root version, changelog section, and release tag before release gates proceed. | `scripts/version-check.mjs`, `package.json`, `package-lock.json`, `CHANGELOG.md`, `.github/workflows/release.yml`. | `npm run version:check`, `npm run release:check`, public-readiness tests. |
|
|
34
|
-
|
|
35
|
-
## What This Does Not Claim
|
|
36
|
-
|
|
37
|
-
- A fresh install is not a completed best-practice project.
|
|
38
|
-
- The kit does not copy source code, policy wording, or brand systems from reviewed repositories.
|
|
39
|
-
- External settings such as branch protection, npm Trusted Publishing, and private vulnerability reporting still need to be configured in GitHub and npm.
|
|
40
|
-
- Tool-specific adapters still need to be activated in each downstream project and verified in `ASSISTANT_ADAPTERS.md`.
|
|
41
|
-
- Real upgrade evidence still needs to be recorded per downstream project in `UPGRADE.md`.
|
|
42
|
-
- Real frontend quality still requires project-specific content, creative direction, screenshot review, and visual evidence.
|
|
43
|
-
- Real frontend distinctiveness still requires project-specific references, anti-references, source-safety review, and a critique verdict.
|
|
44
|
-
- Real frontend distinctiveness still requires first-screen proof, content fingerprint, asset provenance, state proof, visual QA proof, and product-specific acceptance evidence.
|
|
45
|
-
- Public-safe dogfood summaries do not replace full downstream branch updates, adapter activation, or post-publish `npx` verification.
|