@appsforgood/next-supabase-kit 0.2.1 → 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 +13 -0
- package/README.md +22 -548
- 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 -8219
- package/dist/index.js.map +1 -1
- package/examples/next-supabase-installed/.agent-kit/config.json +26 -0
- package/examples/next-supabase-installed/.agent-kit/manifest.json +78 -223
- 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 -45
- package/package.json +15 -42
- 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 -187
- package/GOVERNANCE.md +0 -45
- package/LOOP_CODING.md +0 -107
- package/MAINTAINER_RELEASE.md +0 -100
- package/REPOSITORY_SETTINGS.md +0 -81
- package/RESEARCH_CITATION_POLICY.md +0 -26
- package/SUPPLY_CHAIN.md +0 -56
- 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 -35
- 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 -49
- 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 -97
- 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 -91
|
@@ -1,405 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"summary": {
|
|
3
|
-
"pass": 71,
|
|
4
|
-
"warn": 5,
|
|
5
|
-
"fail": 0
|
|
6
|
-
},
|
|
7
|
-
"readiness": {
|
|
8
|
-
"level": "baseline-setup",
|
|
9
|
-
"summary": "Agent kit setup is valid, but project-specific evidence still needs to replace starter placeholders.",
|
|
10
|
-
"nextActions": [
|
|
11
|
-
"Answer product summary, audience, workflows, auth/tenant model, UI direction, value proposition, and quality target with agent-kit setup or by editing .agent-kit/project-context.json.",
|
|
12
|
-
"Run agent-kit init --activate cursor to generate council subagents from the roster.",
|
|
13
|
-
"Replace TBD adapter rows with date, owner, evidence, model-selection status, and known limitations for each active IDE.",
|
|
14
|
-
"Replace TBD/example rows with real project evidence, or document why an item is not applicable before claiming strong or best-practice maturity.",
|
|
15
|
-
"Add package.json with executable test, lint, and build scripts appropriate to the stack."
|
|
16
|
-
]
|
|
17
|
-
},
|
|
18
|
-
"findings": [
|
|
19
|
-
{
|
|
20
|
-
"level": "pass",
|
|
21
|
-
"area": "install",
|
|
22
|
-
"message": "Agent kit installed at version 0.2.1."
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
"level": "pass",
|
|
26
|
-
"area": "templates",
|
|
27
|
-
"message": "AGENTS.md matches the current bundled template."
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"level": "pass",
|
|
31
|
-
"area": "templates",
|
|
32
|
-
"message": "AGENT_ROSTER.md matches the current bundled template."
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"level": "pass",
|
|
36
|
-
"area": "templates",
|
|
37
|
-
"message": "ASSISTANT_ADAPTERS.md matches the current bundled template."
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
"level": "pass",
|
|
41
|
-
"area": "templates",
|
|
42
|
-
"message": "COUNCIL.md matches the current bundled template."
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"level": "pass",
|
|
46
|
-
"area": "templates",
|
|
47
|
-
"message": "SKILLS.md matches the current bundled template."
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
"level": "pass",
|
|
51
|
-
"area": "templates",
|
|
52
|
-
"message": "SPEC.md matches the current bundled template."
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
"level": "pass",
|
|
56
|
-
"area": "templates",
|
|
57
|
-
"message": "DECISIONS.md matches the current bundled template."
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
"level": "pass",
|
|
61
|
-
"area": "templates",
|
|
62
|
-
"message": "DOCS.md matches the current bundled template."
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
"level": "pass",
|
|
66
|
-
"area": "templates",
|
|
67
|
-
"message": "DESIGN.md matches the current bundled template."
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
"level": "pass",
|
|
71
|
-
"area": "templates",
|
|
72
|
-
"message": "MESSAGING.md matches the current bundled template."
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
"level": "pass",
|
|
76
|
-
"area": "templates",
|
|
77
|
-
"message": "MODEL_ROUTING.md matches the current bundled template."
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
"level": "pass",
|
|
81
|
-
"area": "templates",
|
|
82
|
-
"message": "QUALITY_GATES.md matches the current bundled template."
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
"level": "pass",
|
|
86
|
-
"area": "templates",
|
|
87
|
-
"message": "STYLE_GUIDE.md matches the current bundled template."
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
"level": "pass",
|
|
91
|
-
"area": "templates",
|
|
92
|
-
"message": "SECURITY.md matches the current bundled template."
|
|
93
|
-
},
|
|
94
|
-
{
|
|
95
|
-
"level": "pass",
|
|
96
|
-
"area": "templates",
|
|
97
|
-
"message": "TESTING.md matches the current bundled template."
|
|
98
|
-
},
|
|
99
|
-
{
|
|
100
|
-
"level": "pass",
|
|
101
|
-
"area": "templates",
|
|
102
|
-
"message": "LOOP_CODING.md matches the current bundled template."
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
"level": "pass",
|
|
106
|
-
"area": "templates",
|
|
107
|
-
"message": "DEPLOYMENT.md matches the current bundled template."
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
"level": "pass",
|
|
111
|
-
"area": "templates",
|
|
112
|
-
"message": "UPGRADE.md matches the current bundled template."
|
|
113
|
-
},
|
|
114
|
-
{
|
|
115
|
-
"level": "pass",
|
|
116
|
-
"area": "agents",
|
|
117
|
-
"message": "Agent roster matches the schema-backed runtime contract."
|
|
118
|
-
},
|
|
119
|
-
{
|
|
120
|
-
"level": "pass",
|
|
121
|
-
"area": "agents",
|
|
122
|
-
"message": "Agent roster contains the required default council agents."
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
"level": "pass",
|
|
126
|
-
"area": "agents",
|
|
127
|
-
"message": "Agent roster maps default agents to required skills."
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
"level": "pass",
|
|
131
|
-
"area": "agents",
|
|
132
|
-
"message": "Core-change workflow requires architect-led council handoff."
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
"level": "pass",
|
|
136
|
-
"area": "agents",
|
|
137
|
-
"message": "Frontend-change workflow requires content-first design, reference-led critique, distinctiveness benchmarking, product-quality scoring, and creative-direction evidence."
|
|
138
|
-
},
|
|
139
|
-
{
|
|
140
|
-
"level": "pass",
|
|
141
|
-
"area": "agents",
|
|
142
|
-
"message": "Marketing-copy workflow requires question-led positioning, value proposition, proof, objections, voice, and conversion evidence."
|
|
143
|
-
},
|
|
144
|
-
{
|
|
145
|
-
"level": "pass",
|
|
146
|
-
"area": "agents",
|
|
147
|
-
"message": "Agent roster requires auditable handoff evidence."
|
|
148
|
-
},
|
|
149
|
-
{
|
|
150
|
-
"level": "pass",
|
|
151
|
-
"area": "agents",
|
|
152
|
-
"message": ".agent-kit/schemas/agent-roster.schema.json is present and parseable."
|
|
153
|
-
},
|
|
154
|
-
{
|
|
155
|
-
"level": "pass",
|
|
156
|
-
"area": "agents",
|
|
157
|
-
"message": ".agent-kit/schemas/council-session.schema.json is present and parseable."
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
"level": "pass",
|
|
161
|
-
"area": "agents",
|
|
162
|
-
"message": ".agent-kit/schemas/audit-report.schema.json is present and parseable."
|
|
163
|
-
},
|
|
164
|
-
{
|
|
165
|
-
"level": "pass",
|
|
166
|
-
"area": "agents",
|
|
167
|
-
"message": ".agent-kit/schemas/audit-report-v2.schema.json is present and parseable."
|
|
168
|
-
},
|
|
169
|
-
{
|
|
170
|
-
"level": "pass",
|
|
171
|
-
"area": "agents",
|
|
172
|
-
"message": ".agent-kit/schemas/model-routing.schema.json is present and parseable."
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
"level": "pass",
|
|
176
|
-
"area": "agents",
|
|
177
|
-
"message": ".agent-kit/schemas/project-context.schema.json is present and parseable."
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
"level": "pass",
|
|
181
|
-
"area": "agents",
|
|
182
|
-
"message": ".agent-kit/schemas/correction-rules.schema.json is present and parseable."
|
|
183
|
-
},
|
|
184
|
-
{
|
|
185
|
-
"level": "pass",
|
|
186
|
-
"area": "agents",
|
|
187
|
-
"message": ".agent-kit/schemas/session-event.schema.json is present and parseable."
|
|
188
|
-
},
|
|
189
|
-
{
|
|
190
|
-
"level": "pass",
|
|
191
|
-
"area": "agents",
|
|
192
|
-
"message": ".agent-kit/schemas/studio-session.schema.json is present and parseable."
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
"level": "pass",
|
|
196
|
-
"area": "agents",
|
|
197
|
-
"message": ".agent-kit/schemas/onboarding-state.schema.json is present and parseable."
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
"level": "pass",
|
|
201
|
-
"area": "agents",
|
|
202
|
-
"message": ".agent-kit/schemas/agentic-level.schema.json is present and parseable."
|
|
203
|
-
},
|
|
204
|
-
{
|
|
205
|
-
"level": "pass",
|
|
206
|
-
"area": "agents",
|
|
207
|
-
"message": ".agent-kit/schemas/orchestrator.schema.json is present and parseable."
|
|
208
|
-
},
|
|
209
|
-
{
|
|
210
|
-
"level": "pass",
|
|
211
|
-
"area": "agents",
|
|
212
|
-
"message": ".agent-kit/schemas/runtime-run.schema.json is present and parseable."
|
|
213
|
-
},
|
|
214
|
-
{
|
|
215
|
-
"level": "pass",
|
|
216
|
-
"area": "agents",
|
|
217
|
-
"message": ".agent-kit/schemas/runtime-event.schema.json is present and parseable."
|
|
218
|
-
},
|
|
219
|
-
{
|
|
220
|
-
"level": "pass",
|
|
221
|
-
"area": "orchestrator",
|
|
222
|
-
"message": ".agent-kit/orchestrator.json is valid and disabled by default."
|
|
223
|
-
},
|
|
224
|
-
{
|
|
225
|
-
"level": "warn",
|
|
226
|
-
"area": "studio",
|
|
227
|
-
"message": ".agent-kit/project-context.json is valid but still missing high-value project context.",
|
|
228
|
-
"remediation": "Answer product summary, audience, workflows, auth/tenant model, UI direction, value proposition, and quality target with agent-kit setup or by editing .agent-kit/project-context.json."
|
|
229
|
-
},
|
|
230
|
-
{
|
|
231
|
-
"level": "pass",
|
|
232
|
-
"area": "docs",
|
|
233
|
-
"message": "AGENTS.md exists."
|
|
234
|
-
},
|
|
235
|
-
{
|
|
236
|
-
"level": "pass",
|
|
237
|
-
"area": "docs",
|
|
238
|
-
"message": "AGENT_ROSTER.md exists."
|
|
239
|
-
},
|
|
240
|
-
{
|
|
241
|
-
"level": "pass",
|
|
242
|
-
"area": "docs",
|
|
243
|
-
"message": "ASSISTANT_ADAPTERS.md exists."
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
"level": "pass",
|
|
247
|
-
"area": "docs",
|
|
248
|
-
"message": "COUNCIL.md exists."
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
"level": "pass",
|
|
252
|
-
"area": "docs",
|
|
253
|
-
"message": "SKILLS.md exists."
|
|
254
|
-
},
|
|
255
|
-
{
|
|
256
|
-
"level": "pass",
|
|
257
|
-
"area": "docs",
|
|
258
|
-
"message": "SPEC.md exists."
|
|
259
|
-
},
|
|
260
|
-
{
|
|
261
|
-
"level": "pass",
|
|
262
|
-
"area": "docs",
|
|
263
|
-
"message": "DECISIONS.md exists."
|
|
264
|
-
},
|
|
265
|
-
{
|
|
266
|
-
"level": "pass",
|
|
267
|
-
"area": "docs",
|
|
268
|
-
"message": "DOCS.md exists."
|
|
269
|
-
},
|
|
270
|
-
{
|
|
271
|
-
"level": "pass",
|
|
272
|
-
"area": "docs",
|
|
273
|
-
"message": "DESIGN.md exists."
|
|
274
|
-
},
|
|
275
|
-
{
|
|
276
|
-
"level": "pass",
|
|
277
|
-
"area": "docs",
|
|
278
|
-
"message": "MESSAGING.md exists."
|
|
279
|
-
},
|
|
280
|
-
{
|
|
281
|
-
"level": "pass",
|
|
282
|
-
"area": "docs",
|
|
283
|
-
"message": "MODEL_ROUTING.md exists."
|
|
284
|
-
},
|
|
285
|
-
{
|
|
286
|
-
"level": "pass",
|
|
287
|
-
"area": "docs",
|
|
288
|
-
"message": "QUALITY_GATES.md exists."
|
|
289
|
-
},
|
|
290
|
-
{
|
|
291
|
-
"level": "pass",
|
|
292
|
-
"area": "docs",
|
|
293
|
-
"message": "STYLE_GUIDE.md exists."
|
|
294
|
-
},
|
|
295
|
-
{
|
|
296
|
-
"level": "pass",
|
|
297
|
-
"area": "docs",
|
|
298
|
-
"message": "SECURITY.md exists."
|
|
299
|
-
},
|
|
300
|
-
{
|
|
301
|
-
"level": "pass",
|
|
302
|
-
"area": "docs",
|
|
303
|
-
"message": "TESTING.md exists."
|
|
304
|
-
},
|
|
305
|
-
{
|
|
306
|
-
"level": "pass",
|
|
307
|
-
"area": "docs",
|
|
308
|
-
"message": "LOOP_CODING.md exists."
|
|
309
|
-
},
|
|
310
|
-
{
|
|
311
|
-
"level": "pass",
|
|
312
|
-
"area": "docs",
|
|
313
|
-
"message": "DEPLOYMENT.md exists."
|
|
314
|
-
},
|
|
315
|
-
{
|
|
316
|
-
"level": "pass",
|
|
317
|
-
"area": "docs",
|
|
318
|
-
"message": "UPGRADE.md exists."
|
|
319
|
-
},
|
|
320
|
-
{
|
|
321
|
-
"level": "pass",
|
|
322
|
-
"area": "agents",
|
|
323
|
-
"message": "COUNCIL.md defines council-session handoff evidence."
|
|
324
|
-
},
|
|
325
|
-
{
|
|
326
|
-
"level": "pass",
|
|
327
|
-
"area": "agents",
|
|
328
|
-
"message": ".agent-kit/assistant-adapters is installed."
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
"level": "pass",
|
|
332
|
-
"area": "agents",
|
|
333
|
-
"message": "ASSISTANT_ADAPTERS.md maps the council roster to tool-specific instruction surfaces."
|
|
334
|
-
},
|
|
335
|
-
{
|
|
336
|
-
"level": "warn",
|
|
337
|
-
"area": "agents",
|
|
338
|
-
"message": "Cursor is marked Active but .cursor/agents/planner.md is missing.",
|
|
339
|
-
"remediation": "Run agent-kit init --activate cursor to generate council subagents from the roster."
|
|
340
|
-
},
|
|
341
|
-
{
|
|
342
|
-
"level": "warn",
|
|
343
|
-
"area": "models",
|
|
344
|
-
"message": "ASSISTANT_ADAPTERS.md still has unverified tool-surface rows.",
|
|
345
|
-
"remediation": "Replace TBD adapter rows with date, owner, evidence, model-selection status, and known limitations for each active IDE."
|
|
346
|
-
},
|
|
347
|
-
{
|
|
348
|
-
"level": "pass",
|
|
349
|
-
"area": "models",
|
|
350
|
-
"message": "MODEL_ROUTING.md documents agent model profiles and IDE enforcement limits."
|
|
351
|
-
},
|
|
352
|
-
{
|
|
353
|
-
"level": "pass",
|
|
354
|
-
"area": "models",
|
|
355
|
-
"message": "Model routing matches the schema-backed runtime contract."
|
|
356
|
-
},
|
|
357
|
-
{
|
|
358
|
-
"level": "pass",
|
|
359
|
-
"area": "models",
|
|
360
|
-
"message": "Model routing maps every default council agent to a profile."
|
|
361
|
-
},
|
|
362
|
-
{
|
|
363
|
-
"level": "pass",
|
|
364
|
-
"area": "messaging",
|
|
365
|
-
"message": "MESSAGING.md captures question-led positioning and value-proposition inputs."
|
|
366
|
-
},
|
|
367
|
-
{
|
|
368
|
-
"level": "pass",
|
|
369
|
-
"area": "messaging",
|
|
370
|
-
"message": "MESSAGING.md connects claims, proof, objections, and CTA hierarchy."
|
|
371
|
-
},
|
|
372
|
-
{
|
|
373
|
-
"level": "pass",
|
|
374
|
-
"area": "quality",
|
|
375
|
-
"message": "QUALITY_GATES.md defines a multi-area best-practice maturity model."
|
|
376
|
-
},
|
|
377
|
-
{
|
|
378
|
-
"level": "pass",
|
|
379
|
-
"area": "upgrade",
|
|
380
|
-
"message": "UPGRADE.md defines a reviewable upgrade, migration, audit, and rollback lifecycle."
|
|
381
|
-
},
|
|
382
|
-
{
|
|
383
|
-
"level": "warn",
|
|
384
|
-
"area": "evidence",
|
|
385
|
-
"message": "Project evidence docs still contain starter placeholders: COUNCIL.md, SPEC.md, DESIGN.md, MESSAGING.md, SECURITY.md, DEPLOYMENT.md, ASSISTANT_ADAPTERS.md, UPGRADE.md.",
|
|
386
|
-
"remediation": "Replace TBD/example rows with real project evidence, or document why an item is not applicable before claiming strong or best-practice maturity."
|
|
387
|
-
},
|
|
388
|
-
{
|
|
389
|
-
"level": "warn",
|
|
390
|
-
"area": "project-reality",
|
|
391
|
-
"message": "No package.json found to verify test scripts.",
|
|
392
|
-
"remediation": "Add package.json with executable test, lint, and build scripts appropriate to the stack."
|
|
393
|
-
},
|
|
394
|
-
{
|
|
395
|
-
"level": "pass",
|
|
396
|
-
"area": "project-reality",
|
|
397
|
-
"message": "No obvious secret patterns detected in workspace files."
|
|
398
|
-
},
|
|
399
|
-
{
|
|
400
|
-
"level": "pass",
|
|
401
|
-
"area": "project-reality",
|
|
402
|
-
"message": ".agent-kit/project-context.json exists."
|
|
403
|
-
}
|
|
404
|
-
]
|
|
405
|
-
}
|
|
@@ -1,171 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"schemaVersion": 1,
|
|
3
|
-
"id": "next-supabase-default-model-routing",
|
|
4
|
-
"stack": "next-supabase",
|
|
5
|
-
"reviewedAt": "2026-06-03",
|
|
6
|
-
"reviewCadence": "Review quarterly or whenever the active IDE/model provider changes model availability.",
|
|
7
|
-
"principle": "Select model depth by agent responsibility. Keep role behavior in the roster and skills; keep tool-specific model names in dated adapter setup notes.",
|
|
8
|
-
"profiles": [
|
|
9
|
-
{
|
|
10
|
-
"id": "fast-targeted",
|
|
11
|
-
"label": "Fast Targeted",
|
|
12
|
-
"intent": "Use for narrow edits, doc cleanup, simple command interpretation, and low-risk repeated checks.",
|
|
13
|
-
"reasoningEffort": "low",
|
|
14
|
-
"contextWindow": "medium",
|
|
15
|
-
"latency": "low",
|
|
16
|
-
"cost": "low",
|
|
17
|
-
"preferredFor": ["docs-maintainer", "deployment-observability-engineer"]
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
"id": "balanced-reasoning",
|
|
21
|
-
"label": "Balanced Reasoning",
|
|
22
|
-
"intent": "Use for planning, normal implementation, review synthesis, and tasks where speed and judgment both matter.",
|
|
23
|
-
"reasoningEffort": "medium",
|
|
24
|
-
"contextWindow": "large",
|
|
25
|
-
"latency": "medium",
|
|
26
|
-
"cost": "medium",
|
|
27
|
-
"preferredFor": ["planner", "nextjs-engineer", "qa-engineer"]
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"id": "coding-large-context",
|
|
31
|
-
"label": "Coding Large Context",
|
|
32
|
-
"intent": "Use for multi-file Next.js implementation, Server Component boundaries, form flows, and repo-wide code changes.",
|
|
33
|
-
"reasoningEffort": "medium",
|
|
34
|
-
"contextWindow": "large",
|
|
35
|
-
"latency": "medium",
|
|
36
|
-
"cost": "medium",
|
|
37
|
-
"preferredFor": ["nextjs-engineer"]
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
"id": "deep-reasoning-large-context",
|
|
41
|
-
"label": "Deep Reasoning Large Context",
|
|
42
|
-
"intent": "Use for architecture, cross-layer changes, migrations, security-sensitive work, and ambiguous decisions with high blast radius.",
|
|
43
|
-
"reasoningEffort": "high",
|
|
44
|
-
"contextWindow": "very-large",
|
|
45
|
-
"latency": "high",
|
|
46
|
-
"cost": "high",
|
|
47
|
-
"preferredFor": ["lead-architect", "security-reviewer", "supabase-postgres-engineer"]
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
"id": "creative-vision-large-context",
|
|
51
|
-
"label": "Creative Vision Large Context",
|
|
52
|
-
"intent": "Use for frontend creative direction, screenshot critique, content-first design, distinctiveness benchmarking, and product-quality review.",
|
|
53
|
-
"reasoningEffort": "high",
|
|
54
|
-
"contextWindow": "large",
|
|
55
|
-
"latency": "medium",
|
|
56
|
-
"cost": "medium",
|
|
57
|
-
"preferredFor": ["frontend-design-lead", "marketing-copy-lead"]
|
|
58
|
-
}
|
|
59
|
-
],
|
|
60
|
-
"agentRoutes": [
|
|
61
|
-
{
|
|
62
|
-
"agentId": "planner",
|
|
63
|
-
"profileId": "balanced-reasoning",
|
|
64
|
-
"defaultEffort": "medium",
|
|
65
|
-
"escalationProfileId": "deep-reasoning-large-context",
|
|
66
|
-
"notes": "Escalate when the plan changes architecture, auth, data model, release workflow, or public package behavior."
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"agentId": "lead-architect",
|
|
70
|
-
"profileId": "deep-reasoning-large-context",
|
|
71
|
-
"defaultEffort": "high",
|
|
72
|
-
"notes": "Use for core-change council review and cross-layer decisions."
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
"agentId": "supabase-postgres-engineer",
|
|
76
|
-
"profileId": "deep-reasoning-large-context",
|
|
77
|
-
"defaultEffort": "high",
|
|
78
|
-
"notes": "Use high reasoning for schema, RLS, migration ordering, rollback, and authorization boundaries."
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
"agentId": "nextjs-engineer",
|
|
82
|
-
"profileId": "coding-large-context",
|
|
83
|
-
"defaultEffort": "medium",
|
|
84
|
-
"escalationProfileId": "deep-reasoning-large-context",
|
|
85
|
-
"notes": "Escalate when server/client boundaries, caching, auth, or data mutation behavior is uncertain."
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
"agentId": "frontend-design-lead",
|
|
89
|
-
"profileId": "creative-vision-large-context",
|
|
90
|
-
"defaultEffort": "high",
|
|
91
|
-
"notes": "Use with screenshots, reference sets, content inventory, and product-specific design evidence."
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
"agentId": "marketing-copy-lead",
|
|
95
|
-
"profileId": "creative-vision-large-context",
|
|
96
|
-
"defaultEffort": "high",
|
|
97
|
-
"escalationProfileId": "deep-reasoning-large-context",
|
|
98
|
-
"notes": "Use for positioning, value proposition, conversion copy, voice/tone, proof review, and public-facing copy handoff."
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
"agentId": "security-reviewer",
|
|
102
|
-
"profileId": "deep-reasoning-large-context",
|
|
103
|
-
"defaultEffort": "high",
|
|
104
|
-
"notes": "Use high reasoning for OWASP, IDOR, SSRF, injection, broken auth, dependency, secret, and release-risk review."
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
"agentId": "qa-engineer",
|
|
108
|
-
"profileId": "balanced-reasoning",
|
|
109
|
-
"defaultEffort": "medium",
|
|
110
|
-
"escalationProfileId": "deep-reasoning-large-context",
|
|
111
|
-
"notes": "Escalate for flaky tests, concurrency, auth flows, visual regression, or hard-to-reproduce bugs."
|
|
112
|
-
},
|
|
113
|
-
{
|
|
114
|
-
"agentId": "docs-maintainer",
|
|
115
|
-
"profileId": "fast-targeted",
|
|
116
|
-
"defaultEffort": "low",
|
|
117
|
-
"escalationProfileId": "balanced-reasoning",
|
|
118
|
-
"notes": "Use balanced reasoning when docs encode decisions, migration order, or security-sensitive setup."
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
"agentId": "deployment-observability-engineer",
|
|
122
|
-
"profileId": "fast-targeted",
|
|
123
|
-
"defaultEffort": "low",
|
|
124
|
-
"escalationProfileId": "balanced-reasoning",
|
|
125
|
-
"notes": "Escalate for release gates, rollback paths, env var review, logs, or production incidents."
|
|
126
|
-
}
|
|
127
|
-
],
|
|
128
|
-
"toolSurfaces": [
|
|
129
|
-
{
|
|
130
|
-
"tool": "Codex",
|
|
131
|
-
"instructionSurface": "AGENTS.md, .codex/config.toml, and optional .codex/agents/*.toml custom agents",
|
|
132
|
-
"modelSelection": "Default model in config.toml, temporary /model or --model selection, and optional custom-agent model/model_reasoning_effort fields",
|
|
133
|
-
"enforcement": "partial",
|
|
134
|
-
"adapter": ".agent-kit/assistant-adapters/model-selection/codex-config.example.toml"
|
|
135
|
-
},
|
|
136
|
-
{
|
|
137
|
-
"tool": "Claude Code",
|
|
138
|
-
"instructionSurface": "CLAUDE.md and .claude/agents/*.md project subagents",
|
|
139
|
-
"modelSelection": "Subagent frontmatter can document or select model where supported by the installed Claude Code version",
|
|
140
|
-
"enforcement": "partial",
|
|
141
|
-
"adapter": ".agent-kit/assistant-adapters/model-selection/claude-code-subagents-with-models.md"
|
|
142
|
-
},
|
|
143
|
-
{
|
|
144
|
-
"tool": "Cursor",
|
|
145
|
-
"instructionSurface": ".cursor/rules/*.mdc",
|
|
146
|
-
"modelSelection": "Use Cursor model picker or team setting; project rules advise which profile to pick but do not force the picker",
|
|
147
|
-
"enforcement": "advisory",
|
|
148
|
-
"adapter": ".agent-kit/assistant-adapters/model-selection/cursor-model-selection.mdc"
|
|
149
|
-
},
|
|
150
|
-
{
|
|
151
|
-
"tool": "GitHub Copilot",
|
|
152
|
-
"instructionSurface": ".github/copilot-instructions.md and .github/instructions/*.instructions.md",
|
|
153
|
-
"modelSelection": "Use Copilot chat or coding-agent model selection where available; repo instructions advise but do not force model selection",
|
|
154
|
-
"enforcement": "advisory",
|
|
155
|
-
"adapter": ".agent-kit/assistant-adapters/model-selection/github-copilot-model-selection.md"
|
|
156
|
-
},
|
|
157
|
-
{
|
|
158
|
-
"tool": "Antigravity",
|
|
159
|
-
"instructionSurface": ".antigravity/agent-kit/plugin.json, .antigravity/agent-kit/commands/*.toml, and .antigravity/runtime-skills/*/SKILL.md",
|
|
160
|
-
"modelSelection": "Use Antigravity runtime or workspace model controls where available; native commands advise Agent Kit model profiles but do not force provider selection",
|
|
161
|
-
"enforcement": "advisory",
|
|
162
|
-
"adapter": ".agent-kit/assistant-adapters/antigravity.md"
|
|
163
|
-
}
|
|
164
|
-
],
|
|
165
|
-
"updatePolicy": [
|
|
166
|
-
"Treat model names as dated recommendations, not permanent product truth.",
|
|
167
|
-
"Do not store API keys, tokens, billing data, or private model entitlement notes in model-routing files.",
|
|
168
|
-
"When model availability changes, update adapter examples, MODEL_ROUTING.md, DECISIONS.md, and audit tests in the same change.",
|
|
169
|
-
"If an IDE cannot enforce per-agent model choice, record that limitation in ASSISTANT_ADAPTERS.md instead of pretending the package can force it."
|
|
170
|
-
]
|
|
171
|
-
}
|
package/profiles/admin-app.md
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# Admin App Compatibility Profile
|
|
2
|
-
|
|
3
|
-
Use for internal operations consoles, support tools, moderation systems, and analytics back offices.
|
|
4
|
-
|
|
5
|
-
## Required Emphasis
|
|
6
|
-
|
|
7
|
-
- Least-privilege admin access, audit logs, impersonation controls, and destructive-action review.
|
|
8
|
-
- RLS and server-side authorization for admin-only data and actions.
|
|
9
|
-
- Clear stale-data, partial-data, rate-limit, and permission-denied states.
|
|
10
|
-
- Smoke tests for admin login, core queue processing, audit logging, and access control.
|
|
11
|
-
|
|
12
|
-
## Agent Handoff
|
|
13
|
-
|
|
14
|
-
- Architect owns admin boundaries and workflow invariants.
|
|
15
|
-
- Supabase/Postgres engineer owns policy bypass strategy, audit tables, and queue schema.
|
|
16
|
-
- Security reviewer owns privilege escalation, logging integrity, service-role use, and secrets.
|
|
17
|
-
- Frontend design lead owns dense scanning, filters, bulk actions, and safe destructive flows.
|
package/profiles/content-app.md
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# Content App Compatibility Profile
|
|
2
|
-
|
|
3
|
-
Use for publishing systems, editorial workflows, knowledge bases, newsletters, and media apps.
|
|
4
|
-
|
|
5
|
-
## Required Emphasis
|
|
6
|
-
|
|
7
|
-
- Content lifecycle, author/editor roles, source attribution, publishing permissions, and moderation.
|
|
8
|
-
- RLS policies for drafts, private notes, scheduled content, and editorial-only metadata.
|
|
9
|
-
- Empty, unavailable-source, failed-import, scheduled, published, and archived states.
|
|
10
|
-
- Smoke tests for content creation, review, publish, rollback, and reader access.
|
|
11
|
-
|
|
12
|
-
## Agent Handoff
|
|
13
|
-
|
|
14
|
-
- Architect owns content model, lifecycle, and public/private boundaries.
|
|
15
|
-
- Supabase/Postgres engineer owns versioning, indexing, search, and RLS policies.
|
|
16
|
-
- Security reviewer owns stored content safety, upload handling, SSRF, and admin boundaries.
|
|
17
|
-
- Frontend design lead owns reading rhythm, editorial status, attribution, and mobile presentation.
|
package/profiles/marketplace.md
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# Marketplace Compatibility Profile
|
|
2
|
-
|
|
3
|
-
Use for buyer/seller products, listings, bookings, services, and transaction workflows.
|
|
4
|
-
|
|
5
|
-
## Required Emphasis
|
|
6
|
-
|
|
7
|
-
- Role separation for buyer, seller, admin, and support staff.
|
|
8
|
-
- Listing ownership, transaction authorization, disputes, fraud controls, and moderation.
|
|
9
|
-
- RLS policies for private messages, offers, orders, payments, and seller-only data.
|
|
10
|
-
- Smoke tests for search, listing creation, inquiry/order flow, and role-specific access.
|
|
11
|
-
|
|
12
|
-
## Agent Handoff
|
|
13
|
-
|
|
14
|
-
- Architect owns role model and transaction lifecycle.
|
|
15
|
-
- Supabase/Postgres engineer owns listing, order, message, and policy design.
|
|
16
|
-
- Security reviewer owns IDOR, file upload, payment/webhook validation, and abuse paths.
|
|
17
|
-
- Frontend design lead owns comparison UX, trust signals, availability states, and mobile search.
|
package/profiles/saas.md
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# SaaS Compatibility Profile
|
|
2
|
-
|
|
3
|
-
Use for subscription products, team workspaces, and account-based apps.
|
|
4
|
-
|
|
5
|
-
## Required Emphasis
|
|
6
|
-
|
|
7
|
-
- Tenant isolation, role-based access, team membership, billing state, and usage limits.
|
|
8
|
-
- RLS policies for tenant-owned data and user-owned preferences.
|
|
9
|
-
- Trial, upgrade, downgrade, cancellation, and past-due UX.
|
|
10
|
-
- Smoke tests for signup, login, workspace creation, billing gates, and primary workflow.
|
|
11
|
-
|
|
12
|
-
## Agent Handoff
|
|
13
|
-
|
|
14
|
-
- Architect owns tenant boundaries and subscription model.
|
|
15
|
-
- Supabase/Postgres engineer owns membership schema, RLS, migrations, and seed data.
|
|
16
|
-
- Security reviewer owns IDOR, service-role isolation, webhook validation, and dependency exposure.
|
|
17
|
-
- Frontend design lead owns density, state coverage, and non-generic product surfaces.
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# Stack Profile: Next.js And Firebase
|
|
2
|
-
|
|
3
|
-
Use this profile when adapting the kit to projects using Next.js with Firebase Auth, Firestore, Realtime Database, Storage, Cloud Functions, or Firebase Hosting.
|
|
4
|
-
|
|
5
|
-
## Replace Supabase-Specific Checks
|
|
6
|
-
|
|
7
|
-
- Replace Supabase RLS policy review with Firestore/Realtime Database security rules review.
|
|
8
|
-
- Replace service-role guidance with Firebase Admin SDK server-only guidance.
|
|
9
|
-
- Replace Postgres migration checks with Firebase rules, indexes, emulator fixtures, and data-shape validation.
|
|
10
|
-
- Keep OWASP, SSR, secrets, accessibility, testing, deployment, and living-docs requirements.
|
|
11
|
-
|
|
12
|
-
## Required Evidence
|
|
13
|
-
|
|
14
|
-
- Firebase security rules are versioned and tested.
|
|
15
|
-
- Client SDK usage cannot access admin-only data.
|
|
16
|
-
- Admin SDK credentials are server-only and never bundled.
|
|
17
|
-
- Emulator or integration tests cover auth, rules, and primary data writes.
|
|
18
|
-
- Storage rules cover uploads, reads, ownership, content type, and size.
|
|
19
|
-
|
|
20
|
-
## Agent Handoff
|
|
21
|
-
|
|
22
|
-
- Architect owns auth model, tenancy, and data boundaries.
|
|
23
|
-
- Firebase engineer owns rules, indexes, emulator tests, functions, and storage.
|
|
24
|
-
- Security reviewer owns privilege escalation, IDOR, file uploads, secrets, and dependency exposure.
|
|
25
|
-
- Frontend design lead owns task-first UX, states, accessibility, and screenshot review.
|