@appsforgood/next-supabase-kit 0.3.0 → 0.4.0
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 +9 -0
- package/README.md +22 -555
- package/UPGRADE.md +11 -77
- package/USER_GUIDE.md +181 -0
- package/agents/app-engineer/agent.md +32 -0
- package/agents/copy/agent.md +27 -0
- package/agents/design/agent.md +27 -0
- package/agents/optional/deploy/agent.md +12 -0
- package/agents/optional/docs/agent.md +12 -0
- package/agents/optional/lead-architect/agent.md +12 -0
- package/agents/optional/research/agent.md +12 -0
- package/agents/planner/agent.md +29 -0
- package/agents/qa/agent.md +35 -0
- package/agents/security/agent.md +28 -0
- package/assistant-adapters/cursor-agent-kit.mdc +5 -26
- package/catalog.json +20 -0
- package/dist/index.js +892 -8251
- package/dist/index.js.map +1 -1
- package/examples/next-supabase-installed/.agent-kit/config.json +22 -26
- package/examples/next-supabase-installed/.agent-kit/manifest.json +78 -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/frontend-design/SKILL.md +26 -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 +22 -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 +32 -0
- package/examples/next-supabase-installed/.claude/agents/copy.md +27 -0
- package/examples/next-supabase-installed/.claude/agents/design.md +27 -0
- package/examples/next-supabase-installed/.claude/agents/planner.md +29 -0
- package/examples/next-supabase-installed/.claude/agents/qa.md +35 -0
- package/examples/next-supabase-installed/.claude/agents/security.md +28 -0
- package/examples/next-supabase-installed/.codex/agents/app-engineer.toml +39 -0
- package/examples/next-supabase-installed/.codex/agents/copy.toml +34 -0
- package/examples/next-supabase-installed/.codex/agents/design.toml +34 -0
- package/examples/next-supabase-installed/.codex/agents/planner.toml +36 -0
- package/examples/next-supabase-installed/.codex/agents/qa.toml +42 -0
- package/examples/next-supabase-installed/.codex/agents/security.toml +35 -0
- package/examples/next-supabase-installed/.cursor/agents/app-engineer.md +32 -0
- package/examples/next-supabase-installed/.cursor/agents/copy.md +27 -0
- package/examples/next-supabase-installed/.cursor/agents/design.md +27 -0
- package/examples/next-supabase-installed/.cursor/agents/planner.md +29 -0
- package/examples/next-supabase-installed/.cursor/agents/qa.md +35 -0
- package/examples/next-supabase-installed/.cursor/agents/security.md +28 -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/frontend-design/SKILL.md +26 -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 +22 -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.md +181 -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/frontend-design/SKILL.md +26 -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 +22 -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 +57 -42
- package/package.json +15 -43
- package/research/agent-skill-gap-report.md +128 -0
- package/skills/accessibility-wcag/SKILL.md +26 -0
- package/skills/browser-qa/SKILL.md +67 -0
- package/skills/frontend-design/SKILL.md +26 -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 +22 -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,34 +0,0 @@
|
|
|
1
|
-
# Reference-Led Design Critique Patterns
|
|
2
|
-
|
|
3
|
-
Generated from a follow-up design-quality review after the kit already had content-first design, design adapters, and visual QA.
|
|
4
|
-
|
|
5
|
-
## Why This Pass Was Needed
|
|
6
|
-
|
|
7
|
-
The existing frontend guidance required brand/content intake, creative-direction options, design tokens, component states, screenshot review, and visual QA. That reduced generic AI-site defaults, but it still allowed a weak design to pass if it had enough checklist artifacts. A best-practice frontend setup also needs a critique loop that compares the work to relevant references, names anti-references, and records why the result is distinct for the product.
|
|
8
|
-
|
|
9
|
-
## Focused Sources Reviewed
|
|
10
|
-
|
|
11
|
-
- `shadcn-ui/ui`: registry-oriented component distribution and reusable UI skill guidance.
|
|
12
|
-
- `primer/design` and Primer accessibility guidance: design-system guidelines, inclusive design, product-context review, and reusable pattern discipline.
|
|
13
|
-
- `radix-ui/primitives`: accessible low-level primitives that separate behavior foundations from project-specific styling.
|
|
14
|
-
- Carbon Design System guidance: accessibility status, component guidance, and standards-backed review expectations.
|
|
15
|
-
- Storybook documentation: component state, interaction, accessibility, and visual testing workflows.
|
|
16
|
-
|
|
17
|
-
## Repeated Patterns To Adopt
|
|
18
|
-
|
|
19
|
-
- Separate reusable primitives from product-specific visual direction.
|
|
20
|
-
- Use references to learn hierarchy, density, state treatment, and interaction patterns without copying source designs.
|
|
21
|
-
- Record anti-references so agents know which category tropes and AI-generated defaults to avoid.
|
|
22
|
-
- Treat accessibility and component-state behavior as foundations, not as visual differentiation by themselves.
|
|
23
|
-
- Use screenshots, stories, or visual tests to make critique evidence reviewable after implementation.
|
|
24
|
-
- Require a written verdict before accepting significant UI work.
|
|
25
|
-
|
|
26
|
-
## Promoted Updates
|
|
27
|
-
|
|
28
|
-
- Add Reference-Led Design Critique skill.
|
|
29
|
-
- Add design-critique gate prompt and checklist.
|
|
30
|
-
- Add reference set, anti-reference, source-safety, distinctiveness, and critique verdict fields to `DESIGN.md`.
|
|
31
|
-
- Wire the Frontend Design Lead and frontend-change workflow to require reference-set evidence and a design critique verdict.
|
|
32
|
-
- Add audit warnings when `DESIGN.md` lacks the critique gate.
|
|
33
|
-
|
|
34
|
-
Do not copy third-party source code, design files, protected visual identity, brand marks, or proprietary copy from reviewed repositories. Adopt generalized practices only.
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
# Docs And Agent Patterns
|
|
2
|
-
|
|
3
|
-
Generated from 31 relevant repository findings.
|
|
4
|
-
|
|
5
|
-
## Focus Areas
|
|
6
|
-
- documentation
|
|
7
|
-
- agentReadiness
|
|
8
|
-
|
|
9
|
-
## Aggregate Evidence
|
|
10
|
-
- Average normalized focus score: 0.42
|
|
11
|
-
- Repositories considered: 31
|
|
12
|
-
|
|
13
|
-
## Strongest Repositories For This Topic
|
|
14
|
-
- sno-ai/mda (testing-docs-agents) - focus score 9, total 19/45
|
|
15
|
-
- thedaviddias/souls-directory (testing-docs-agents) - focus score 8, total 29/45
|
|
16
|
-
- vercel/next.js (official-nextjs) - focus score 7, total 30/45
|
|
17
|
-
- vercel/ai (official-nextjs) - focus score 7, total 29/45
|
|
18
|
-
- microsoft/skills (testing-docs-agents) - focus score 7, total 26/45
|
|
19
|
-
- Piebald-AI/tweakcc (testing-docs-agents) - focus score 7, total 20/45
|
|
20
|
-
- vercel/next-forge (official-nextjs) - focus score 6, total 23/45
|
|
21
|
-
- wasp-lang/open-saas (testing-docs-agents) - focus score 6, total 21/45
|
|
22
|
-
- AndreaPontrandolfo/sheriff (testing-docs-agents) - focus score 6, total 21/45
|
|
23
|
-
- MrLesk/Backlog.md (testing-docs-agents) - focus score 6, total 20/45
|
|
24
|
-
- brocoders/extensive-react-boilerplate (testing-docs-agents) - focus score 6, total 19/45
|
|
25
|
-
- vercel/examples (official-nextjs) - focus score 5, total 26/45
|
|
26
|
-
|
|
27
|
-
## Repeated Strengths
|
|
28
|
-
- Test setup includes meaningful automated and browser-level coverage. (12)
|
|
29
|
-
- Documentation is strong enough for external contributors or agents to onboard. (9)
|
|
30
|
-
- Frontend implementation shows reusable components, states, and design-system signals. (9)
|
|
31
|
-
- Security posture is explicit through docs, validation, CI, or review tooling. (6)
|
|
32
|
-
|
|
33
|
-
## Repeated Gaps
|
|
34
|
-
- Supabase RLS/Auth practices are not clearly discoverable. (31)
|
|
35
|
-
- Accessibility signals are weak or absent. (23)
|
|
36
|
-
- Agent handoff and AI-workflow instructions are not mature. (20)
|
|
37
|
-
- Security expectations are implicit or incomplete. (19)
|
|
38
|
-
|
|
39
|
-
## Source Findings
|
|
40
|
-
- research/findings/sno-ai__mda.md
|
|
41
|
-
- research/findings/thedaviddias__souls-directory.md
|
|
42
|
-
- research/findings/Piebald-AI__tweakcc.md
|
|
43
|
-
- research/findings/microsoft__skills.md
|
|
44
|
-
- research/findings/vercel__ai.md
|
|
45
|
-
- research/findings/vercel__next.js.md
|
|
46
|
-
- research/findings/AndreaPontrandolfo__sheriff.md
|
|
47
|
-
- research/findings/MrLesk__Backlog.md.md
|
|
48
|
-
- research/findings/brocoders__extensive-react-boilerplate.md
|
|
49
|
-
- research/findings/vercel__next-forge.md
|
|
50
|
-
- research/findings/wasp-lang__open-saas.md
|
|
51
|
-
- research/findings/google-labs-code__design.md.md
|
|
52
|
-
- research/findings/ixartz__Next-js-Boilerplate.md
|
|
53
|
-
- research/findings/vercel__examples.md
|
|
54
|
-
- research/findings/vercel__next-devtools-mcp.md
|
|
55
|
-
- research/findings/agentsmd__agents.md.md
|
|
56
|
-
- research/findings/antiwork__shortest.md
|
|
57
|
-
- research/findings/zero-one-group__monorepo.md
|
|
58
|
-
- research/findings/RichardHruby__login-machine.md
|
|
59
|
-
- research/findings/kaje94__menufic.md
|
|
60
|
-
- research/findings/vercel__chatbot.md
|
|
61
|
-
- research/findings/vercel__nextjs-postgres-nextauth-tailwindcss-template.md
|
|
62
|
-
- research/findings/vercel__swr.md
|
|
63
|
-
- research/findings/connectrpc__examples-es.md
|
|
64
|
-
- research/findings/vercel__kirimase.md
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
# Dogfood And Adoption Evidence Patterns
|
|
2
|
-
|
|
3
|
-
Generated from a focused follow-up review after current read-only dogfood audits showed that older installs fail the hardened setup standard.
|
|
4
|
-
|
|
5
|
-
## Why This Pass Was Needed
|
|
6
|
-
|
|
7
|
-
The kit already had broad 100-repo research, public release gates, and two earlier dogfood installs. Those dogfood notes were stale after later hardening added schema-backed council routing, assistant adapters, upgrade lifecycle, maturity gates, visual QA, and reference-led design critique.
|
|
8
|
-
|
|
9
|
-
A public best-practice repo needs adoption evidence that stays current as standards change. Dogfood should not only prove that an install once worked; it should also prove that the audit catches drift when the kit improves.
|
|
10
|
-
|
|
11
|
-
## Focused Sources Reviewed
|
|
12
|
-
|
|
13
|
-
- GitHub community profile guidance for public repositories: community health files such as README, license, conduct, and contributing files are treated as visible project-health signals.
|
|
14
|
-
- npm Trusted Publishing guidance: publish identity should avoid long-lived tokens, use workflow-bound OIDC, and produce provenance for public packages when conditions are met.
|
|
15
|
-
- npm provenance guidance: publish workflows should support provenance and public access, and consumers can verify registry signatures and attestations.
|
|
16
|
-
- Storybook testing guidance: stories can become reusable accessibility, interaction, visual, and end-to-end testing inputs.
|
|
17
|
-
|
|
18
|
-
## Repeated Patterns To Adopt
|
|
19
|
-
|
|
20
|
-
- Keep a public-safe dogfood summary separate from detailed local-path evidence.
|
|
21
|
-
- Treat stale dogfood as a signal, not a failure to hide.
|
|
22
|
-
- Record whether audits were read-only or changed downstream files.
|
|
23
|
-
- Capture pass/warn/fail counts and readiness level for each adoption pass.
|
|
24
|
-
- Promote repeated downstream gaps into installed assets, audit checks, tests, release gates, or decisions.
|
|
25
|
-
- Keep post-publish `npx` verification separate from local package smoke.
|
|
26
|
-
|
|
27
|
-
## Promoted Updates
|
|
28
|
-
|
|
29
|
-
- Add `DOGFOOD.md` as a public-safe package asset.
|
|
30
|
-
- Update detailed `dogfood/*` notes with current read-only audit results.
|
|
31
|
-
- Add public-readiness tests that require dogfood evidence while preventing local project paths from leaking into the package.
|
|
32
|
-
|
|
33
|
-
Do not publish local project paths, private project details, or screenshots without review. Public dogfood summaries should use project archetypes and generalized findings.
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
# Frontend Design Patterns
|
|
2
|
-
|
|
3
|
-
Generated from 41 relevant repository findings.
|
|
4
|
-
|
|
5
|
-
## Focus Areas
|
|
6
|
-
- frontendDesign
|
|
7
|
-
- accessibility
|
|
8
|
-
|
|
9
|
-
## Aggregate Evidence
|
|
10
|
-
- Average normalized focus score: 0.57
|
|
11
|
-
- Repositories considered: 41
|
|
12
|
-
|
|
13
|
-
## Strongest Repositories For This Topic
|
|
14
|
-
- triggerdotdev/trigger.dev (production-saas) - focus score 7, total 32/45
|
|
15
|
-
- formbricks/formbricks (production-saas) - focus score 7, total 29/45
|
|
16
|
-
- shadcn-ui/ui (design-systems) - focus score 7, total 27/45
|
|
17
|
-
- dubinc/dub (production-saas) - focus score 7, total 27/45
|
|
18
|
-
- documenso/documenso (production-saas) - focus score 7, total 27/45
|
|
19
|
-
- boxyhq/saas-starter-kit (production-saas) - focus score 7, total 25/45
|
|
20
|
-
- nextify-limited/saasfly (production-saas) - focus score 7, total 20/45
|
|
21
|
-
- Blazity/next-saas-starter (production-saas) - focus score 7, total 16/45
|
|
22
|
-
- michaelshimeles/nextjs-starter-kit (production-saas) - focus score 7, total 15/45
|
|
23
|
-
- mui/base-ui (design-systems) - focus score 6, total 28/45
|
|
24
|
-
- carbon-design-system/carbon (design-systems) - focus score 6, total 27/45
|
|
25
|
-
- chakra-ui/zag (design-systems) - focus score 6, total 26/45
|
|
26
|
-
|
|
27
|
-
## Repeated Strengths
|
|
28
|
-
- Documentation is strong enough for external contributors or agents to onboard. (15)
|
|
29
|
-
- Frontend implementation shows reusable components, states, and design-system signals. (14)
|
|
30
|
-
- Security posture is explicit through docs, validation, CI, or review tooling. (11)
|
|
31
|
-
- Test setup includes meaningful automated and browser-level coverage. (9)
|
|
32
|
-
|
|
33
|
-
## Repeated Gaps
|
|
34
|
-
- Supabase RLS/Auth practices are not clearly discoverable. (41)
|
|
35
|
-
- Agent handoff and AI-workflow instructions are not mature. (26)
|
|
36
|
-
- Security expectations are implicit or incomplete. (22)
|
|
37
|
-
- Accessibility signals are weak or absent. (17)
|
|
38
|
-
|
|
39
|
-
## Source Findings
|
|
40
|
-
- research/findings/Blazity__next-saas-starter.md
|
|
41
|
-
- research/findings/boxyhq__saas-starter-kit.md
|
|
42
|
-
- research/findings/documenso__documenso.md
|
|
43
|
-
- research/findings/dubinc__dub.md
|
|
44
|
-
- research/findings/formbricks__formbricks.md
|
|
45
|
-
- research/findings/michaelshimeles__nextjs-starter-kit.md
|
|
46
|
-
- research/findings/nextify-limited__saasfly.md
|
|
47
|
-
- research/findings/shadcn-ui__ui.md
|
|
48
|
-
- research/findings/triggerdotdev__trigger.dev.md
|
|
49
|
-
- research/findings/Davronov-Alimardon__canva-clone.md
|
|
50
|
-
- research/findings/DouyinFE__semi-design.md
|
|
51
|
-
- research/findings/LubomirGeorgiev__cloudflare-workers-nextjs-saas-template.md
|
|
52
|
-
- research/findings/async-labs__saas.md
|
|
53
|
-
- research/findings/carbon-design-system__carbon.md
|
|
54
|
-
- research/findings/chakra-ui__ark.md
|
|
55
|
-
- research/findings/chakra-ui__zag.md
|
|
56
|
-
- research/findings/cloudscape-design__components.md
|
|
57
|
-
- research/findings/cosscom__coss.md
|
|
58
|
-
- research/findings/cossistantcom__cossistant.md
|
|
59
|
-
- research/findings/dodopayments__billingsdk.md
|
|
60
|
-
- research/findings/keyshade-xyz__keyshade.md
|
|
61
|
-
- research/findings/mui__base-ui.md
|
|
62
|
-
- research/findings/nextacular__nextacular.md
|
|
63
|
-
- research/findings/palantir__blueprint.md
|
|
64
|
-
- research/findings/primer__react.md
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
# Frontend Distinctiveness Benchmark Patterns
|
|
2
|
-
|
|
3
|
-
Generated after reviewing the frontend gap raised during public-readiness hardening: a broad repo scan can identify strong component and documentation patterns, but frontend quality still needs a product-specific acceptance benchmark.
|
|
4
|
-
|
|
5
|
-
## Why This Pass Was Needed
|
|
6
|
-
|
|
7
|
-
The 100-repo scan and focused follow-up reviews already promoted design tokens, component states, accessibility, visual QA, content-first design, reference-led critique, and a product-quality scorecard. That is better than a normal prompt bundle, but it still left one practical failure mode: a design could satisfy many checklist items while still feeling interchangeable with other AI-generated sites in the same category.
|
|
8
|
-
|
|
9
|
-
The fix is to require proof that the first screen, content, references, assets, states, and screenshots are specific to the product before accepting significant frontend work.
|
|
10
|
-
|
|
11
|
-
## Focused Sources Reviewed
|
|
12
|
-
|
|
13
|
-
- Primer React and Primer design guidance: product-context components, accessibility foundations, and reviewable pattern discipline.
|
|
14
|
-
- Shopify Polaris: product-specific admin patterns, content guidance, tokens, and stateful component guidance.
|
|
15
|
-
- GOV.UK Design System and service/content guidance: user-need-first design, task language, accessibility, and trust.
|
|
16
|
-
- Storybook documentation: component state review, interaction tests, accessibility checks, and visual testing evidence.
|
|
17
|
-
- Radix UI Primitives: accessible behavior foundations separated from product-specific styling.
|
|
18
|
-
- Carbon Design System and USWDS: standards-backed accessibility, state, and service-design expectations.
|
|
19
|
-
|
|
20
|
-
## Repeated Patterns To Adopt
|
|
21
|
-
|
|
22
|
-
- Components and tokens are foundations, not proof of product fit.
|
|
23
|
-
- The first viewport should expose the real product object, task, workflow, content, or decision.
|
|
24
|
-
- Product nouns, data shapes, actions, and edge cases should drive layout before styling.
|
|
25
|
-
- References should become named lessons and anti-references, not copied layouts or visual signatures.
|
|
26
|
-
- Asset provenance should be explicit so generated, licensed, placeholder, and real media are not blurred together.
|
|
27
|
-
- State evidence and visual QA should be tied to the product workflow, not only to isolated component polish.
|
|
28
|
-
|
|
29
|
-
## Promoted Updates
|
|
30
|
-
|
|
31
|
-
- Add Frontend Distinctiveness Benchmark skill.
|
|
32
|
-
- Add frontend-distinctiveness checklist and benchmark prompt.
|
|
33
|
-
- Update `DESIGN.md` with first-screen proof, content fingerprint, reference benchmark, asset provenance, state proof, and visual QA proof fields.
|
|
34
|
-
- Wire Frontend Design Lead and frontend-change workflow to require distinctiveness benchmark evidence.
|
|
35
|
-
- Add audit warnings when `DESIGN.md` lacks the distinctiveness benchmark.
|
|
36
|
-
- Add public-readiness tests for distinctiveness assets and routing.
|
|
37
|
-
|
|
38
|
-
Do not copy third-party source code, design files, protected visual identity, brand marks, proprietary layouts, exact copy, or visual signatures from reviewed repositories. Adopt generalized practices only.
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
# Frontend Product Quality Rubric Patterns
|
|
2
|
-
|
|
3
|
-
Generated from a focused follow-up review after the kit already had content-first design, reference-led critique, visual QA, and anti-generic UI guidance.
|
|
4
|
-
|
|
5
|
-
## Why This Pass Was Needed
|
|
6
|
-
|
|
7
|
-
The previous frontend hardening made generic AI-site output harder, but it still relied on qualitative review language. A best-practice setup needs a repeatable product-quality rubric so design agents, coding agents, and human reviewers can reject weak UI for the same reasons.
|
|
8
|
-
|
|
9
|
-
## Focused Sources Reviewed
|
|
10
|
-
|
|
11
|
-
- `primer/react` and Primer design guidance: accessible component foundations, product-context patterns, and reviewable design-system decisions.
|
|
12
|
-
- GOV.UK Design System and service/content guidance: user-need-first service design, accessibility, and task-oriented content.
|
|
13
|
-
- Storybook documentation: stateful component review, interaction tests, accessibility checks, and visual testing as review evidence.
|
|
14
|
-
- Shopify Polaris: product-specific admin interface foundations, content guidance, tokens, and component guidance.
|
|
15
|
-
- Radix UI Primitives: accessible, unstyled primitives that separate behavior foundations from product-specific visual direction.
|
|
16
|
-
- Carbon Design System: accessibility status, component guidance, and design-system quality expectations.
|
|
17
|
-
- USWDS: design principles that prioritize real user needs, accessibility, trust, and consistent interaction patterns.
|
|
18
|
-
|
|
19
|
-
## Repeated Patterns To Adopt
|
|
20
|
-
|
|
21
|
-
- Treat accessible primitives and components as the foundation, not the product's visual identity.
|
|
22
|
-
- Score UI against real user task, content specificity, information architecture, visual identity, states, accessibility, and safe reference use.
|
|
23
|
-
- Make first-screen specificity a hard gate: users should see the real product object, task, workflow, or content immediately.
|
|
24
|
-
- Require source-safety review whenever references influence layout, imagery, copy, or visual style.
|
|
25
|
-
- Keep desktop/mobile screenshots, state evidence, and visual QA tied to the scorecard verdict.
|
|
26
|
-
- Reject work when polished styling hides missing content, fake data, or generic category tropes.
|
|
27
|
-
|
|
28
|
-
## Promoted Updates
|
|
29
|
-
|
|
30
|
-
- Add Frontend Product Quality Rubric skill.
|
|
31
|
-
- Add frontend product-quality checklist and scorecard prompt.
|
|
32
|
-
- Update `DESIGN.md` with a product-quality scorecard and acceptance thresholds.
|
|
33
|
-
- Wire Frontend Design Lead and frontend-change workflow to require the scorecard.
|
|
34
|
-
- Add audit warnings when the scorecard is missing from `DESIGN.md`.
|
|
35
|
-
- Add public-readiness tests for rubric assets and routing.
|
|
36
|
-
|
|
37
|
-
Do not copy third-party source code, design files, protected visual identity, brand marks, proprietary layouts, or exact copy from reviewed repositories. Adopt generalized practices only.
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
# Maturity Model Patterns
|
|
2
|
-
|
|
3
|
-
Generated from a focused follow-up pass after the 100-repo scan showed that popularity and broad research volume do not prove best-practice readiness.
|
|
4
|
-
|
|
5
|
-
## Why This Pass Was Needed
|
|
6
|
-
|
|
7
|
-
The initial scan identified repeated gaps in Supabase/Auth/RLS discoverability, AI-agent handoff maturity, accessibility evidence, and explicit security expectations. Follow-up review of public production, repository-health, supply-chain, and visual-testing guidance showed that mature projects make quality evidence durable across docs, automation, release, and review settings.
|
|
8
|
-
|
|
9
|
-
## Generalized Practices
|
|
10
|
-
|
|
11
|
-
- Use an explicit maturity model instead of treating any green build as best-practice readiness.
|
|
12
|
-
- Separate baseline setup, strong team/agent delivery, and best-practice release evidence.
|
|
13
|
-
- Require evidence for council routing, architecture decisions, security boundaries, Supabase/RLS, frontend quality, accessibility, testing, deployment, and repository health.
|
|
14
|
-
- Treat research findings as inputs only; promote them into installed assets, audit checks, tests, release gates, or documented decisions before counting them as kit behavior.
|
|
15
|
-
- Keep production-readiness expectations broad enough to cover framework behavior, data access, user experience, security, observability, and release integrity.
|
|
16
|
-
- Keep repository operations visible through issue/PR templates, CODEOWNERS, dependency update automation, code scanning, dependency review, provenance expectations, support, conduct, and governance.
|
|
17
|
-
|
|
18
|
-
## Promoted Updates
|
|
19
|
-
|
|
20
|
-
- Added `templates/next-supabase/QUALITY_GATES.md`.
|
|
21
|
-
- Added `QUALITY_GATES.md` to installed root docs and manifest hashing.
|
|
22
|
-
- Added audit coverage for baseline, strong, best-practice, evidence, and multi-area maturity expectations.
|
|
23
|
-
- Added tests that warn when the maturity model is hollowed out.
|
|
24
|
-
- Added audit warnings when starter placeholders remain in evidence docs, so clean installation is not confused with completed project evidence.
|
|
25
|
-
- Added a minimum-readiness CLI gate so downstream projects can enforce baseline or best-practice thresholds in CI.
|
|
26
|
-
- Added an audit-report JSON Schema so downstream CI, dashboards, and repo-health tools can validate audit output shape.
|
|
27
|
-
- Updated public docs and roadmap to make best-practice readiness evidence-based rather than research-volume-based.
|
|
28
|
-
|
|
29
|
-
Do not copy source, policy wording, or brand systems from reviewed repositories or documentation. Adopt only generalized practices with clear rationale.
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
# Next.js Patterns
|
|
2
|
-
|
|
3
|
-
Generated from 39 relevant repository findings.
|
|
4
|
-
|
|
5
|
-
## Focus Areas
|
|
6
|
-
- architecture
|
|
7
|
-
- ciDeployment
|
|
8
|
-
- documentation
|
|
9
|
-
|
|
10
|
-
## Aggregate Evidence
|
|
11
|
-
- Average normalized focus score: 0.39
|
|
12
|
-
- Repositories considered: 39
|
|
13
|
-
|
|
14
|
-
## Strongest Repositories For This Topic
|
|
15
|
-
- vercel/next-forge (official-nextjs) - focus score 10, total 23/45
|
|
16
|
-
- triggerdotdev/trigger.dev (production-saas) - focus score 9, total 32/45
|
|
17
|
-
- keyshade-xyz/keyshade (production-saas) - focus score 9, total 25/45
|
|
18
|
-
- cossistantcom/cossistant (production-saas) - focus score 9, total 24/45
|
|
19
|
-
- vercel/chatbot (official-nextjs) - focus score 9, total 23/45
|
|
20
|
-
- vercel/next.js (official-nextjs) - focus score 8, total 30/45
|
|
21
|
-
- vercel/ai (official-nextjs) - focus score 8, total 29/45
|
|
22
|
-
- formbricks/formbricks (production-saas) - focus score 8, total 29/45
|
|
23
|
-
- boxyhq/saas-starter-kit (production-saas) - focus score 8, total 25/45
|
|
24
|
-
- nextacular/nextacular (production-saas) - focus score 8, total 23/45
|
|
25
|
-
- nextify-limited/saasfly (production-saas) - focus score 8, total 20/45
|
|
26
|
-
- dubinc/dub (production-saas) - focus score 7, total 27/45
|
|
27
|
-
|
|
28
|
-
## Repeated Strengths
|
|
29
|
-
- Frontend implementation shows reusable components, states, and design-system signals. (20)
|
|
30
|
-
- Security posture is explicit through docs, validation, CI, or review tooling. (12)
|
|
31
|
-
- Test setup includes meaningful automated and browser-level coverage. (11)
|
|
32
|
-
- Documentation is strong enough for external contributors or agents to onboard. (8)
|
|
33
|
-
|
|
34
|
-
## Repeated Gaps
|
|
35
|
-
- Supabase RLS/Auth practices are not clearly discoverable. (39)
|
|
36
|
-
- Agent handoff and AI-workflow instructions are not mature. (30)
|
|
37
|
-
- Accessibility signals are weak or absent. (26)
|
|
38
|
-
- Security expectations are implicit or incomplete. (23)
|
|
39
|
-
|
|
40
|
-
## Source Findings
|
|
41
|
-
- research/findings/vercel__next-forge.md
|
|
42
|
-
- research/findings/cossistantcom__cossistant.md
|
|
43
|
-
- research/findings/keyshade-xyz__keyshade.md
|
|
44
|
-
- research/findings/triggerdotdev__trigger.dev.md
|
|
45
|
-
- research/findings/vercel__chatbot.md
|
|
46
|
-
- research/findings/boxyhq__saas-starter-kit.md
|
|
47
|
-
- research/findings/formbricks__formbricks.md
|
|
48
|
-
- research/findings/nextacular__nextacular.md
|
|
49
|
-
- research/findings/nextify-limited__saasfly.md
|
|
50
|
-
- research/findings/vercel__ai.md
|
|
51
|
-
- research/findings/vercel__next.js.md
|
|
52
|
-
- research/findings/documenso__documenso.md
|
|
53
|
-
- research/findings/dodopayments__billingsdk.md
|
|
54
|
-
- research/findings/dubinc__dub.md
|
|
55
|
-
- research/findings/vercel__examples.md
|
|
56
|
-
- research/findings/zenstackhq__zenstack.md
|
|
57
|
-
- research/findings/Blazity__next-saas-starter.md
|
|
58
|
-
- research/findings/cruip__open-react-template.md
|
|
59
|
-
- research/findings/ixartz__SaaS-Boilerplate.md
|
|
60
|
-
- research/findings/michaelshimeles__nextjs-starter-kit.md
|
|
61
|
-
- research/findings/nextjs__saas-starter.md
|
|
62
|
-
- research/findings/revokslab__ShipFree.md
|
|
63
|
-
- research/findings/vercel__nextjs-postgres-nextauth-tailwindcss-template.md
|
|
64
|
-
- research/findings/vercel__platforms.md
|
|
65
|
-
- research/findings/vercel__swr.md
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
# Repo Health Patterns
|
|
2
|
-
|
|
3
|
-
Generated from a focused public OSS repository-health pass.
|
|
4
|
-
|
|
5
|
-
## Focused Sources Reviewed
|
|
6
|
-
|
|
7
|
-
- GitHub issue and pull request template documentation: issue forms belong in `.github/ISSUE_TEMPLATE`, and PR templates can live in `.github/pull_request_template.md`.
|
|
8
|
-
- GitHub CODEOWNERS documentation: `.github/CODEOWNERS` is the first location GitHub checks and supports automatic owner review requests.
|
|
9
|
-
- GitHub Dependabot documentation: `.github/dependabot.yml` configures npm and GitHub Actions update PRs.
|
|
10
|
-
- GitHub CodeQL documentation: JavaScript and TypeScript projects can run CodeQL through GitHub Actions.
|
|
11
|
-
- GitHub branch protection and environment documentation: required status checks, required reviews, environment reviewers, and deployment branch restrictions are repository settings that must be reviewed outside git.
|
|
12
|
-
- GitHub private vulnerability reporting documentation: public repositories can expose private vulnerability reporting through Security Advisories.
|
|
13
|
-
- High-signal OSS repos commonly expose structured contribution, security, release, and review workflows rather than relying on maintainer memory.
|
|
14
|
-
|
|
15
|
-
## Repeated Patterns To Adopt
|
|
16
|
-
|
|
17
|
-
- Use issue forms to collect enough evidence for maintainers to reproduce bugs and evaluate reusable feature proposals.
|
|
18
|
-
- Use a PR template that ties changes to scope, tests, docs, security, and release impact.
|
|
19
|
-
- Use CODEOWNERS for review ownership of source, templates, schemas, and workflows.
|
|
20
|
-
- Use Dependabot for npm and GitHub Actions updates.
|
|
21
|
-
- Use CodeQL or equivalent code scanning for JavaScript/TypeScript repositories.
|
|
22
|
-
- Publish support, conduct, and governance docs so contributor expectations are explicit.
|
|
23
|
-
- Keep required labels and PR labeler rules in the repo.
|
|
24
|
-
- Document branch protection, environment protection, security advisory, private vulnerability reporting, and label setup because those settings are not fully represented by package files.
|
|
25
|
-
|
|
26
|
-
## Promoted Updates
|
|
27
|
-
|
|
28
|
-
- Added `.github/ISSUE_TEMPLATE/config.yml`.
|
|
29
|
-
- Added bug, feature-request, and research-promotion issue forms.
|
|
30
|
-
- Added `.github/pull_request_template.md`.
|
|
31
|
-
- Added `.github/CODEOWNERS`.
|
|
32
|
-
- Added `.github/dependabot.yml`.
|
|
33
|
-
- Added `.github/labels.yml`.
|
|
34
|
-
- Added `.github/labeler.yml` and PR labeler workflow.
|
|
35
|
-
- Added `.github/workflows/codeql.yml`.
|
|
36
|
-
- Added `CODE_OF_CONDUCT.md`, `SUPPORT.md`, and `GOVERNANCE.md`.
|
|
37
|
-
- Added `REPOSITORY_SETTINGS.md`.
|
|
38
|
-
- Added repo-health public-readiness tests.
|
|
39
|
-
- Added repo-health scoring and discovery signals to the research scanner.
|
|
40
|
-
|
|
41
|
-
Research and repo examples are used only for generalized practices. Do not copy third-party source or project-specific policy wording.
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
# Research Scan Overview
|
|
2
|
-
|
|
3
|
-
Generated from 100 parsed repository findings.
|
|
4
|
-
|
|
5
|
-
## Category Coverage
|
|
6
|
-
- production-saas: 24
|
|
7
|
-
- design-systems: 17
|
|
8
|
-
- testing-docs-agents: 16
|
|
9
|
-
- official-nextjs: 15
|
|
10
|
-
- supabase-nextjs: 15
|
|
11
|
-
- security-quality: 13
|
|
12
|
-
|
|
13
|
-
## Highest Total Scores
|
|
14
|
-
- supabase/supabase (supabase-nextjs) - 35/45
|
|
15
|
-
- trycompai/comp (security-quality) - 33/45
|
|
16
|
-
- triggerdotdev/trigger.dev (production-saas) - 32/45
|
|
17
|
-
- onlook-dev/onlook (supabase-nextjs) - 31/45
|
|
18
|
-
- thedaviddias/llms-txt-hub (supabase-nextjs) - 31/45
|
|
19
|
-
- vercel/next.js (official-nextjs) - 30/45
|
|
20
|
-
- better-auth/better-auth (security-quality) - 30/45
|
|
21
|
-
- vercel/ai (official-nextjs) - 29/45
|
|
22
|
-
- formbricks/formbricks (production-saas) - 29/45
|
|
23
|
-
- thedaviddias/souls-directory (testing-docs-agents) - 29/45
|
|
24
|
-
- mui/base-ui (design-systems) - 28/45
|
|
25
|
-
- shadcn-ui/ui (design-systems) - 27/45
|
|
26
|
-
- dubinc/dub (production-saas) - 27/45
|
|
27
|
-
- documenso/documenso (production-saas) - 27/45
|
|
28
|
-
- carbon-design-system/carbon (design-systems) - 27/45
|
|
29
|
-
- unkeyed/unkey (security-quality) - 27/45
|
|
30
|
-
- nextauthjs/next-auth (security-quality) - 26/45
|
|
31
|
-
- midday-ai/midday (supabase-nextjs) - 26/45
|
|
32
|
-
- chakra-ui/zag (design-systems) - 26/45
|
|
33
|
-
- vercel/examples (official-nextjs) - 26/45
|
|
34
|
-
|
|
35
|
-
## Most Repeated Strengths
|
|
36
|
-
- Frontend implementation shows reusable components, states, and design-system signals. (42)
|
|
37
|
-
- Documentation is strong enough for external contributors or agents to onboard. (36)
|
|
38
|
-
- Security posture is explicit through docs, validation, CI, or review tooling. (29)
|
|
39
|
-
- Test setup includes meaningful automated and browser-level coverage. (27)
|
|
40
|
-
- Supabase authorization appears to be handled close to the data boundary. (6)
|
|
41
|
-
|
|
42
|
-
## Most Repeated Gaps
|
|
43
|
-
- Supabase RLS/Auth practices are not clearly discoverable. (88)
|
|
44
|
-
- Agent handoff and AI-workflow instructions are not mature. (66)
|
|
45
|
-
- Accessibility signals are weak or absent. (57)
|
|
46
|
-
- Security expectations are implicit or incomplete. (54)
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
# Security Patterns
|
|
2
|
-
|
|
3
|
-
Generated from 52 relevant repository findings.
|
|
4
|
-
|
|
5
|
-
## Focus Areas
|
|
6
|
-
- security
|
|
7
|
-
|
|
8
|
-
## Aggregate Evidence
|
|
9
|
-
- Average normalized focus score: 0.53
|
|
10
|
-
- Repositories considered: 52
|
|
11
|
-
|
|
12
|
-
## Strongest Repositories For This Topic
|
|
13
|
-
- trycompai/comp (security-quality) - focus score 5, total 33/45
|
|
14
|
-
- onlook-dev/onlook (supabase-nextjs) - focus score 5, total 31/45
|
|
15
|
-
- thedaviddias/llms-txt-hub (supabase-nextjs) - focus score 5, total 31/45
|
|
16
|
-
- better-auth/better-auth (security-quality) - focus score 5, total 30/45
|
|
17
|
-
- formbricks/formbricks (production-saas) - focus score 5, total 29/45
|
|
18
|
-
- dubinc/dub (production-saas) - focus score 5, total 27/45
|
|
19
|
-
- midday-ai/midday (supabase-nextjs) - focus score 5, total 26/45
|
|
20
|
-
- keyshade-xyz/keyshade (production-saas) - focus score 5, total 25/45
|
|
21
|
-
- cossistantcom/cossistant (production-saas) - focus score 5, total 24/45
|
|
22
|
-
- supabase/supabase (supabase-nextjs) - focus score 4, total 35/45
|
|
23
|
-
- triggerdotdev/trigger.dev (production-saas) - focus score 4, total 32/45
|
|
24
|
-
- documenso/documenso (production-saas) - focus score 4, total 27/45
|
|
25
|
-
|
|
26
|
-
## Repeated Strengths
|
|
27
|
-
- Frontend implementation shows reusable components, states, and design-system signals. (32)
|
|
28
|
-
- Security posture is explicit through docs, validation, CI, or review tooling. (20)
|
|
29
|
-
- Documentation is strong enough for external contributors or agents to onboard. (18)
|
|
30
|
-
- Test setup includes meaningful automated and browser-level coverage. (12)
|
|
31
|
-
- Supabase authorization appears to be handled close to the data boundary. (6)
|
|
32
|
-
|
|
33
|
-
## Repeated Gaps
|
|
34
|
-
- Supabase RLS/Auth practices are not clearly discoverable. (40)
|
|
35
|
-
- Agent handoff and AI-workflow instructions are not mature. (38)
|
|
36
|
-
- Accessibility signals are weak or absent. (31)
|
|
37
|
-
- Security expectations are implicit or incomplete. (25)
|
|
38
|
-
|
|
39
|
-
## Source Findings
|
|
40
|
-
- research/findings/better-auth__better-auth.md
|
|
41
|
-
- research/findings/cossistantcom__cossistant.md
|
|
42
|
-
- research/findings/dubinc__dub.md
|
|
43
|
-
- research/findings/formbricks__formbricks.md
|
|
44
|
-
- research/findings/keyshade-xyz__keyshade.md
|
|
45
|
-
- research/findings/midday-ai__midday.md
|
|
46
|
-
- research/findings/onlook-dev__onlook.md
|
|
47
|
-
- research/findings/thedaviddias__llms-txt-hub.md
|
|
48
|
-
- research/findings/trycompai__comp.md
|
|
49
|
-
- research/findings/403errors__repomind.md
|
|
50
|
-
- research/findings/arcjet__arcjet-js.md
|
|
51
|
-
- research/findings/aspen-cloud__triplit.md
|
|
52
|
-
- research/findings/documenso__documenso.md
|
|
53
|
-
- research/findings/jakejarvis__domainstack.io.md
|
|
54
|
-
- research/findings/nextacular__nextacular.md
|
|
55
|
-
- research/findings/nextauthjs__next-auth.md
|
|
56
|
-
- research/findings/supabase__supabase.md
|
|
57
|
-
- research/findings/triggerdotdev__trigger.dev.md
|
|
58
|
-
- research/findings/unkeyed__unkey.md
|
|
59
|
-
- research/findings/zenstackhq__zenstack.md
|
|
60
|
-
- research/findings/LubomirGeorgiev__cloudflare-workers-nextjs-saas-template.md
|
|
61
|
-
- research/findings/boxyhq__saas-starter-kit.md
|
|
62
|
-
- research/findings/dodopayments__billingsdk.md
|
|
63
|
-
- research/findings/ibelick__zola.md
|
|
64
|
-
- research/findings/nextify-limited__saasfly.md
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
# Supabase RLS Patterns
|
|
2
|
-
|
|
3
|
-
Generated from 15 relevant repository findings.
|
|
4
|
-
|
|
5
|
-
## Focus Areas
|
|
6
|
-
- supabaseAuthRls
|
|
7
|
-
|
|
8
|
-
## Aggregate Evidence
|
|
9
|
-
- Average normalized focus score: 0.65
|
|
10
|
-
- Repositories considered: 15
|
|
11
|
-
|
|
12
|
-
## Strongest Repositories For This Topic
|
|
13
|
-
- supabase/supabase (supabase-nextjs) - focus score 5, total 35/45
|
|
14
|
-
- srizzon/git-city (supabase-nextjs) - focus score 5, total 23/45
|
|
15
|
-
- firecrawl/open-scouts (supabase-nextjs) - focus score 5, total 23/45
|
|
16
|
-
- devtodollars/mvp-boilerplate (supabase-nextjs) - focus score 5, total 20/45
|
|
17
|
-
- supabase-community/nextjs-openai-doc-search (supabase-nextjs) - focus score 5, total 18/45
|
|
18
|
-
- onlook-dev/onlook (supabase-nextjs) - focus score 3, total 31/45
|
|
19
|
-
- ibelick/zola (supabase-nextjs) - focus score 3, total 21/45
|
|
20
|
-
- gokulkrishh/expense.fyi (supabase-nextjs) - focus score 3, total 19/45
|
|
21
|
-
- ShenSeanChen/launch-mvp-stripe-nextjs-supabase (supabase-nextjs) - focus score 3, total 18/45
|
|
22
|
-
- braydoncoyer/braydoncoyer.dev (supabase-nextjs) - focus score 3, total 16/45
|
|
23
|
-
- midday-ai/midday (supabase-nextjs) - focus score 2, total 26/45
|
|
24
|
-
- aspen-cloud/triplit (supabase-nextjs) - focus score 2, total 25/45
|
|
25
|
-
|
|
26
|
-
## Repeated Strengths
|
|
27
|
-
- Frontend implementation shows reusable components, states, and design-system signals. (10)
|
|
28
|
-
- Documentation is strong enough for external contributors or agents to onboard. (7)
|
|
29
|
-
- Security posture is explicit through docs, validation, CI, or review tooling. (5)
|
|
30
|
-
- Supabase authorization appears to be handled close to the data boundary. (5)
|
|
31
|
-
- Test setup includes meaningful automated and browser-level coverage. (3)
|
|
32
|
-
|
|
33
|
-
## Repeated Gaps
|
|
34
|
-
- Agent handoff and AI-workflow instructions are not mature. (11)
|
|
35
|
-
- Accessibility signals are weak or absent. (8)
|
|
36
|
-
- Security expectations are implicit or incomplete. (8)
|
|
37
|
-
- Supabase RLS/Auth practices are not clearly discoverable. (5)
|
|
38
|
-
|
|
39
|
-
## Source Findings
|
|
40
|
-
- research/findings/devtodollars__mvp-boilerplate.md
|
|
41
|
-
- research/findings/firecrawl__open-scouts.md
|
|
42
|
-
- research/findings/srizzon__git-city.md
|
|
43
|
-
- research/findings/supabase-community__nextjs-openai-doc-search.md
|
|
44
|
-
- research/findings/supabase__supabase.md
|
|
45
|
-
- research/findings/ShenSeanChen__launch-mvp-stripe-nextjs-supabase.md
|
|
46
|
-
- research/findings/braydoncoyer__braydoncoyer.dev.md
|
|
47
|
-
- research/findings/gokulkrishh__expense.fyi.md
|
|
48
|
-
- research/findings/ibelick__zola.md
|
|
49
|
-
- research/findings/onlook-dev__onlook.md
|
|
50
|
-
- research/findings/aspen-cloud__triplit.md
|
|
51
|
-
- research/findings/imbhargav5__nextbase-nextjs-supabase-starter.md
|
|
52
|
-
- research/findings/midday-ai__midday.md
|
|
53
|
-
- research/findings/supabase__auth-helpers.md
|
|
54
|
-
- research/findings/thedaviddias__llms-txt-hub.md
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
# Supply Chain Patterns
|
|
2
|
-
|
|
3
|
-
Generated from a focused public package supply-chain pass.
|
|
4
|
-
|
|
5
|
-
## Focused Sources Reviewed
|
|
6
|
-
|
|
7
|
-
- npm Trusted Publishing documentation: GitHub Actions OIDC can publish without long-lived automation tokens, and public trusted publishes generate provenance attestations automatically.
|
|
8
|
-
- npm provenance documentation: provenance links package artifacts to source and build instructions so consumers can verify origin.
|
|
9
|
-
- GitHub Dependency Review action documentation: pull requests that change dependencies can be checked for vulnerabilities and policy issues.
|
|
10
|
-
- OpenSSF Scorecard action documentation: repository security posture can be measured and published as code-scanning evidence.
|
|
11
|
-
- GitHub artifact attestation documentation: release evidence can bind an SBOM to a specific package artifact.
|
|
12
|
-
- GitHub workflow security patterns: least-privilege permissions, explicit concurrency, and non-persistent checkout credentials reduce accidental workflow risk.
|
|
13
|
-
|
|
14
|
-
## Repeated Patterns To Adopt
|
|
15
|
-
|
|
16
|
-
- Prefer OIDC Trusted Publishing over long-lived npm publish tokens.
|
|
17
|
-
- Document provenance expectations in package release docs.
|
|
18
|
-
- Add dependency review for pull requests that change dependency graphs.
|
|
19
|
-
- Add Scorecard or equivalent repository security posture checks.
|
|
20
|
-
- Keep CodeQL and dependency update automation active.
|
|
21
|
-
- Generate an SBOM for release artifacts and attest it against the exact artifact being published.
|
|
22
|
-
- Treat workflow edits as release-risk changes.
|
|
23
|
-
- Validate manual publish paths so accidental non-main publishes are not accepted.
|
|
24
|
-
|
|
25
|
-
## Promoted Updates
|
|
26
|
-
|
|
27
|
-
- Added `SUPPLY_CHAIN.md`.
|
|
28
|
-
- Added `.github/workflows/dependency-review.yml`.
|
|
29
|
-
- Added `.github/workflows/scorecard.yml`.
|
|
30
|
-
- Hardened workflow checkout with `persist-credentials: false`.
|
|
31
|
-
- Added workflow concurrency.
|
|
32
|
-
- Added manual publish ref validation for release workflow dispatches.
|
|
33
|
-
- Added lockfile-derived CycloneDX SBOM validation.
|
|
34
|
-
- Added release-workflow SBOM attestation for the exact npm tarball being published.
|
|
35
|
-
- Added supply-chain scanner score and research category.
|
|
36
|
-
- Added public-readiness tests for supply-chain files and release controls.
|
|
37
|
-
|
|
38
|
-
Do not treat provenance as a complete guarantee of safety. Provenance proves origin and workflow context; maintainers still need dependency review, workflow review, branch/environment controls, and post-publish verification.
|