@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
|
@@ -1,124 +0,0 @@
|
|
|
1
|
-
# UI Command Index
|
|
2
|
-
|
|
3
|
-
Use this index to run repeatable UI improvement workflows. These are command-like prompts for any assistant surface and the source of truth for native runtime commands.
|
|
4
|
-
|
|
5
|
-
Canonical sources:
|
|
6
|
-
|
|
7
|
-
- `DESIGN.md`
|
|
8
|
-
- `STYLE_GUIDE.md`
|
|
9
|
-
- `TESTING.md`
|
|
10
|
-
- `QUALITY_GATES.md`
|
|
11
|
-
- `.agent-kit/agent-roster.json`
|
|
12
|
-
- `.agent-kit/skills/ui-improvement-harness.md`
|
|
13
|
-
- `.agent-kit/checklists/ui-detectors.md`
|
|
14
|
-
- `.agent-kit/checklists/ui-acceptance-rubric.md`
|
|
15
|
-
- `.agent-kit/prompts/screenshot-review.md`
|
|
16
|
-
- `.agent-kit/prompts/visual-qa-plan.md`
|
|
17
|
-
|
|
18
|
-
## `/ui-audit`
|
|
19
|
-
|
|
20
|
-
Audit a target UI surface before release.
|
|
21
|
-
|
|
22
|
-
Required steps:
|
|
23
|
-
|
|
24
|
-
1. Identify target route, component, workflow, auth state, data state, and risk tier.
|
|
25
|
-
2. Load product/design context and relevant design brief.
|
|
26
|
-
3. Review desktop and mobile evidence, or state which evidence must still be captured.
|
|
27
|
-
4. Run the UI detector checklist.
|
|
28
|
-
5. Return blockers, majors, minors, preserved capabilities, and required fixes.
|
|
29
|
-
|
|
30
|
-
Required outputs: target surface, risk tier, detector findings by severity, missing evidence, pass/fail verdict.
|
|
31
|
-
|
|
32
|
-
## `/ui-polish`
|
|
33
|
-
|
|
34
|
-
Improve visual quality without changing product scope.
|
|
35
|
-
|
|
36
|
-
Required steps:
|
|
37
|
-
|
|
38
|
-
1. Start from detector findings, screenshots, or a named surface.
|
|
39
|
-
2. Preserve product behavior, auth boundaries, copy claims, and data contracts.
|
|
40
|
-
3. Improve hierarchy, spacing, density, alignment, component states, and interaction feedback.
|
|
41
|
-
4. Avoid decorative complexity and generic SaaS defaults.
|
|
42
|
-
5. Re-run detector and screenshot critique after changes.
|
|
43
|
-
|
|
44
|
-
Required outputs: polish goals, changes made or proposed, detector deltas, screenshots needed, residual risks.
|
|
45
|
-
|
|
46
|
-
## `/layout-cleanup`
|
|
47
|
-
|
|
48
|
-
Reduce clutter and repair layout structure.
|
|
49
|
-
|
|
50
|
-
Required steps:
|
|
51
|
-
|
|
52
|
-
1. Identify primary task, secondary tasks, and content hierarchy.
|
|
53
|
-
2. Remove unnecessary nesting, repeated surfaces, card-within-card patterns, and arbitrary dividers.
|
|
54
|
-
3. Normalize spacing, grouping, alignment, heading scale, and responsive containers.
|
|
55
|
-
4. Verify no truncation, overlap, or horizontal overflow remains.
|
|
56
|
-
|
|
57
|
-
Required outputs: layout findings, cleanup actions, preserved workflow, desktop/mobile evidence.
|
|
58
|
-
|
|
59
|
-
## `/responsive-cleanup`
|
|
60
|
-
|
|
61
|
-
Make a UI work across mobile and desktop.
|
|
62
|
-
|
|
63
|
-
Required steps:
|
|
64
|
-
|
|
65
|
-
1. Review mobile width, desktop width, and any tablet breakpoint used by the project.
|
|
66
|
-
2. Verify tap targets, text fit, navigation, primary action visibility, sticky UI, and scroll behavior.
|
|
67
|
-
3. Verify stateful screens on mobile, not only the happy path.
|
|
68
|
-
4. Capture or request mobile and desktop screenshots before acceptance.
|
|
69
|
-
|
|
70
|
-
Required outputs: viewports checked, responsive findings, fixes, screenshots, remaining risks.
|
|
71
|
-
|
|
72
|
-
## `/accessibility-pass`
|
|
73
|
-
|
|
74
|
-
Run a WCAG 2.1 AA-oriented pass on the target UI.
|
|
75
|
-
|
|
76
|
-
Required steps:
|
|
77
|
-
|
|
78
|
-
1. Check semantics, headings, landmarks, forms, labels, tables, and buttons.
|
|
79
|
-
2. Check keyboard navigation, visible focus, tab order, escape/close behavior, and skip path when applicable.
|
|
80
|
-
3. Check contrast, reduced motion, error association, touch targets, and status announcements.
|
|
81
|
-
4. Keep auth, state, and data-boundary tests separate from visual checks.
|
|
82
|
-
|
|
83
|
-
Required outputs: accessibility findings, severity, fixes, skipped checks, test evidence.
|
|
84
|
-
|
|
85
|
-
## `/distinctiveness-pass`
|
|
86
|
-
|
|
87
|
-
Prove the UI belongs to this product and does not look generic.
|
|
88
|
-
|
|
89
|
-
Required steps:
|
|
90
|
-
|
|
91
|
-
1. Compare the first viewport to product category, audience, workflow, and content fingerprint.
|
|
92
|
-
2. Confirm references were translated into lessons without copying source layouts, copy, assets, or brand marks.
|
|
93
|
-
3. Remove fake metrics, vague claims, abstract filler, and interchangeable card stacks.
|
|
94
|
-
4. Re-score distinctiveness and product quality where significant UI work is involved.
|
|
95
|
-
|
|
96
|
-
Required outputs: product-specific evidence, generic-risk findings, source-safety notes, required changes.
|
|
97
|
-
|
|
98
|
-
## `/screenshot-critique`
|
|
99
|
-
|
|
100
|
-
Review provided screenshots or captured browser screenshots.
|
|
101
|
-
|
|
102
|
-
Required steps:
|
|
103
|
-
|
|
104
|
-
1. Name each screenshot, viewport, route, auth state, data state, and UI state.
|
|
105
|
-
2. Run screenshot review, detector checklist, and accessibility risk scan.
|
|
106
|
-
3. Compare against `DESIGN.md`, `STYLE_GUIDE.md`, and selected creative direction.
|
|
107
|
-
4. Return concrete fixes, not broad design advice.
|
|
108
|
-
|
|
109
|
-
Required outputs: screenshot inventory, blockers, high-value fixes, accepted areas, missing screenshots.
|
|
110
|
-
|
|
111
|
-
## `/browser-qa`
|
|
112
|
-
|
|
113
|
-
Run a live browser QA loop for an implemented UI.
|
|
114
|
-
|
|
115
|
-
Required steps:
|
|
116
|
-
|
|
117
|
-
1. Start or identify the dev/preview server and target routes.
|
|
118
|
-
2. Open the target with required auth, role, tenant, and data state.
|
|
119
|
-
3. Capture desktop and mobile screenshots.
|
|
120
|
-
4. Run detector, screenshot critique, accessibility pass, and responsive cleanup.
|
|
121
|
-
5. Apply scoped fixes and repeat until acceptance criteria pass.
|
|
122
|
-
6. Record evidence with `agent-kit session output` when Agent Studio is in use.
|
|
123
|
-
|
|
124
|
-
Required outputs: route, auth state, commands run, screenshots, detector results, fixes, final verdict.
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
# Upgrade Review Prompt
|
|
2
|
-
|
|
3
|
-
Use this prompt before accepting a dependency, framework, Agent Kit, or template upgrade.
|
|
4
|
-
|
|
5
|
-
## Prompt
|
|
6
|
-
|
|
7
|
-
Review this upgrade against `UPGRADE.md`, `QUALITY_GATES.md`, `SECURITY.md`, `TESTING.md`, and `DEPLOYMENT.md`.
|
|
8
|
-
|
|
9
|
-
Return:
|
|
10
|
-
|
|
11
|
-
- What changed and why.
|
|
12
|
-
- Which release notes, migration guides, or codemods apply.
|
|
13
|
-
- Which local templates or overrides changed.
|
|
14
|
-
- Which Supabase migrations, RLS policies, generated types, or auth boundaries are affected.
|
|
15
|
-
- Which Next.js routing, rendering, caching, metadata, or middleware behavior is affected.
|
|
16
|
-
- Which tests, smoke checks, visual QA, and release checks prove the upgrade.
|
|
17
|
-
- Rollback plan.
|
|
18
|
-
- Remaining warnings before best-practice readiness.
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
# Visual QA Plan Prompt
|
|
2
|
-
|
|
3
|
-
Use before accepting a frontend change or before adding visual regression coverage.
|
|
4
|
-
|
|
5
|
-
Return:
|
|
6
|
-
|
|
7
|
-
1. Visual QA tier: baseline, strong, or mature.
|
|
8
|
-
2. Surfaces requiring evidence.
|
|
9
|
-
3. Component states to capture.
|
|
10
|
-
4. Viewports, themes, locales, permissions, or data states to cover.
|
|
11
|
-
5. Dynamic content that must be mocked, masked, frozen, or excluded.
|
|
12
|
-
6. Tooling recommendation: Playwright screenshots, Storybook stories, Chromatic, Argos, Loki, or manual screenshot review.
|
|
13
|
-
7. CI or PR evidence that should be produced.
|
|
14
|
-
8. Rules for approving baseline updates.
|
|
15
|
-
|
|
16
|
-
Do not recommend visual snapshots for volatile full pages unless the volatile regions can be stabilized.
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
# Proposed Agent Kit Updates
|
|
2
|
-
|
|
3
|
-
Generated after the 100-repo scan on 2026-06-02.
|
|
4
|
-
|
|
5
|
-
## Repeated Evidence
|
|
6
|
-
|
|
7
|
-
- 88 of 100 findings had weak or non-discoverable Supabase/Auth/RLS signals.
|
|
8
|
-
- 66 of 100 findings had immature agent handoff or AI-workflow signals.
|
|
9
|
-
- 57 of 100 findings had weak accessibility signals.
|
|
10
|
-
- 54 of 100 findings had implicit or incomplete security expectations.
|
|
11
|
-
- Stronger repos consistently exposed docs, CI, validation, component systems, test setup, or explicit review workflows.
|
|
12
|
-
|
|
13
|
-
## Updates Promoted In This Iteration
|
|
14
|
-
|
|
15
|
-
- Added package-level `DECISIONS.md`.
|
|
16
|
-
- Added RLS policy inventory expectations to `templates/next-supabase/SPEC.md` and `SECURITY.md`.
|
|
17
|
-
- Added security control inventory expectations to `templates/next-supabase/SECURITY.md`.
|
|
18
|
-
- Added design token and component-state inventory expectations to `STYLE_GUIDE.md` and `SPEC.md`.
|
|
19
|
-
- Added CI gate expectations to `TESTING.md`.
|
|
20
|
-
- Strengthened frontend-design, Supabase/RLS, accessibility, and testing skills/checklists.
|
|
21
|
-
- Added machine-readable agent council routing with Planner-first planning and architect-led core-change handoffs.
|
|
22
|
-
- Added public-readiness expectations around MIT licensing, neutral package identity, citation policy, and install smoke.
|
|
23
|
-
- Added a focused creative-design follow-up pass after recognizing that the original frontend score over-weighted tokens, components, and states.
|
|
24
|
-
- Added `DESIGN.md`, content-first design skill, brand/content intake, creative-direction matrix, brand/content checklist, expanded design briefs, and audit coverage for frontend creative-direction evidence.
|
|
25
|
-
- Added a visual QA follow-up pass for Storybook, Playwright screenshots, Chromatic, Argos, Loki, visual baselines, and component-state evidence.
|
|
26
|
-
- Added Visual Regression QA skill, visual-regression checklist, visual QA plan prompt, `TESTING.md` visual QA tiers, roster routing, audit coverage, and research scanner signals.
|
|
27
|
-
- Added a schema-backed council traceability pass after recognizing that the 100-repo research volume was not enough unless practices became enforceable contracts.
|
|
28
|
-
- Added `schemas/agent-roster.schema.json`, `schemas/council-session.schema.json`, `COUNCIL.md`, Agent Handoff Tracing skill, agent-council checklist, council-session review prompt, roster routing, audit coverage, and public-readiness tests.
|
|
29
|
-
- Added a repo-health follow-up pass for issue templates, PR templates, CODEOWNERS, Dependabot, CodeQL, support, conduct, governance, and public-maintainer workflows.
|
|
30
|
-
- Added repo-health files, public-readiness tests, scanner scoring, and a refresh category so public OSS maintainability is treated as release readiness.
|
|
31
|
-
- Added a repository-settings follow-up for branch protection, protected publish environment, private vulnerability reporting, required labels, discussions, and security settings that live outside git.
|
|
32
|
-
- Added `REPOSITORY_SETTINGS.md`, `.github/labels.yml`, `.github/labeler.yml`, PR labeler workflow, public-readiness tests, and scanner signals.
|
|
33
|
-
- Added shared release-readiness command so CI, release, and local checks use the same gate.
|
|
34
|
-
- Added a supply-chain follow-up pass for npm Trusted Publishing/provenance, Dependency Review, OpenSSF Scorecard, workflow hardening, and release controls.
|
|
35
|
-
- Added `SUPPLY_CHAIN.md`, Dependency Review workflow, Scorecard workflow, workflow concurrency/non-persistent checkout controls, manual publish ref validation, supply-chain scanner scoring, and public-readiness tests.
|
|
36
|
-
- Added lockfile-derived CycloneDX SBOM validation and release-workflow SBOM attestation for the exact npm tarball being published.
|
|
37
|
-
- Added a maturity-model follow-up pass after recognizing that a broad 100-repo scan still needs a project-level definition of baseline, strong, and best-practice evidence.
|
|
38
|
-
- Added `QUALITY_GATES.md`, installed it by default, added audit coverage for multi-area maturity expectations, and added tests that catch hollowed-out quality-gate docs.
|
|
39
|
-
- Added project-evidence placeholder audit warnings so a fresh install does not get mistaken for completed best-practice evidence.
|
|
40
|
-
- Added machine-readable audit readiness verdicts so downstream projects can distinguish setup failures, baseline setup, remaining warnings, and best-practice candidates.
|
|
41
|
-
- Added `agent-kit audit --min-readiness <level>` so projects can enforce baseline or best-practice readiness in CI without parsing JSON themselves.
|
|
42
|
-
- Added `schemas/audit-report.schema.json` and runtime contract tests so audit consumers can validate machine-readable output.
|
|
43
|
-
- Added an assistant-adapter activation pass after recognizing that a roster is not enough unless downstream tools load or reference it.
|
|
44
|
-
- Added `ASSISTANT_ADAPTERS.md`, `assistant-adapters/*`, install support, audit checks, and public-readiness tests for AGENTS.md-compatible tools, GitHub Copilot/VS Code instructions, Cursor rules, and Claude Code subagents.
|
|
45
|
-
- Added an upgrade-lifecycle pass after recognizing that reusable kits need safe adoption paths for future template, assistant-adapter, framework, and Supabase changes.
|
|
46
|
-
- Added `UPGRADE.md`, `templates/next-supabase/UPGRADE.md`, Upgrade Maintenance skill, upgrade checklist, upgrade-review prompt, roster routing, audit checks, and public-readiness tests.
|
|
47
|
-
- Added a reference-led design critique pass after recognizing that frontend work could still pass with generic visual quality if it had tokens, states, and screenshots but no reference-set evidence or distinctiveness verdict.
|
|
48
|
-
- Added Reference-Led Design Critique skill, design-critique prompt, design-critique checklist, `DESIGN.md` reference/anti-reference fields, roster routing, audit coverage, and public-readiness tests.
|
|
49
|
-
- Added a frontend product-quality rubric pass after recognizing that qualitative critique still needed a repeatable score threshold.
|
|
50
|
-
- Added Frontend Product Quality Rubric skill, product-quality checklist, scorecard prompt, `DESIGN.md` scorecard fields, roster routing, audit coverage, and public-readiness tests.
|
|
51
|
-
- Added a frontend distinctiveness benchmark pass after recognizing that even a scored UI can still feel interchangeable without first-screen proof, content fingerprint, safe reference learning, asset provenance, state proof, and visual QA proof.
|
|
52
|
-
- Added Frontend Distinctiveness Benchmark skill, checklist, benchmark prompt, `DESIGN.md` evidence fields, roster routing, audit coverage, and public-readiness tests.
|
|
53
|
-
|
|
54
|
-
## Future Updates To Consider
|
|
55
|
-
|
|
56
|
-
- Re-run dogfood installs after the public package is published.
|
|
57
|
-
- Add more stack-specific rosters for non-Supabase stacks.
|
|
58
|
-
- Add richer audit severity scoring once more downstream evidence exists.
|
|
59
|
-
- Dogfood the visual QA tier guidance on a real frontend project and convert repeated findings into concrete starter examples.
|
|
60
|
-
- Dogfood the reference-led design critique gate on a real frontend project and convert repeated weaknesses into stricter examples or audit signals.
|
|
61
|
-
- Dogfood the frontend product-quality scorecard on a real frontend project and tune score thresholds from actual review evidence.
|
|
62
|
-
- Dogfood the frontend distinctiveness benchmark on a real frontend project and convert repeated weaknesses into stricter examples or audit signals.
|
|
63
|
-
- Dogfood assistant adapters in real Codex, Copilot, Cursor, and Claude Code projects and convert repeated activation failures into stricter checks.
|
|
64
|
-
- Dogfood the upgrade lifecycle on a real existing install and convert repeated conflict or rollback gaps into stricter checks.
|
|
65
|
-
- Add optional CI validation for structured council-session JSON records once downstream projects start storing machine-readable traces.
|
|
66
|
-
- Add optional scorecard-style repository health checks once the public repo has enough external contribution activity to tune the signal.
|
|
67
|
-
- Add branch/environment protection documentation after the GitHub repository settings are confirmed.
|
|
68
|
-
- Compare actual GitHub repository settings against `REPOSITORY_SETTINGS.md` after maintainer credentials are available.
|
|
69
|
-
|
|
70
|
-
Do not copy source code from scanned repositories. Adopt only generalized practices with clear rationale.
|
|
@@ -1,261 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"maxRepos": 100,
|
|
3
|
-
"minStars": 100,
|
|
4
|
-
"activeSince": "2024-12-01",
|
|
5
|
-
"excludeRepos": [
|
|
6
|
-
"appwrite/appwrite"
|
|
7
|
-
],
|
|
8
|
-
"seedRepos": [
|
|
9
|
-
{
|
|
10
|
-
"fullName": "dubinc/dub",
|
|
11
|
-
"category": "production-saas"
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"fullName": "documenso/documenso",
|
|
15
|
-
"category": "production-saas"
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
"fullName": "formbricks/formbricks",
|
|
19
|
-
"category": "production-saas"
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
"fullName": "triggerdotdev/trigger.dev",
|
|
23
|
-
"category": "production-saas"
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
"fullName": "unkeyed/unkey",
|
|
27
|
-
"category": "security-quality"
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"fullName": "better-auth/better-auth",
|
|
31
|
-
"category": "security-quality"
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
"fullName": "nextauthjs/next-auth",
|
|
35
|
-
"category": "security-quality"
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
"fullName": "tailwindlabs/headlessui",
|
|
39
|
-
"category": "design-systems"
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
"fullName": "shadcn-ui/ui",
|
|
43
|
-
"category": "design-systems"
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
"fullName": "google-labs-code/design.md",
|
|
47
|
-
"category": "design-systems"
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
"fullName": "google-labs-code/stitch-sdk",
|
|
51
|
-
"category": "design-systems"
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"fullName": "storybookjs/design-system",
|
|
55
|
-
"category": "design-systems"
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"fullName": "primer/react",
|
|
59
|
-
"category": "design-systems"
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
"fullName": "radix-ui/primitives",
|
|
63
|
-
"category": "design-systems"
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"fullName": "carbon-design-system/carbon",
|
|
67
|
-
"category": "design-systems"
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
"fullName": "Shopify/polaris",
|
|
71
|
-
"category": "design-systems"
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
"fullName": "uswds/uswds",
|
|
75
|
-
"category": "design-systems"
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
"fullName": "Shopify/polaris-tokens",
|
|
79
|
-
"category": "design-systems"
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
"fullName": "alphagov/govuk-design-system",
|
|
83
|
-
"category": "design-systems"
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
"fullName": "t3-oss/create-t3-app",
|
|
87
|
-
"category": "testing-docs-agents"
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
"fullName": "storybookjs/storybook",
|
|
91
|
-
"category": "testing-docs-agents"
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
"fullName": "storybookjs/test-runner",
|
|
95
|
-
"category": "testing-docs-agents"
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
"fullName": "chromaui/chromatic-cli",
|
|
99
|
-
"category": "testing-docs-agents"
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
"fullName": "argos-ci/argos",
|
|
103
|
-
"category": "testing-docs-agents"
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
"fullName": "oblador/loki",
|
|
107
|
-
"category": "testing-docs-agents"
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
"fullName": "openai/openai-agents-js",
|
|
111
|
-
"category": "testing-docs-agents"
|
|
112
|
-
},
|
|
113
|
-
{
|
|
114
|
-
"fullName": "openai/openai-agents-python",
|
|
115
|
-
"category": "testing-docs-agents"
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
"fullName": "langchain-ai/langgraphjs",
|
|
119
|
-
"category": "testing-docs-agents"
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
"fullName": "langchain-ai/langgraph-supervisor-py",
|
|
123
|
-
"category": "testing-docs-agents"
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
"fullName": "github/docs",
|
|
127
|
-
"category": "repo-health-maintainers"
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
"fullName": "github/codeql-action",
|
|
131
|
-
"category": "repo-health-maintainers"
|
|
132
|
-
},
|
|
133
|
-
{
|
|
134
|
-
"fullName": "dependabot/dependabot-core",
|
|
135
|
-
"category": "repo-health-maintainers"
|
|
136
|
-
},
|
|
137
|
-
{
|
|
138
|
-
"fullName": "ossf/scorecard",
|
|
139
|
-
"category": "repo-health-maintainers"
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
"fullName": "actions/dependency-review-action",
|
|
143
|
-
"category": "supply-chain-security"
|
|
144
|
-
},
|
|
145
|
-
{
|
|
146
|
-
"fullName": "ossf/scorecard-action",
|
|
147
|
-
"category": "supply-chain-security"
|
|
148
|
-
},
|
|
149
|
-
{
|
|
150
|
-
"fullName": "npm/provenance",
|
|
151
|
-
"category": "supply-chain-security"
|
|
152
|
-
},
|
|
153
|
-
{
|
|
154
|
-
"fullName": "slsa-framework/slsa-github-generator",
|
|
155
|
-
"category": "supply-chain-security"
|
|
156
|
-
}
|
|
157
|
-
],
|
|
158
|
-
"categories": [
|
|
159
|
-
{
|
|
160
|
-
"name": "official-nextjs",
|
|
161
|
-
"targetCount": 15,
|
|
162
|
-
"queries": [
|
|
163
|
-
"org:vercel nextjs",
|
|
164
|
-
"org:vercel app-router",
|
|
165
|
-
"org:nextjs"
|
|
166
|
-
]
|
|
167
|
-
},
|
|
168
|
-
{
|
|
169
|
-
"name": "supabase-nextjs",
|
|
170
|
-
"targetCount": 15,
|
|
171
|
-
"queries": [
|
|
172
|
-
"supabase nextjs language:TypeScript",
|
|
173
|
-
"\"createServerClient\" supabase language:TypeScript",
|
|
174
|
-
"\"row level security\" supabase nextjs",
|
|
175
|
-
"\"supabase\" \"app/\" \"middleware.ts\" language:TypeScript",
|
|
176
|
-
"\"supabase\" \"rls\" language:TypeScript"
|
|
177
|
-
]
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
"name": "production-saas",
|
|
181
|
-
"targetCount": 20,
|
|
182
|
-
"queries": [
|
|
183
|
-
"nextjs saas language:TypeScript",
|
|
184
|
-
"nextjs dashboard language:TypeScript",
|
|
185
|
-
"app router saas language:TypeScript",
|
|
186
|
-
"open source saas starter nextjs language:TypeScript",
|
|
187
|
-
"nextjs admin dashboard language:TypeScript"
|
|
188
|
-
]
|
|
189
|
-
},
|
|
190
|
-
{
|
|
191
|
-
"name": "design-systems",
|
|
192
|
-
"targetCount": 15,
|
|
193
|
-
"queries": [
|
|
194
|
-
"react design system language:TypeScript",
|
|
195
|
-
"component library react accessibility language:TypeScript",
|
|
196
|
-
"radix tailwind components language:TypeScript",
|
|
197
|
-
"shadcn components language:TypeScript",
|
|
198
|
-
"\"DESIGN.md\" \"design system\" language:Markdown",
|
|
199
|
-
"\"creative direction\" \"design tokens\" language:Markdown",
|
|
200
|
-
"\"design critique\" \"reference set\" language:Markdown",
|
|
201
|
-
"\"anti-reference\" \"creative direction\" language:Markdown",
|
|
202
|
-
"\"product quality\" \"scorecard\" \"frontend\" language:Markdown",
|
|
203
|
-
"\"user task\" \"content\" \"accessibility\" \"design system\" language:Markdown"
|
|
204
|
-
]
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
"name": "security-quality",
|
|
208
|
-
"targetCount": 15,
|
|
209
|
-
"queries": [
|
|
210
|
-
"nextjs security language:TypeScript",
|
|
211
|
-
"codeql typescript nextjs",
|
|
212
|
-
"zod route handlers nextjs",
|
|
213
|
-
"auth middleware nextjs security language:TypeScript",
|
|
214
|
-
"csrf rate limit nextjs language:TypeScript"
|
|
215
|
-
]
|
|
216
|
-
},
|
|
217
|
-
{
|
|
218
|
-
"name": "testing-docs-agents",
|
|
219
|
-
"targetCount": 20,
|
|
220
|
-
"queries": [
|
|
221
|
-
"playwright nextjs language:TypeScript",
|
|
222
|
-
"\"toHaveScreenshot\" playwright language:TypeScript",
|
|
223
|
-
"\"visual regression\" storybook language:TypeScript",
|
|
224
|
-
"chromatic storybook visual testing language:TypeScript",
|
|
225
|
-
"argos visual testing playwright language:TypeScript",
|
|
226
|
-
"vitest playwright nextjs language:TypeScript",
|
|
227
|
-
"contributing security testing nextjs language:TypeScript",
|
|
228
|
-
"AGENTS.md language:TypeScript",
|
|
229
|
-
"CLAUDE.md nextjs",
|
|
230
|
-
"\"agent handoff\" \"tracing\" language:TypeScript",
|
|
231
|
-
"\"json schema\" \"agents\" language:TypeScript",
|
|
232
|
-
"\"AGENTS.md\" \"handoff\" language:Markdown"
|
|
233
|
-
]
|
|
234
|
-
},
|
|
235
|
-
{
|
|
236
|
-
"name": "repo-health-maintainers",
|
|
237
|
-
"targetCount": 10,
|
|
238
|
-
"queries": [
|
|
239
|
-
"\".github/ISSUE_TEMPLATE\" \"pull_request_template\" language:Markdown",
|
|
240
|
-
"\"dependabot.yml\" \"CODEOWNERS\" language:Markdown",
|
|
241
|
-
"\"CodeQL\" \"dependabot\" \"PULL_REQUEST_TEMPLATE\" language:Markdown",
|
|
242
|
-
"\"SECURITY.md\" \"SUPPORT.md\" \"CODE_OF_CONDUCT.md\" language:Markdown",
|
|
243
|
-
"\"research\" \"CONTRIBUTING.md\" \"security advisory\" language:Markdown",
|
|
244
|
-
"\"branch protection\" \"required status checks\" \"CODEOWNERS\" language:Markdown",
|
|
245
|
-
"\"private vulnerability reporting\" \"security advisories\" language:Markdown",
|
|
246
|
-
"\"labels.yml\" \"labeler.yml\" \".github\" language:YAML"
|
|
247
|
-
]
|
|
248
|
-
},
|
|
249
|
-
{
|
|
250
|
-
"name": "supply-chain-security",
|
|
251
|
-
"targetCount": 10,
|
|
252
|
-
"queries": [
|
|
253
|
-
"\"npm publish\" \"id-token: write\" \"provenance\" language:YAML",
|
|
254
|
-
"\"trusted publishing\" \"npm publish\" \"GitHub Actions\" language:Markdown",
|
|
255
|
-
"\"dependency-review-action\" \"fail-on-severity\" language:YAML",
|
|
256
|
-
"\"ossf/scorecard-action\" \"publish_results\" language:YAML",
|
|
257
|
-
"\"OpenSSF Scorecard\" \"CodeQL\" \"Dependabot\" language:Markdown"
|
|
258
|
-
]
|
|
259
|
-
}
|
|
260
|
-
]
|
|
261
|
-
}
|
package/research/scan-plan.md
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
# 100 Repo Research Plan
|
|
2
|
-
|
|
3
|
-
## Objective
|
|
4
|
-
|
|
5
|
-
Discover repeatable, evidence-backed best practices for Next.js + Supabase project setup, then promote only durable patterns into this package.
|
|
6
|
-
|
|
7
|
-
## Method
|
|
8
|
-
|
|
9
|
-
1. Discover candidates through GitHub API queries.
|
|
10
|
-
2. Filter for active, non-archived repositories.
|
|
11
|
-
3. Shallow clone selected repos.
|
|
12
|
-
4. Score architecture, security, Supabase/Auth/RLS, frontend design, accessibility, testing, docs, CI, and agent readiness.
|
|
13
|
-
5. Write one finding per repo.
|
|
14
|
-
6. Summarize repeated patterns.
|
|
15
|
-
7. Update templates only when a pattern is repeated and defensible.
|
|
16
|
-
|
|
17
|
-
## Do Not Copy
|
|
18
|
-
|
|
19
|
-
- Source code
|
|
20
|
-
- Proprietary assets
|
|
21
|
-
- Project-specific copy
|
|
22
|
-
- Security-sensitive implementation details
|
|
23
|
-
|
|
24
|
-
Extract patterns and rationale only.
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
# Agent Workflow And Handoff Trace Patterns
|
|
2
|
-
|
|
3
|
-
Generated from a focused follow-up review of multi-agent workflow systems and configuration-validation practices.
|
|
4
|
-
|
|
5
|
-
## Why This Pass Was Needed
|
|
6
|
-
|
|
7
|
-
The kit had a default roster and audit checks, but mature agent systems also expose schemas, structured handoffs, guardrails, and traces. Without those, council routing can become prose-only and hard to verify after work is complete.
|
|
8
|
-
|
|
9
|
-
## Focused Sources Reviewed
|
|
10
|
-
|
|
11
|
-
- `openai/openai-agents-js` and OpenAI Agents SDK docs: handoffs expose schemas, parse handoff inputs locally, and tracing records what happened during agent runs.
|
|
12
|
-
- `openai/openai-agents-python`: lightweight multi-agent framework with agents, tools, guardrails, handoffs, and tracing.
|
|
13
|
-
- `langchain-ai/langgraphjs`: graph-based orchestration for resilient agent workflows and role-specific agents.
|
|
14
|
-
- `langchain-ai/langgraph-supervisor-py`: supervisor pattern and explicit handoff tooling for routing between specialist agents.
|
|
15
|
-
- JSON Schema / SchemaStore-style config validation patterns: machine-readable schemas help editors, CI, and audit tools detect configuration drift.
|
|
16
|
-
|
|
17
|
-
## Repeated Patterns To Adopt
|
|
18
|
-
|
|
19
|
-
- Treat the roster as a contract, not just documentation.
|
|
20
|
-
- Ship schemas beside machine-readable config.
|
|
21
|
-
- Keep handoffs explicit: owner, decision, risk, next owner, and evidence.
|
|
22
|
-
- Record required outputs and whether each is missing, partial, complete, or not applicable.
|
|
23
|
-
- Keep human-readable notes and machine-readable traces compatible.
|
|
24
|
-
- Validate routing drift in audit so downstream projects cannot silently bypass core roles.
|
|
25
|
-
|
|
26
|
-
## Promoted Updates
|
|
27
|
-
|
|
28
|
-
- Add `schemas/agent-roster.schema.json`.
|
|
29
|
-
- Add `schemas/council-session.schema.json`.
|
|
30
|
-
- Add `COUNCIL.md` as the human-readable council evidence log.
|
|
31
|
-
- Add Agent Handoff Tracing skill.
|
|
32
|
-
- Add agent council checklist.
|
|
33
|
-
- Add council-session review prompt.
|
|
34
|
-
- Add schema folder to installed assets and public package contents.
|
|
35
|
-
- Add audit coverage for schema presence and council evidence guidance.
|
|
36
|
-
|
|
37
|
-
Do not tie the kit to a single runtime agent framework. The package should stay provider-neutral while adopting broadly useful schema, handoff, guardrail, and trace concepts.
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
# Agentic Engineering Maturity Levels
|
|
2
|
-
|
|
3
|
-
Generated from the Agent Kit iceberg model for setup office gamification, `LOOP_CODING.md`, and maintainer climb planning.
|
|
4
|
-
|
|
5
|
-
## Summary
|
|
6
|
-
|
|
7
|
-
Agentic engineering maturity is modeled as **levels L3–L8**. The kit **computes L3–L6** from audit, adapter, and setup signals. **L7–L8 are deferred** (never auto-awarded) because they require stronger eval gates than agent freedom.
|
|
8
|
-
|
|
9
|
-
| Level | Name | Computed? |
|
|
10
|
-
| --- | --- | --- |
|
|
11
|
-
| L3 | AI-native IDE | Yes |
|
|
12
|
-
| L4 | Rules, context, MCP contract | Yes |
|
|
13
|
-
| L5 | Subagents, skills, council specialists | Yes |
|
|
14
|
-
| L6 | Eval loops, hooks, CI gates | Yes (downstream or maintainer profile) |
|
|
15
|
-
| L7 | Overnight / unsupervised teams | No — explore only |
|
|
16
|
-
| L8 | Agents managing agents | No — lab only |
|
|
17
|
-
|
|
18
|
-
## Base levels (reference)
|
|
19
|
-
|
|
20
|
-
| Lens | Level |
|
|
21
|
-
| --- | --- |
|
|
22
|
-
| What `@appsforgood/next-supabase-kit` ships | High L4 → solid L5 |
|
|
23
|
-
| BaseRepo maintainer day-to-day (gitignored dogfood overlay) | Mid L4 |
|
|
24
|
-
| BaseRepo CI (`release:check`, `adapter:validate`, audit smokes) | Partial L6 |
|
|
25
|
-
| Fresh downstream `init` | ~L4 capability; L3 until context complete |
|
|
26
|
-
| Fresh `init --activate cursor\|codex` | L5 capability when subagents exist |
|
|
27
|
-
|
|
28
|
-
## When each level was cutting edge (approximate)
|
|
29
|
-
|
|
30
|
-
| Era | Frontier | Became baseline |
|
|
31
|
-
| --- | --- | --- |
|
|
32
|
-
| 2022–2023 | Browser chat, tab completion | Copy-paste only |
|
|
33
|
-
| 2023–2024 | Repo-aware IDE chat (L3) | Autocomplete-only |
|
|
34
|
-
| Late 2024–2025 | AGENTS.md, rules, MCP (L4) | Ad-hoc prompting |
|
|
35
|
-
| 2025–2026 | Subagents, skills, councils (L5) | Single chat for all roles |
|
|
36
|
-
| 2026 now | Eval CI, loop until green (L6) | Manual “run tests when you remember” |
|
|
37
|
-
| 2026 hype | Overnight agent teams (L7) | Not safe as default |
|
|
38
|
-
| 2026+ lab | Meta-orchestration (L8) | Not mainstream production |
|
|
39
|
-
|
|
40
|
-
## Office and wizard integration
|
|
41
|
-
|
|
42
|
-
- `agent-kit setup` computes level via `computeAgenticLevel()` and returns it on `/api/state`.
|
|
43
|
-
- Agent Office shows **Lcurrent → Ltarget**, an iceberg strip (L3–L8), and top climb steps.
|
|
44
|
-
- Setup wizard complete screen links **`LOOP_CODING.md`**, **`agent-kit adapter validate`**, and audit gates.
|
|
45
|
-
- Maintainer source repos use a **maintainer profile** (release-check + dogfood docs) for L6 signals.
|
|
46
|
-
|
|
47
|
-
## Related assets
|
|
48
|
-
|
|
49
|
-
- `LOOP_CODING.md` — kit-safe loop patterns
|
|
50
|
-
- `schemas/agentic-level.schema.json` — report shape
|
|
51
|
-
- `src/studio/agentic-level.ts` — scoring implementation
|
|
52
|
-
- `research/summaries/maturity-model-patterns.md` — QUALITY_GATES evidence tiers (separate from Agentic L3–L8)
|
|
53
|
-
|
|
54
|
-
Do not conflate **Agentic L3–L8** with **QUALITY_GATES Baseline/Strong/Best-Practice** or **visual QA baseline/strong/mature** — the setup UI labels these separately.
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
# Creative Design And Agent-Readable UI Patterns
|
|
2
|
-
|
|
3
|
-
Generated from a focused second-pass review after the initial 100-repo scan showed that frontend scoring over-weighted reusable components, tokens, and states.
|
|
4
|
-
|
|
5
|
-
## Why This Pass Was Needed
|
|
6
|
-
|
|
7
|
-
The first scan correctly promoted design tokens, component states, accessibility, screenshot review, and anti-generic UI rules. It did not fully enforce creative discovery: audience, content inventory, brand direction, visual identity, category references, and multiple design directions before implementation.
|
|
8
|
-
|
|
9
|
-
## Focused Sources Reviewed
|
|
10
|
-
|
|
11
|
-
- `google-labs-code/design.md`: first-class design identity document for coding agents, with machine-readable tokens and human-readable rationale.
|
|
12
|
-
- `google-labs-code/stitch-sdk`: design-generation workflow with project design systems, generated screens, screenshots, and variants.
|
|
13
|
-
- `storybookjs/design-system`: open design system repository with shared components, Storybook docs, packaging, CI, and visual regression testing.
|
|
14
|
-
- `storybookjs/storybook`: component workshop pattern for building, documenting, and testing UI states in isolation.
|
|
15
|
-
- `primer/react`: product design-system implementation with contributor/testing expectations.
|
|
16
|
-
- `Shopify/polaris-react` and `Shopify/polaris-tokens`: design-system and token packaging patterns for product-specific admin UI.
|
|
17
|
-
- `govuk-design-system` and GOV.UK service/content guidance: user-need-first service design and content that maps to real user tasks.
|
|
18
|
-
|
|
19
|
-
## Repeated Patterns To Adopt
|
|
20
|
-
|
|
21
|
-
- Keep a persistent design-identity document beside agent instructions, not only a style guide.
|
|
22
|
-
- Treat tokens as normative values and prose as usage rationale.
|
|
23
|
-
- Require content and user needs before visual styling.
|
|
24
|
-
- Generate or compare multiple creative directions before implementation.
|
|
25
|
-
- Keep screenshots or visual states as acceptance evidence, not optional polish.
|
|
26
|
-
- Prefer product/category-specific briefs over generic SaaS templates.
|
|
27
|
-
- Make missing real content or assets explicit instead of masking gaps with generic placeholders.
|
|
28
|
-
|
|
29
|
-
## Promoted Updates
|
|
30
|
-
|
|
31
|
-
- Add `DESIGN.md` as an installed root document.
|
|
32
|
-
- Add a content-first design skill.
|
|
33
|
-
- Add brand/content intake and creative-direction prompts.
|
|
34
|
-
- Add brand/content checklist.
|
|
35
|
-
- Expand design briefs for ecommerce, portfolio/venue, education/course, community/social, and AI workflow products.
|
|
36
|
-
- Require frontend audit coverage for content, brand, creative direction, and screenshot evidence.
|
|
37
|
-
|
|
38
|
-
Do not copy source code, design files, or proprietary brand systems from reviewed repositories. Adopt only generalized practices with clear rationale.
|