@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,65 +0,0 @@
|
|
|
1
|
-
# Antigravity Adapter
|
|
2
|
-
|
|
3
|
-
This adapter packages Agent Kit as native Antigravity-style plugin assets while keeping the Agent Kit council contract canonical.
|
|
4
|
-
|
|
5
|
-
## Source Of Truth
|
|
6
|
-
|
|
7
|
-
- `AGENTS.md`
|
|
8
|
-
- `AGENT_ROSTER.md`
|
|
9
|
-
- `.agent-kit/agent-roster.json`
|
|
10
|
-
- `MODEL_ROUTING.md`
|
|
11
|
-
- `.agent-kit/model-routing.json`
|
|
12
|
-
- `.agent-kit/project-context.json`
|
|
13
|
-
- `.agent-kit/project-context.md`
|
|
14
|
-
- `.agent-kit/corrections/project-rules.json`
|
|
15
|
-
- `.agent-kit/corrections/agent-rules.json`
|
|
16
|
-
- `COUNCIL.md`
|
|
17
|
-
- `.agent-kit/council-sessions/`
|
|
18
|
-
- `QUALITY_GATES.md`
|
|
19
|
-
|
|
20
|
-
Runtime command files must wrap those files. Do not fork role definitions, security policy, frontend quality rules, release gates, or session evidence rules into command prompts.
|
|
21
|
-
|
|
22
|
-
Antigravity commands are instruction adapters. They do not replace or prove execution by `@appsforgood/agent-kit-runtime`; use `agent-kit orchestrate status` and exported run evidence for that claim.
|
|
23
|
-
|
|
24
|
-
## Activation
|
|
25
|
-
|
|
26
|
-
```bash
|
|
27
|
-
agent-kit init --activate antigravity
|
|
28
|
-
agent-kit adapter validate antigravity
|
|
29
|
-
```
|
|
30
|
-
|
|
31
|
-
This installs:
|
|
32
|
-
|
|
33
|
-
- `.antigravity/agent-kit/plugin.json`
|
|
34
|
-
- `.antigravity/agent-kit/commands/*.toml`
|
|
35
|
-
- `.antigravity/runtime-skills/*/SKILL.md`
|
|
36
|
-
- `.antigravity/agent-kit/README.md`
|
|
37
|
-
|
|
38
|
-
If the `agy` CLI is available, teams may additionally run its native plugin validation. Agent Kit only requires structural validation because many projects will not have Antigravity installed locally.
|
|
39
|
-
|
|
40
|
-
## Command Contract
|
|
41
|
-
|
|
42
|
-
Commands expose short runtime entrypoints:
|
|
43
|
-
|
|
44
|
-
- `/setup`
|
|
45
|
-
- `/spec`
|
|
46
|
-
- `/audit`
|
|
47
|
-
- `/plan`
|
|
48
|
-
- `/handoff`
|
|
49
|
-
- `/frontend`
|
|
50
|
-
- `/test`
|
|
51
|
-
- `/review`
|
|
52
|
-
- `/security`
|
|
53
|
-
- `/copy`
|
|
54
|
-
- `/ship`
|
|
55
|
-
- `/upgrade`
|
|
56
|
-
|
|
57
|
-
UI harness commands (`/ui-audit`, `/ui-polish`, `/layout-cleanup`, `/responsive-cleanup`, `/accessibility-pass`, `/distinctiveness-pass`, `/screenshot-critique`, `/browser-qa`) are documented in `.agent-kit/prompts/ui-command-index.md`.
|
|
58
|
-
|
|
59
|
-
Delivery lifecycle commands are documented in `.agent-kit/prompts/lifecycle-command-index.md`.
|
|
60
|
-
|
|
61
|
-
Each command must load project context and correction rules when present, select the appropriate roster workflow, record required outputs with `agent-kit session output`, and render sessions when evidence changes.
|
|
62
|
-
|
|
63
|
-
## Security
|
|
64
|
-
|
|
65
|
-
Do not place tokens, credentials, private URLs, database URLs, customer data, or hidden model reasoning in Antigravity plugin files, command files, or runtime skills.
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
# Claude Code Subagent Adapter
|
|
2
|
-
|
|
3
|
-
Claude Code projects can activate Agent Kit by creating project subagents that point back to the canonical council files.
|
|
4
|
-
|
|
5
|
-
Use `MODEL_ROUTING.md` and `.agent-kit/model-routing.json` when adding model comments or frontmatter to those subagents.
|
|
6
|
-
|
|
7
|
-
## Suggested Project Layout
|
|
8
|
-
|
|
9
|
-
```text
|
|
10
|
-
.claude/
|
|
11
|
-
agents/
|
|
12
|
-
planner.md
|
|
13
|
-
lead-architect.md
|
|
14
|
-
frontend-design-lead.md
|
|
15
|
-
security-reviewer.md
|
|
16
|
-
qa-engineer.md
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
## Subagent Frontmatter Pattern
|
|
20
|
-
|
|
21
|
-
```md
|
|
22
|
-
---
|
|
23
|
-
name: planner
|
|
24
|
-
description: Use for planning, phasing, scope breakdown, workflow routing, and council setup in this repository.
|
|
25
|
-
---
|
|
26
|
-
|
|
27
|
-
Read `AGENTS.md`, `AGENT_ROSTER.md`, `.agent-kit/agent-roster.json`, `.agent-kit/project-context.json`, `.agent-kit/project-context.md`, `.agent-kit/agent-briefs.md` when present, `.agent-kit/corrections/project-rules.json`, `.agent-kit/corrections/agent-rules.json`, `COUNCIL.md`, `.agent-kit/council-sessions/`, and `QUALITY_GATES.md` before making routing decisions.
|
|
28
|
-
|
|
29
|
-
Start with the Planner workflow. For core changes, hand off to Lead Architect. For frontend changes, require Frontend Design Lead evidence. For auth, RLS, secrets, dependency, external-call, or release-risk changes, require Security Reviewer. Record meaningful decisions, risks, handoffs, human corrections, artifacts, evidence, and verification through Agent Studio session files when available.
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
## Guardrails
|
|
33
|
-
|
|
34
|
-
- Keep detailed role behavior in `AGENTS.md` and `AGENT_ROSTER.md`; subagent files should be focused entry points.
|
|
35
|
-
- Document active subagents and verification evidence in `ASSISTANT_ADAPTERS.md`.
|
|
36
|
-
- Record model-selection evidence and limitations in `ASSISTANT_ADAPTERS.md`.
|
|
37
|
-
- Avoid giving a subagent broader tool access than its role needs.
|
|
38
|
-
- Treat Claude subagents as instruction adapters. Use `agent-kit orchestrate ...` and its run evidence when the task requires the executable checkpointed council.
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
# Codex / AGENTS.md Adapter
|
|
2
|
-
|
|
3
|
-
Use `AGENTS.md` as the primary project instruction surface.
|
|
4
|
-
|
|
5
|
-
## Required References
|
|
6
|
-
|
|
7
|
-
- `AGENTS.md`
|
|
8
|
-
- `AGENT_ROSTER.md`
|
|
9
|
-
- `.agent-kit/agent-roster.json`
|
|
10
|
-
- `MODEL_ROUTING.md`
|
|
11
|
-
- `.agent-kit/model-routing.json`
|
|
12
|
-
- `.agent-kit/project-context.json`
|
|
13
|
-
- `.agent-kit/project-context.md`
|
|
14
|
-
- `.agent-kit/agent-briefs.md` when present
|
|
15
|
-
- `.agent-kit/corrections/project-rules.json`
|
|
16
|
-
- `.agent-kit/corrections/agent-rules.json`
|
|
17
|
-
- `COUNCIL.md`
|
|
18
|
-
- `.agent-kit/council-sessions/`
|
|
19
|
-
- `QUALITY_GATES.md`
|
|
20
|
-
|
|
21
|
-
## Council Custom Agents
|
|
22
|
-
|
|
23
|
-
After `agent-kit init --activate codex`, council specialists live in `.codex/agents/*.toml`.
|
|
24
|
-
|
|
25
|
-
Spawn a dedicated custom agent instead of role-playing the whole council in one thread:
|
|
26
|
-
|
|
27
|
-
- **Planning / scope:** `.codex/agents/planner.toml`
|
|
28
|
-
- **Security / RLS / secrets:** `.codex/agents/security-reviewer.toml` (high reasoning effort)
|
|
29
|
-
- **Frontend UI:** `.codex/agents/frontend-design-lead.toml`
|
|
30
|
-
- **QA / tests:** `.codex/agents/qa-engineer.toml`
|
|
31
|
-
|
|
32
|
-
Each file sets `model_reasoning_effort` from `.agent-kit/model-routing.json`. Verify model names in your Codex environment against `MODEL_ROUTING.md`.
|
|
33
|
-
|
|
34
|
-
## Operating Rule
|
|
35
|
-
|
|
36
|
-
When a task is planning-oriented, ambiguous, risky, frontend-facing, security-sensitive, or release-related, start from the roster workflow instead of treating the request as a single generic implementation pass.
|
|
37
|
-
|
|
38
|
-
Use `MODEL_ROUTING.md` to choose the model profile or reasoning effort for the active role. Exact model names belong in dated config comments, not in the role definitions.
|
|
39
|
-
|
|
40
|
-
Before meaningful work, load project context, agent briefs when present, and active correction rules. For meaningful handoffs, record visible decisions and evidence with `agent-kit session checkpoint --file <json>` or individual `agent-kit session ...` commands, then run `agent-kit session render`.
|
|
41
|
-
|
|
42
|
-
## Verification
|
|
43
|
-
|
|
44
|
-
Record in `ASSISTANT_ADAPTERS.md`:
|
|
45
|
-
|
|
46
|
-
- The tool/version or environment where `AGENTS.md` was observed.
|
|
47
|
-
- The command, session, or screenshot that proves the instructions loaded.
|
|
48
|
-
- The model-selection setting or profile used for the active role.
|
|
49
|
-
- Any known limitations or manual invocation steps.
|
|
50
|
-
|
|
51
|
-
Run `agent-kit adapter validate codex` after activation.
|
|
52
|
-
|
|
53
|
-
Codex custom agents are instruction adapters. Use `agent-kit orchestrate validate`, `plan`, `run`, and `status` when a task requires the executable checkpointed council; do not infer graph execution from a delegated IDE thread.
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: Require Frontend Design Lead evidence for significant UI and component work.
|
|
3
|
-
globs:
|
|
4
|
-
- "src/app/**"
|
|
5
|
-
- "src/components/**"
|
|
6
|
-
- "**/*.css"
|
|
7
|
-
alwaysApply: false
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
# Frontend design gate reminders
|
|
11
|
-
|
|
12
|
-
Significant UI changes require **Frontend Design Lead** review: brand/content intake, creative-direction rationale, reference-led critique, product-quality scorecard, accessibility, and visual QA evidence.
|
|
13
|
-
|
|
14
|
-
Delegate to `@frontend-design-lead` in `.cursor/agents/frontend-design-lead.md` for isolated design review context.
|
|
15
|
-
|
|
16
|
-
Reject generic AI-looking UI that is not specific to the product workflow and content model.
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: Route ambiguous, planning, and cross-layer requests through the Planner workflow first.
|
|
3
|
-
globs:
|
|
4
|
-
- "**/*"
|
|
5
|
-
alwaysApply: false
|
|
6
|
-
---
|
|
7
|
-
|
|
8
|
-
# Planner routing
|
|
9
|
-
|
|
10
|
-
When a request is ambiguous, planning-oriented, roadmap-related, or spans multiple layers, start with the **Planner** workflow before implementation.
|
|
11
|
-
|
|
12
|
-
Delegate to the `@planner` subagent in `.cursor/agents/planner.md` when the task needs isolated planning context.
|
|
13
|
-
|
|
14
|
-
Read `AGENTS.md`, `.agent-kit/agent-roster.json`, `MODEL_ROUTING.md`, project context, and active corrections before choosing a workflow.
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: Require Security Reviewer for auth, RLS, secrets, API mutations, and external calls.
|
|
3
|
-
globs:
|
|
4
|
-
- "supabase/**"
|
|
5
|
-
- "**/auth/**"
|
|
6
|
-
- "**/api/**"
|
|
7
|
-
- "**/middleware.ts"
|
|
8
|
-
- "**/proxy.ts"
|
|
9
|
-
alwaysApply: false
|
|
10
|
-
---
|
|
11
|
-
|
|
12
|
-
# Security gate reminders
|
|
13
|
-
|
|
14
|
-
Auth, RLS, data mutation, dependency, secret, external-call, and release-risk changes require **Security Reviewer** review before acceptance.
|
|
15
|
-
|
|
16
|
-
Delegate to `@security-reviewer` in `.cursor/agents/security-reviewer.md` or Task `security-review` for isolated review context.
|
|
17
|
-
|
|
18
|
-
Verify OWASP Top 10, IDOR, SSRF, injection, broken auth, and least-privilege boundaries.
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
# Repository Instructions
|
|
2
|
-
|
|
3
|
-
This repository uses Agent Kit. Treat `AGENTS.md`, `AGENT_ROSTER.md`, `.agent-kit/agent-roster.json`, `MODEL_ROUTING.md`, `.agent-kit/model-routing.json`, `.agent-kit/project-context.json`, `.agent-kit/project-context.md`, `.agent-kit/agent-briefs.md` when present, `.agent-kit/corrections/project-rules.json`, `.agent-kit/corrections/agent-rules.json`, `COUNCIL.md`, `.agent-kit/council-sessions/`, and `QUALITY_GATES.md` as the source of truth for agent routing, project context, correction rules, model profiles, quality gates, and handoff evidence.
|
|
4
|
-
|
|
5
|
-
## Workflows
|
|
6
|
-
|
|
7
|
-
- Planning, phased roadmap, or ambiguous work starts with Planner.
|
|
8
|
-
- Core changes require Lead Architect before implementation.
|
|
9
|
-
- Frontend changes require Frontend Design Lead, brand/content intake, creative-direction rationale, visual QA evidence, state coverage, accessibility checks, and desktop/mobile verification.
|
|
10
|
-
- Auth, RLS, data mutations, dependency changes, external calls, secrets, and release risk require Security Reviewer.
|
|
11
|
-
- Behavior changes require QA evidence.
|
|
12
|
-
- Significant changes require Documentation Maintainer updates.
|
|
13
|
-
- Meaningful work should read local project context and active correction rules before implementation.
|
|
14
|
-
- User corrections should be recorded before continuing, then applied to future sessions when durable.
|
|
15
|
-
- Meaningful multi-agent work should record visible decisions, handoffs, artifacts, and verification in Agent Studio session files when available.
|
|
16
|
-
|
|
17
|
-
## Validation
|
|
18
|
-
|
|
19
|
-
Before proposing completion, run the repo's documented checks. For projects installed from this kit, the minimum setup check is:
|
|
20
|
-
|
|
21
|
-
```sh
|
|
22
|
-
agent-kit audit --min-readiness baseline-setup
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
Use a stronger gate before claiming best-practice readiness:
|
|
26
|
-
|
|
27
|
-
```sh
|
|
28
|
-
agent-kit audit --min-readiness best-practice-candidate
|
|
29
|
-
```
|
|
30
|
-
|
|
31
|
-
Do not claim best-practice readiness while starter placeholders remain in `COUNCIL.md`, `SPEC.md`, `DESIGN.md`, `SECURITY.md`, `TESTING.md`, `DEPLOYMENT.md`, or `ASSISTANT_ADAPTERS.md`.
|
|
32
|
-
|
|
33
|
-
## Model Selection
|
|
34
|
-
|
|
35
|
-
Use the active Copilot model selector or organization policy with `MODEL_ROUTING.md`. Repository instructions advise model choice but should not be treated as hard enforcement where Copilot keeps model selection user-controlled.
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
applyTo: "app/**/*.{ts,tsx},src/app/**/*.{ts,tsx},pages/**/*.{ts,tsx},src/pages/**/*.{ts,tsx},components/**/*.{ts,tsx},lib/**/*.{ts,tsx},utils/**/*.{ts,tsx},supabase/**/*,*.sql"
|
|
3
|
-
---
|
|
4
|
-
|
|
5
|
-
# Next.js + Supabase Agent Kit Instructions
|
|
6
|
-
|
|
7
|
-
Follow `AGENTS.md`, `AGENT_ROSTER.md`, `.agent-kit/agent-roster.json`, `MODEL_ROUTING.md`, `.agent-kit/model-routing.json`, `.agent-kit/project-context.json`, `.agent-kit/project-context.md`, `.agent-kit/agent-briefs.md` when present, `.agent-kit/corrections/project-rules.json`, `.agent-kit/corrections/agent-rules.json`, `COUNCIL.md`, `.agent-kit/council-sessions/`, and `QUALITY_GATES.md`.
|
|
8
|
-
|
|
9
|
-
## Next.js
|
|
10
|
-
|
|
11
|
-
- Keep Server Component, Client Component, Route Handler, and Server Action boundaries explicit.
|
|
12
|
-
- Do not expose secrets, service-role keys, privileged queries, or admin-only data to client bundles.
|
|
13
|
-
- Preserve loading, empty, error, disabled, success, focus, and mobile states for user-facing changes.
|
|
14
|
-
|
|
15
|
-
## Supabase
|
|
16
|
-
|
|
17
|
-
- Enforce authorization with Postgres RLS where applicable.
|
|
18
|
-
- Treat service-role access as server-only.
|
|
19
|
-
- Document migration order, rollback risk, indexes, constraints, and policy changes.
|
|
20
|
-
|
|
21
|
-
## Council Routing
|
|
22
|
-
|
|
23
|
-
- Schema, auth, RLS, API behavior, dependency, and release changes require Lead Architect and Security Reviewer handoff.
|
|
24
|
-
- UI changes require Frontend Design Lead evidence before implementation is accepted.
|
|
25
|
-
- Behavior changes require QA evidence and living-doc updates.
|
|
26
|
-
- Use the model profile in `MODEL_ROUTING.md`; treat Copilot model selection as advisory unless the active tool surface can enforce it.
|
|
27
|
-
- Read project context and active corrections before changing behavior.
|
|
28
|
-
- Record visible decisions, handoffs, human corrections, artifacts, and verification with Agent Studio session commands when available.
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
# Claude Code Subagents With Model Notes
|
|
2
|
-
|
|
3
|
-
Use this as a starter for `.claude/agents/*.md` files. Keep the canonical role definitions in `AGENTS.md` and `AGENT_ROSTER.md`.
|
|
4
|
-
|
|
5
|
-
```md
|
|
6
|
-
---
|
|
7
|
-
name: lead-architect
|
|
8
|
-
description: Use for core architecture, cross-layer changes, package behavior, and technical decisions.
|
|
9
|
-
# June 2026 Agent Kit suggestion:
|
|
10
|
-
# model: opus
|
|
11
|
-
# effort: high
|
|
12
|
-
---
|
|
13
|
-
|
|
14
|
-
Read `AGENTS.md`, `AGENT_ROSTER.md`, `MODEL_ROUTING.md`, `.agent-kit/agent-roster.json`, and `.agent-kit/model-routing.json`.
|
|
15
|
-
|
|
16
|
-
Review affected layers, preserved behavior, security impact, test plan, docs impact, and required council handoffs before implementation.
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
```md
|
|
20
|
-
---
|
|
21
|
-
name: frontend-design-lead
|
|
22
|
-
description: Use for creative direction, reference-led critique, frontend distinctiveness, product-quality scorecards, and visual QA.
|
|
23
|
-
# June 2026 Agent Kit suggestion:
|
|
24
|
-
# model: opus
|
|
25
|
-
# effort: high
|
|
26
|
-
---
|
|
27
|
-
|
|
28
|
-
Use `DESIGN.md`, `STYLE_GUIDE.md`, `MODEL_ROUTING.md`, and the frontend skills before accepting significant UI work.
|
|
29
|
-
Reject generic AI-looking UI that is not specific to the product content, workflow, audience, and state model.
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
Record the actual Claude Code behavior, model field support, date, and owner in `ASSISTANT_ADAPTERS.md`.
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
# Codex model-selection example for Agent Kit.
|
|
2
|
-
# Copy the relevant comments into ~/.codex/config.toml or a trusted project .codex/config.toml.
|
|
3
|
-
# Verify current model availability in your Codex environment before uncommenting.
|
|
4
|
-
#
|
|
5
|
-
# Custom council agents generated by agent-kit live under .codex/agents/*.toml.
|
|
6
|
-
# Run `agent-kit init --activate codex` to create them from the project roster.
|
|
7
|
-
|
|
8
|
-
# June 2026 Agent Kit suggested baseline:
|
|
9
|
-
# model = "gpt-5.5"
|
|
10
|
-
# model_reasoning_effort = "medium"
|
|
11
|
-
|
|
12
|
-
# Use high reasoning for Lead Architect, Security Reviewer, and Supabase/Postgres Engineer
|
|
13
|
-
# when spawning custom Codex agents or starting dedicated review threads.
|
|
14
|
-
# model_reasoning_effort = "high"
|
|
15
|
-
|
|
16
|
-
# Optional custom-agent files can live under .codex/agents/*.toml.
|
|
17
|
-
# Keep each custom agent narrow and point it back to:
|
|
18
|
-
# - AGENTS.md
|
|
19
|
-
# - AGENT_ROSTER.md
|
|
20
|
-
# - .agent-kit/agent-roster.json
|
|
21
|
-
# - MODEL_ROUTING.md
|
|
22
|
-
# - .agent-kit/model-routing.json
|
|
23
|
-
|
|
24
|
-
# Example custom-agent fragment:
|
|
25
|
-
# name = "lead-architect"
|
|
26
|
-
# description = "Architecture and core-change council review."
|
|
27
|
-
# model = "gpt-5.5"
|
|
28
|
-
# model_reasoning_effort = "high"
|
|
29
|
-
# developer_instructions = """
|
|
30
|
-
# Read AGENTS.md, AGENT_ROSTER.md, MODEL_ROUTING.md, and .agent-kit/agent-roster.json.
|
|
31
|
-
# Review affected layers, preserved behavior, tradeoffs, security impact, test plan, and docs impact.
|
|
32
|
-
# """
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: Agent Kit model-selection reminder for Cursor.
|
|
3
|
-
globs:
|
|
4
|
-
- "**/*"
|
|
5
|
-
alwaysApply: true
|
|
6
|
-
---
|
|
7
|
-
|
|
8
|
-
# Agent Kit Model Selection
|
|
9
|
-
|
|
10
|
-
Use `MODEL_ROUTING.md` and `.agent-kit/model-routing.json` when choosing a model for the active task.
|
|
11
|
-
|
|
12
|
-
## June 2026 Recommendations
|
|
13
|
-
|
|
14
|
-
<!--
|
|
15
|
-
Cursor model selection is controlled by the user, workspace, model picker, or team policy.
|
|
16
|
-
This rule advises routing; it should not be treated as hard enforcement.
|
|
17
|
-
-->
|
|
18
|
-
|
|
19
|
-
- Use a deep reasoning model for Lead Architect, Security Reviewer, Supabase/Postgres Engineer, migrations, RLS, auth, dependencies, release risk, and cross-layer decisions.
|
|
20
|
-
- Use a strong coding model with large context for Next.js Engineer work across App Router, Server Actions, Route Handlers, forms, caching, and UI state.
|
|
21
|
-
- Use a creative/vision-capable model for Frontend Design Lead work, especially screenshot critique, references, and distinctiveness benchmarking.
|
|
22
|
-
- Use a fast or balanced model for low-risk docs, deployment notes, and repeated QA summaries.
|
|
23
|
-
|
|
24
|
-
Record the selected Cursor model, rule evidence, date, owner, and limitations in `ASSISTANT_ADAPTERS.md`.
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
# GitHub Copilot Model Selection
|
|
2
|
-
|
|
3
|
-
Repository instructions can advise model choice, but model selection remains controlled by the Copilot surface, organization policy, and the user's active model picker.
|
|
4
|
-
|
|
5
|
-
Use `MODEL_ROUTING.md` and `.agent-kit/model-routing.json` before starting agentic work.
|
|
6
|
-
|
|
7
|
-
## June 2026 Recommendations
|
|
8
|
-
|
|
9
|
-
<!--
|
|
10
|
-
Select the strongest available Copilot model for architecture, security, Supabase RLS, migrations, release risk, and ambiguous planning.
|
|
11
|
-
Select a faster available model for docs-only cleanup, narrow test triage, or low-risk repeated checks.
|
|
12
|
-
These comments are dated setup guidance, not a guarantee that Copilot will enforce model choice from repository files.
|
|
13
|
-
-->
|
|
14
|
-
|
|
15
|
-
## Evidence To Record
|
|
16
|
-
|
|
17
|
-
- Copilot surface used: chat, edit, coding agent, PR review, or other.
|
|
18
|
-
- Active model or organization policy, if visible.
|
|
19
|
-
- Instruction file loaded: `.github/copilot-instructions.md` or `.github/instructions/*.instructions.md`.
|
|
20
|
-
- Date, owner, and known limitations.
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
# Orchestrator Runtime Adapter
|
|
2
|
-
|
|
3
|
-
`@appsforgood/agent-kit-runtime` is the optional executable layer for the Agent Kit council. IDE rules, subagents, slash commands, and model-routing documents remain instruction adapters; they do not imply that a checkpointed graph ran.
|
|
4
|
-
|
|
5
|
-
## Activation
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
npm install --save-dev @appsforgood/agent-kit-runtime
|
|
9
|
-
agent-kit orchestrate validate
|
|
10
|
-
agent-kit orchestrate plan "Describe the goal"
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
Edit `.agent-kit/orchestrator.json`, add provider credential references such as `env:OPENAI_API_KEY` or `keychain:team-openai`, configure at least one deterministic model alias, and set `enabled` to `true` only after validation passes.
|
|
14
|
-
|
|
15
|
-
## Execution Contract
|
|
16
|
-
|
|
17
|
-
- Roster workflows compile to explicit, bounded LangGraph nodes.
|
|
18
|
-
- Runs pause at plan, network, worktree-write, host-execution, and final-commit gates when applicable.
|
|
19
|
-
- Mutations occur in an isolated Git worktree. Agent Kit may create one scoped commit after approval; it never merges, pushes, or opens a pull request.
|
|
20
|
-
- Docker is the default mutation command boundary. Network access is off unless configured and approved.
|
|
21
|
-
- Provider and remote MCP requests reject redirects, embedded credentials, non-allowlisted hosts, and private or special-use addresses unless private access is explicitly configured.
|
|
22
|
-
- Stdio MCP servers execute on the host only when both `allowHostExecution` and `sandbox.allowHostMutations` are enabled and the host gate is approved.
|
|
23
|
-
- Run checkpoints live in `.agent-kit/runtime/runtime.sqlite`; redacted run records and JSONL evidence live under `.agent-kit/runtime/runs/` and are ignored by Git.
|
|
24
|
-
|
|
25
|
-
## Cursor Executor
|
|
26
|
-
|
|
27
|
-
Set an agent route to `cursor` only when Cursor CLI execution is intentionally required. The runtime invokes argv directly inside the isolated worktree, with no shell, a bounded timeout, minimal inherited environment, and an explicit host-mutation approval. Provider-backed model agents remain the default.
|
|
28
|
-
|
|
29
|
-
## Verification
|
|
30
|
-
|
|
31
|
-
Record:
|
|
32
|
-
|
|
33
|
-
- `agent-kit orchestrate validate --json`
|
|
34
|
-
- the offline `orchestrate plan` output
|
|
35
|
-
- provider and MCP probe results, without credentials
|
|
36
|
-
- run ID, approval decisions, scoped commit, and exported evidence
|
|
37
|
-
- Docker image ID and any private-network or host-execution exception rationale
|
|
38
|
-
|
|
39
|
-
Use `agent-kit studio serve` to inspect and decide paused runs in the local Studio UI.
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
# Accessibility Checklist
|
|
2
|
-
|
|
3
|
-
- Semantic HTML used first.
|
|
4
|
-
- ARIA used only when needed.
|
|
5
|
-
- Keyboard navigation works.
|
|
6
|
-
- Focus states are visible.
|
|
7
|
-
- Color contrast meets WCAG 2.1 AA.
|
|
8
|
-
- Forms have labels and error messages.
|
|
9
|
-
- Custom controls expose state.
|
|
10
|
-
- Content does not rely only on color or motion.
|
|
11
|
-
- Critical flows have keyboard-only smoke coverage.
|
|
12
|
-
- Accessibility tooling or manual checks are documented in `TESTING.md`.
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# Agent Council Checklist
|
|
2
|
-
|
|
3
|
-
- `.agent-kit/agent-roster.json` exists and matches the expected default council contract.
|
|
4
|
-
- `.agent-kit/schemas/agent-roster.schema.json` exists for roster validation.
|
|
5
|
-
- `.agent-kit/schemas/council-session.schema.json` exists for structured session evidence.
|
|
6
|
-
- Planner starts planning, roadmap, ambiguous, and cross-layer requests.
|
|
7
|
-
- Lead Architect reviews core changes before implementation.
|
|
8
|
-
- Security Reviewer joins auth, data mutation, dependency, external-call, secret, and release-risk work.
|
|
9
|
-
- Frontend Design Lead joins user-facing frontend work with creative direction and visual QA evidence.
|
|
10
|
-
- QA Engineer verifies behavior changes before completion.
|
|
11
|
-
- Documentation Maintainer updates living docs when behavior, architecture, release, or standards change.
|
|
12
|
-
- Every handoff records decision, risk, next handoff, and evidence.
|
|
13
|
-
- Missing required outputs are marked missing or partial rather than hidden.
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
# Brand And Content Checklist
|
|
2
|
-
|
|
3
|
-
- Product category is named.
|
|
4
|
-
- Primary audience and user needs are written in user language.
|
|
5
|
-
- Real content inventory exists: nouns, labels, records, data fields, examples, and assets.
|
|
6
|
-
- First screen is tied to a real task, object, or workflow.
|
|
7
|
-
- Brand personality has 3-5 visible traits.
|
|
8
|
-
- Existing logo, colors, fonts, platform conventions, and accessibility constraints are captured.
|
|
9
|
-
- Category references are used for learning only; no source is copied.
|
|
10
|
-
- Non-goals name visual tropes, copy patterns, palettes, or layouts to avoid.
|
|
11
|
-
- Anti-references are explicit enough to prevent generic AI-site defaults.
|
|
12
|
-
- Source-safety notes name brand marks, layouts, copy, or assets that must not be copied.
|
|
13
|
-
- At least two creative directions were considered before implementation.
|
|
14
|
-
- Chosen direction affects tokens, layout, copy, imagery, and interaction tone.
|
|
15
|
-
- Missing content or assets are documented instead of hidden behind generic placeholders.
|
package/checklists/deployment.md
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
# Deployment Checklist
|
|
2
|
-
|
|
3
|
-
- Required env vars are present.
|
|
4
|
-
- Server-only secrets are not exposed.
|
|
5
|
-
- Migrations are applied in the right order.
|
|
6
|
-
- RLS and Storage policies are verified.
|
|
7
|
-
- Build passes.
|
|
8
|
-
- Smoke tests pass.
|
|
9
|
-
- Logs and monitoring are checked.
|
|
10
|
-
- Rollback steps are documented.
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# Design Critique Checklist
|
|
2
|
-
|
|
3
|
-
- `DESIGN.md` includes a reference set and anti-references.
|
|
4
|
-
- References are used for learning, not copying.
|
|
5
|
-
- Source-safety notes identify brand marks, layouts, copy, or assets that must not be copied.
|
|
6
|
-
- The first screen shows the product's real task, object, content, or workflow.
|
|
7
|
-
- The chosen creative direction is visible in typography, layout, density, color, imagery, copy, and interaction tone.
|
|
8
|
-
- Distinctiveness verdict is recorded as weak, adequate, or strong.
|
|
9
|
-
- Frontend product-quality scorecard records user/task fit, content specificity, visual identity, information architecture, component states, accessibility and interaction, and source safety.
|
|
10
|
-
- Generic AI-site risks are explicitly accepted, changed, or rejected.
|
|
11
|
-
- Desktop and mobile screenshots or previews were reviewed.
|
|
12
|
-
- Important empty, loading, error, disabled, success, and permission states were reviewed.
|
|
13
|
-
- Accessibility and visual QA evidence match the risk of the UI change.
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
# Frontend Distinctiveness Checklist
|
|
2
|
-
|
|
3
|
-
- First viewport shows the real product object, task, workflow, content, or decision.
|
|
4
|
-
- Product nouns, labels, data shapes, records, actions, and edge cases are visible or documented.
|
|
5
|
-
- Reference benchmark includes 3-5 references with lessons to learn.
|
|
6
|
-
- Anti-references include 2-3 category tropes, palettes, layouts, copy patterns, or interaction habits to avoid.
|
|
7
|
-
- Source-safety notes explain what must not be copied from references.
|
|
8
|
-
- At least two creative directions were compared before implementation.
|
|
9
|
-
- Asset provenance is recorded for real, generated, licensed, and placeholder visuals.
|
|
10
|
-
- Loading, empty, error, disabled, success, permission, and focus states are covered where relevant.
|
|
11
|
-
- Desktop and mobile evidence exists, plus visual QA for high-risk screens.
|
|
12
|
-
- A design cannot pass if it would still work unchanged for another product in the same category.
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# Frontend Product Quality Checklist
|
|
2
|
-
|
|
3
|
-
- User/task fit score is at least `1`, and preferably `2`.
|
|
4
|
-
- Content specificity score is at least `1`, and preferably `2`.
|
|
5
|
-
- Visual identity score explains why the result fits this product rather than a generic category.
|
|
6
|
-
- Information architecture score covers primary and secondary workflows.
|
|
7
|
-
- Component state score covers important loading, empty, error, disabled, success, permission, and focus states.
|
|
8
|
-
- Accessibility and interaction score covers keyboard path, focus, contrast, labels, reduced motion, and error feedback.
|
|
9
|
-
- Source-safety score confirms references were learned from, not copied.
|
|
10
|
-
- Total score is at least `10/14` before acceptance.
|
|
11
|
-
- Best-practice claim requires at least `12/14`, no critical zeroes, desktop/mobile screenshot review, and visual QA evidence.
|
|
12
|
-
- Best-practice claim also requires frontend distinctiveness benchmark evidence: first-screen proof, content fingerprint, reference benchmark, asset provenance, state proof, and visual QA proof.
|
|
13
|
-
- `DESIGN.md` records the scorecard verdict and required changes.
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# Frontend Quality Checklist
|
|
2
|
-
|
|
3
|
-
- First screen shows the actual product or task.
|
|
4
|
-
- `DESIGN.md` includes product category, audience, user needs, content inventory, brand constraints, and creative direction.
|
|
5
|
-
- Brand/content intake was completed before visual implementation.
|
|
6
|
-
- At least two creative directions were considered.
|
|
7
|
-
- Reference set, anti-references, and source-safety notes are recorded.
|
|
8
|
-
- Design critique verdict is adequate or strong before release.
|
|
9
|
-
- Frontend product-quality scorecard is at least adequate before release.
|
|
10
|
-
- Visual direction fits the domain.
|
|
11
|
-
- No generic AI-site gradient/card defaults.
|
|
12
|
-
- No accent-border cards, glow rails, neon strokes, gradient borders, oversized glass panels, ornamental icon walls, fake dashboard proof, decorative credibility badges, vague SaaS sayings, or layout filler sections unless documented as a brand-system exception.
|
|
13
|
-
- Navigation is clear and predictable.
|
|
14
|
-
- Loading, empty, error, disabled, and success states exist.
|
|
15
|
-
- Mobile layout is designed, not incidental.
|
|
16
|
-
- Component spacing, type, and density are consistent.
|
|
17
|
-
- Forms are accessible and provide useful feedback.
|
|
18
|
-
- Design tokens cover color, typography, spacing, radius, motion, depth, state color, and focus treatment.
|
|
19
|
-
- A product-specific design brief has been used for SaaS, admin, marketplace, content, tool, ecommerce, portfolio/venue, education, community/social, or AI workflow surfaces.
|
|
20
|
-
- Desktop and mobile screenshots have been reviewed with `prompts/screenshot-review.md`.
|
|
21
|
-
- Visual QA tier is documented for high-risk UI changes.
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# Marketing And Copy Checklist
|
|
2
|
-
|
|
3
|
-
- `MESSAGING.md` identifies audience, pain, desired outcome, alternatives, differentiator, proof, objections, voice, and conversion goal.
|
|
4
|
-
- Missing positioning inputs are asked as explicit questions before final copy is written.
|
|
5
|
-
- Claims are supported by named proof or marked as assumptions.
|
|
6
|
-
- Headline, subhead, CTA, proof, and objection handling match the same value proposition.
|
|
7
|
-
- Copy uses real product nouns, workflows, constraints, and customer language.
|
|
8
|
-
- CTAs have one primary action and clear secondary actions.
|
|
9
|
-
- Onboarding, empty, error, upgrade, and permission copy provide a useful next step.
|
|
10
|
-
- Risky claims around pricing, privacy, security, compliance, performance, medical, financial, or legal topics are reviewed before release.
|
|
11
|
-
- Marketing Copy Lead hands off to Frontend Design Lead for public-facing layout and visual hierarchy.
|
package/checklists/owasp.md
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
# OWASP Checklist
|
|
2
|
-
|
|
3
|
-
- Broken access control: RLS, ownership, tenant boundary, admin checks.
|
|
4
|
-
- Cryptographic failures: secrets, tokens, PII, transport security.
|
|
5
|
-
- Injection: SQL, command, template, prompt, and header injection.
|
|
6
|
-
- Insecure design: abuse cases and missing security controls.
|
|
7
|
-
- Misconfiguration: env vars, CORS, headers, storage, public buckets.
|
|
8
|
-
- Vulnerable components: dependency additions and audit status.
|
|
9
|
-
- Auth failures: login, logout, refresh, session expiry, protected routes.
|
|
10
|
-
- Integrity failures: CI, package installs, migrations, webhooks.
|
|
11
|
-
- Logging failures: errors visible without leaking secrets.
|
|
12
|
-
- SSRF: external URL validation and egress restrictions.
|
package/checklists/rls.md
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
# Supabase RLS Checklist
|
|
2
|
-
|
|
3
|
-
- RLS enabled on every user-owned or tenant-owned table.
|
|
4
|
-
- Policies exist for each required operation.
|
|
5
|
-
- Policies enforce `auth.uid()` or tenant membership.
|
|
6
|
-
- Admin policies are explicit and least-privilege.
|
|
7
|
-
- Storage buckets have policies.
|
|
8
|
-
- Service-role use is isolated to server-only code.
|
|
9
|
-
- IDOR attempts are tested.
|
|
10
|
-
- Policy assumptions are documented.
|
package/checklists/testing.md
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
# Testing Checklist
|
|
2
|
-
|
|
3
|
-
- Unit tests cover core logic.
|
|
4
|
-
- Regression tests preserve existing behavior.
|
|
5
|
-
- Playwright smoke tests cover critical paths.
|
|
6
|
-
- Visual QA evidence exists for high-risk UI changes.
|
|
7
|
-
- Auth, admin, and data mutations are prioritized.
|
|
8
|
-
- Empty/error/loading states are covered where practical.
|
|
9
|
-
- Test gaps and residual risks are documented.
|
|
10
|
-
- CI gates are documented and match the commands used by the project.
|
|
11
|
-
- Playwright smoke coverage exists for the primary workflow before release.
|
|
12
|
-
- Visual baseline updates require human review and rationale when visual-regression tooling exists.
|