@appsforgood/next-supabase-kit 0.3.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -0
- package/README.md +22 -555
- package/UPGRADE.md +18 -73
- package/USER_GUIDE.html +808 -0
- package/USER_GUIDE.md +183 -0
- package/agents/app-engineer/agent.md +34 -0
- package/agents/copy/agent.md +40 -0
- package/agents/design/agent.md +33 -0
- package/agents/optional/deploy/agent.md +18 -0
- package/agents/optional/docs/agent.md +16 -0
- package/agents/optional/lead-architect/agent.md +20 -0
- package/agents/optional/research/agent.md +16 -0
- package/agents/planner/agent.md +37 -0
- package/agents/qa/agent.md +37 -0
- package/agents/security/agent.md +30 -0
- package/assistant-adapters/cursor-agent-kit.mdc +5 -26
- package/catalog.json +21 -0
- package/dist/index.js +931 -8227
- package/dist/index.js.map +1 -1
- package/examples/next-supabase-installed/.agent-kit/config.json +23 -26
- package/examples/next-supabase-installed/.agent-kit/manifest.json +83 -222
- package/examples/next-supabase-installed/.antigravity/agent-kit/commands/browser-qa.toml +6 -0
- package/examples/next-supabase-installed/.antigravity/agent-kit/commands/copy.toml +6 -0
- package/examples/next-supabase-installed/.antigravity/agent-kit/commands/frontend.toml +6 -0
- package/examples/next-supabase-installed/.antigravity/agent-kit/commands/plan.toml +6 -0
- package/examples/next-supabase-installed/.antigravity/agent-kit/commands/security.toml +6 -0
- package/examples/next-supabase-installed/.antigravity/agent-kit/commands/ship.toml +6 -0
- package/examples/next-supabase-installed/.antigravity/agent-kit/commands/test.toml +6 -0
- package/examples/next-supabase-installed/.antigravity/agent-kit/plugin.json +12 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/accessibility-wcag/SKILL.md +26 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/browser-qa/SKILL.md +67 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/deslop/SKILL.md +62 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/frontend-design/SKILL.md +107 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/nextjs-app-router/SKILL.md +23 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/owasp-security-review/SKILL.md +23 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/planning/SKILL.md +25 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/postgres-migrations/SKILL.md +21 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/product-copy/SKILL.md +54 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/ship/SKILL.md +22 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/supabase-auth-rls/SKILL.md +23 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/testing-qa/SKILL.md +27 -0
- package/examples/next-supabase-installed/.claude/agents/app-engineer.md +34 -0
- package/examples/next-supabase-installed/.claude/agents/copy.md +40 -0
- package/examples/next-supabase-installed/.claude/agents/design.md +33 -0
- package/examples/next-supabase-installed/.claude/agents/planner.md +37 -0
- package/examples/next-supabase-installed/.claude/agents/qa.md +37 -0
- package/examples/next-supabase-installed/.claude/agents/security.md +30 -0
- package/examples/next-supabase-installed/.codex/agents/app-engineer.toml +41 -0
- package/examples/next-supabase-installed/.codex/agents/copy.toml +47 -0
- package/examples/next-supabase-installed/.codex/agents/design.toml +40 -0
- package/examples/next-supabase-installed/.codex/agents/planner.toml +44 -0
- package/examples/next-supabase-installed/.codex/agents/qa.toml +44 -0
- package/examples/next-supabase-installed/.codex/agents/security.toml +37 -0
- package/examples/next-supabase-installed/.cursor/agents/app-engineer.md +34 -0
- package/examples/next-supabase-installed/.cursor/agents/copy.md +40 -0
- package/examples/next-supabase-installed/.cursor/agents/design.md +33 -0
- package/examples/next-supabase-installed/.cursor/agents/planner.md +37 -0
- package/examples/next-supabase-installed/.cursor/agents/qa.md +37 -0
- package/examples/next-supabase-installed/.cursor/agents/security.md +30 -0
- package/examples/next-supabase-installed/.cursor/rules/cursor-agent-kit.mdc +12 -0
- package/examples/next-supabase-installed/.cursor/skills/accessibility-wcag/SKILL.md +26 -0
- package/examples/next-supabase-installed/.cursor/skills/browser-qa/SKILL.md +67 -0
- package/examples/next-supabase-installed/.cursor/skills/deslop/SKILL.md +62 -0
- package/examples/next-supabase-installed/.cursor/skills/frontend-design/SKILL.md +107 -0
- package/examples/next-supabase-installed/.cursor/skills/nextjs-app-router/SKILL.md +23 -0
- package/examples/next-supabase-installed/.cursor/skills/owasp-security-review/SKILL.md +23 -0
- package/examples/next-supabase-installed/.cursor/skills/planning/SKILL.md +25 -0
- package/examples/next-supabase-installed/.cursor/skills/postgres-migrations/SKILL.md +21 -0
- package/examples/next-supabase-installed/.cursor/skills/product-copy/SKILL.md +54 -0
- package/examples/next-supabase-installed/.cursor/skills/ship/SKILL.md +22 -0
- package/examples/next-supabase-installed/.cursor/skills/supabase-auth-rls/SKILL.md +23 -0
- package/examples/next-supabase-installed/.cursor/skills/testing-qa/SKILL.md +27 -0
- package/examples/next-supabase-installed/.github/copilot-instructions.md +23 -0
- package/examples/next-supabase-installed/AGENTS.md +30 -0
- package/examples/next-supabase-installed/CLAUDE.md +7 -0
- package/examples/next-supabase-installed/README.md +2 -14
- package/examples/next-supabase-installed/USER_GUIDE.html +808 -0
- package/examples/next-supabase-installed/USER_GUIDE.md +183 -0
- package/examples/next-supabase-installed/skills/accessibility-wcag/SKILL.md +26 -0
- package/examples/next-supabase-installed/skills/browser-qa/SKILL.md +67 -0
- package/examples/next-supabase-installed/skills/deslop/SKILL.md +62 -0
- package/examples/next-supabase-installed/skills/frontend-design/SKILL.md +107 -0
- package/examples/next-supabase-installed/skills/nextjs-app-router/SKILL.md +23 -0
- package/examples/next-supabase-installed/skills/owasp-security-review/SKILL.md +23 -0
- package/examples/next-supabase-installed/skills/planning/SKILL.md +25 -0
- package/examples/next-supabase-installed/skills/postgres-migrations/SKILL.md +21 -0
- package/examples/next-supabase-installed/skills/product-copy/SKILL.md +54 -0
- package/examples/next-supabase-installed/skills/ship/SKILL.md +22 -0
- package/examples/next-supabase-installed/skills/supabase-auth-rls/SKILL.md +23 -0
- package/examples/next-supabase-installed/skills/testing-qa/SKILL.md +27 -0
- package/examples/next-supabase-installed/tree.txt +60 -42
- package/package.json +20 -46
- package/research/agent-skill-gap-report.md +133 -0
- package/skills/accessibility-wcag/SKILL.md +26 -0
- package/skills/browser-qa/SKILL.md +67 -0
- package/skills/deslop/SKILL.md +62 -0
- package/skills/frontend-design/SKILL.md +107 -0
- package/skills/nextjs-app-router/SKILL.md +23 -0
- package/skills/optional/debug/SKILL.md +11 -0
- package/skills/optional/docs/SKILL.md +10 -0
- package/skills/optional/ui-polish/SKILL.md +10 -0
- package/skills/optional/upgrade/SKILL.md +10 -0
- package/skills/owasp-security-review/SKILL.md +23 -0
- package/skills/planning/SKILL.md +25 -0
- package/skills/postgres-migrations/SKILL.md +21 -0
- package/skills/product-copy/SKILL.md +54 -0
- package/skills/ship/SKILL.md +22 -0
- package/skills/supabase-auth-rls/SKILL.md +23 -0
- package/skills/testing-qa/SKILL.md +27 -0
- package/templates/next-supabase/AGENTS.md +19 -129
- package/templates/next-supabase/CLAUDE.md +4 -36
- package/BEST_PRACTICE_EVIDENCE.md +0 -45
- package/DOGFOOD.md +0 -201
- package/GOVERNANCE.md +0 -45
- package/LOOP_CODING.md +0 -107
- package/MAINTAINER_RELEASE.md +0 -100
- package/REPOSITORY_SETTINGS.md +0 -83
- package/RESEARCH_CITATION_POLICY.md +0 -26
- package/SUPPLY_CHAIN.md +0 -57
- package/agents/deployment-observability-engineer.md +0 -13
- package/agents/docs-maintainer.md +0 -17
- package/agents/frontend-design-lead.md +0 -22
- package/agents/lead-architect.md +0 -25
- package/agents/marketing-copy-lead.md +0 -20
- package/agents/nextjs-engineer.md +0 -20
- package/agents/planner.md +0 -20
- package/agents/qa-engineer.md +0 -19
- package/agents/research-analyst.md +0 -13
- package/agents/security-reviewer.md +0 -16
- package/agents/supabase-postgres-engineer.md +0 -19
- package/antigravity/commands/accessibility-pass.toml +0 -16
- package/antigravity/commands/audit.toml +0 -16
- package/antigravity/commands/browser-qa.toml +0 -18
- package/antigravity/commands/copy.toml +0 -16
- package/antigravity/commands/distinctiveness-pass.toml +0 -16
- package/antigravity/commands/frontend.toml +0 -18
- package/antigravity/commands/handoff.toml +0 -16
- package/antigravity/commands/layout-cleanup.toml +0 -16
- package/antigravity/commands/plan.toml +0 -18
- package/antigravity/commands/responsive-cleanup.toml +0 -16
- package/antigravity/commands/review.toml +0 -16
- package/antigravity/commands/screenshot-critique.toml +0 -16
- package/antigravity/commands/security.toml +0 -16
- package/antigravity/commands/setup.toml +0 -16
- package/antigravity/commands/ship.toml +0 -17
- package/antigravity/commands/spec.toml +0 -17
- package/antigravity/commands/test.toml +0 -17
- package/antigravity/commands/ui-audit.toml +0 -17
- package/antigravity/commands/ui-polish.toml +0 -17
- package/antigravity/commands/upgrade.toml +0 -17
- package/antigravity/plugin.json +0 -70
- package/assistant-adapters/antigravity.md +0 -65
- package/assistant-adapters/claude-code-subagents.md +0 -38
- package/assistant-adapters/codex-agents.md +0 -53
- package/assistant-adapters/cursor-frontend.mdc +0 -16
- package/assistant-adapters/cursor-planner.mdc +0 -14
- package/assistant-adapters/cursor-security.mdc +0 -18
- package/assistant-adapters/github-copilot-instructions.md +0 -35
- package/assistant-adapters/github-next-supabase.instructions.md +0 -28
- package/assistant-adapters/model-selection/claude-code-subagents-with-models.md +0 -32
- package/assistant-adapters/model-selection/codex-config.example.toml +0 -32
- package/assistant-adapters/model-selection/cursor-model-selection.mdc +0 -24
- package/assistant-adapters/model-selection/github-copilot-model-selection.md +0 -20
- package/assistant-adapters/orchestrator-runtime.md +0 -39
- package/checklists/accessibility.md +0 -12
- package/checklists/agent-council.md +0 -13
- package/checklists/brand-content.md +0 -15
- package/checklists/deployment.md +0 -10
- package/checklists/design-critique.md +0 -13
- package/checklists/frontend-distinctiveness.md +0 -12
- package/checklists/frontend-product-quality.md +0 -13
- package/checklists/frontend-quality.md +0 -21
- package/checklists/marketing-copy.md +0 -11
- package/checklists/owasp.md +0 -12
- package/checklists/rls.md +0 -10
- package/checklists/testing.md +0 -12
- package/checklists/ui-acceptance-rubric.md +0 -58
- package/checklists/ui-detectors.md +0 -81
- package/checklists/upgrade.md +0 -13
- package/checklists/visual-regression.md +0 -11
- package/design-adapters/claude-design.prompt.md +0 -27
- package/design-adapters/figma.prompt.md +0 -18
- package/design-adapters/google-stitch.prompt.md +0 -36
- package/design-adapters/human-designer-brief.prompt.md +0 -36
- package/design-briefs/admin-dashboard.md +0 -21
- package/design-briefs/ai-workflow-product.md +0 -25
- package/design-briefs/community-social.md +0 -26
- package/design-briefs/content-app.md +0 -21
- package/design-briefs/ecommerce.md +0 -25
- package/design-briefs/education-course.md +0 -25
- package/design-briefs/marketplace.md +0 -21
- package/design-briefs/portfolio-venue.md +0 -25
- package/design-briefs/saas.md +0 -21
- package/design-briefs/tool.md +0 -21
- package/examples/next-supabase-installed/.agent-kit/agent-roster.json +0 -267
- package/examples/next-supabase-installed/.agent-kit/model-routing.json +0 -171
- package/examples/next-supabase-installed/.agent-kit/overrides.json +0 -3
- package/examples/next-supabase-installed/audit-output.json +0 -405
- package/model-routing/default-model-routing.json +0 -171
- package/profiles/admin-app.md +0 -17
- package/profiles/content-app.md +0 -17
- package/profiles/marketplace.md +0 -17
- package/profiles/saas.md +0 -17
- package/profiles/stack-next-firebase.md +0 -25
- package/profiles/stack-next-postgres.md +0 -24
- package/profiles/stack-remix-supabase.md +0 -24
- package/prompts/audit-project-setup.md +0 -28
- package/prompts/brand-content-intake.md +0 -17
- package/prompts/copy-review.md +0 -15
- package/prompts/council-session-review.md +0 -17
- package/prompts/creative-direction-matrix.md +0 -22
- package/prompts/design-critique-gate.md +0 -28
- package/prompts/docs-update.md +0 -16
- package/prompts/frontend-design-review.md +0 -35
- package/prompts/frontend-distinctiveness-benchmark.md +0 -32
- package/prompts/frontend-product-quality-scorecard.md +0 -35
- package/prompts/implement-feature.md +0 -14
- package/prompts/lifecycle-command-index.md +0 -180
- package/prompts/migration-review.md +0 -14
- package/prompts/screenshot-review.md +0 -28
- package/prompts/security-review.md +0 -17
- package/prompts/ui-command-index.md +0 -124
- package/prompts/upgrade-review.md +0 -18
- package/prompts/visual-qa-plan.md +0 -16
- package/research/proposed-updates.md +0 -70
- package/research/scan-config.json +0 -261
- package/research/scan-plan.md +0 -24
- package/research/summaries/.gitkeep +0 -1
- package/research/summaries/agent-workflow-patterns.md +0 -37
- package/research/summaries/agentic-engineering-maturity-levels.md +0 -54
- package/research/summaries/creative-design-patterns.md +0 -38
- package/research/summaries/design-critique-patterns.md +0 -34
- package/research/summaries/docs-and-agent-patterns.md +0 -64
- package/research/summaries/dogfood-adoption-patterns.md +0 -33
- package/research/summaries/frontend-design-patterns.md +0 -64
- package/research/summaries/frontend-distinctiveness-benchmark-patterns.md +0 -38
- package/research/summaries/frontend-product-quality-rubric-patterns.md +0 -37
- package/research/summaries/maturity-model-patterns.md +0 -29
- package/research/summaries/nextjs-patterns.md +0 -65
- package/research/summaries/repo-health-patterns.md +0 -41
- package/research/summaries/scan-overview.md +0 -46
- package/research/summaries/security-patterns.md +0 -64
- package/research/summaries/supabase-rls-patterns.md +0 -54
- package/research/summaries/supply-chain-patterns.md +0 -38
- package/research/summaries/testing-patterns.md +0 -63
- package/research/summaries/upgrade-lifecycle-patterns.md +0 -26
- package/research/summaries/visual-qa-patterns.md +0 -39
- package/rosters/next-supabase-default-council.json +0 -267
- package/runtime-skills/README.md +0 -7
- package/runtime-skills/accessibility-wcag/SKILL.md +0 -8
- package/runtime-skills/agent-handoff-tracing/SKILL.md +0 -8
- package/runtime-skills/best-practice-maturity-review/SKILL.md +0 -8
- package/runtime-skills/content-first-design/SKILL.md +0 -8
- package/runtime-skills/conversion-copywriting/SKILL.md +0 -8
- package/runtime-skills/deployment-observability/SKILL.md +0 -8
- package/runtime-skills/docs-maintainer/SKILL.md +0 -8
- package/runtime-skills/frontend-design-system/SKILL.md +0 -8
- package/runtime-skills/frontend-distinctiveness-benchmark/SKILL.md +0 -8
- package/runtime-skills/frontend-product-quality-rubric/SKILL.md +0 -8
- package/runtime-skills/landing-page-copy/SKILL.md +0 -8
- package/runtime-skills/nextjs-app-router/SKILL.md +0 -8
- package/runtime-skills/onboarding-empty-state-copy/SKILL.md +0 -8
- package/runtime-skills/owasp-security-review/SKILL.md +0 -8
- package/runtime-skills/planning-council/SKILL.md +0 -8
- package/runtime-skills/positioning-messaging/SKILL.md +0 -8
- package/runtime-skills/postgres-migrations/SKILL.md +0 -8
- package/runtime-skills/product-voice-tone/SKILL.md +0 -8
- package/runtime-skills/reference-led-design-critique/SKILL.md +0 -8
- package/runtime-skills/supabase-auth-rls/SKILL.md +0 -8
- package/runtime-skills/testing-qa/SKILL.md +0 -8
- package/runtime-skills/ui-improvement-harness/SKILL.md +0 -12
- package/runtime-skills/upgrade-maintenance/SKILL.md +0 -8
- package/runtime-skills/visual-regression-qa/SKILL.md +0 -8
- package/schemas/agent-roster.schema.json +0 -54
- package/schemas/agentic-level.schema.json +0 -47
- package/schemas/audit-report-v2.schema.json +0 -71
- package/schemas/audit-report.schema.json +0 -50
- package/schemas/correction-rules.schema.json +0 -32
- package/schemas/council-session.schema.json +0 -65
- package/schemas/model-routing.schema.json +0 -72
- package/schemas/onboarding-state.schema.json +0 -36
- package/schemas/orchestrator.schema.json +0 -167
- package/schemas/project-context.schema.json +0 -94
- package/schemas/runtime-event.schema.json +0 -66
- package/schemas/runtime-run.schema.json +0 -58
- package/schemas/session-event.schema.json +0 -48
- package/schemas/studio-session.schema.json +0 -48
- package/skills/accessibility-wcag.md +0 -15
- package/skills/agent-handoff-tracing.md +0 -44
- package/skills/best-practice-maturity-review.md +0 -26
- package/skills/content-first-design.md +0 -50
- package/skills/conversion-copywriting.md +0 -38
- package/skills/deployment-observability.md +0 -14
- package/skills/docs-maintainer.md +0 -19
- package/skills/frontend-design-system.md +0 -68
- package/skills/frontend-distinctiveness-benchmark.md +0 -40
- package/skills/frontend-product-quality-rubric.md +0 -59
- package/skills/landing-page-copy.md +0 -29
- package/skills/nextjs-app-router.md +0 -18
- package/skills/onboarding-empty-state-copy.md +0 -37
- package/skills/owasp-security-review.md +0 -19
- package/skills/planning-council.md +0 -21
- package/skills/positioning-messaging.md +0 -42
- package/skills/postgres-migrations.md +0 -14
- package/skills/product-voice-tone.md +0 -35
- package/skills/reference-led-design-critique.md +0 -48
- package/skills/supabase-auth-rls.md +0 -20
- package/skills/testing-qa.md +0 -15
- package/skills/ui-improvement-harness.md +0 -96
- package/skills/upgrade-maintenance.md +0 -32
- package/skills/visual-regression-qa.md +0 -42
- package/templates/next-supabase/.agent-kit/orchestrator.json +0 -48
- package/templates/next-supabase/.agent-kit/runtime/gitignore.template +0 -2
- package/templates/next-supabase/.github/workflows/agent-kit-audit.yml +0 -34
- package/templates/next-supabase/AGENT_ROSTER.md +0 -101
- package/templates/next-supabase/ASSISTANT_ADAPTERS.md +0 -146
- package/templates/next-supabase/COUNCIL.md +0 -54
- package/templates/next-supabase/DECISIONS.md +0 -87
- package/templates/next-supabase/DEPLOYMENT.md +0 -51
- package/templates/next-supabase/DESIGN.md +0 -180
- package/templates/next-supabase/DOCS.md +0 -80
- package/templates/next-supabase/LOOP_CODING.md +0 -98
- package/templates/next-supabase/MESSAGING.md +0 -81
- package/templates/next-supabase/MODEL_ROUTING.md +0 -130
- package/templates/next-supabase/QUALITY_GATES.md +0 -98
- package/templates/next-supabase/SKILLS.md +0 -235
- package/templates/next-supabase/SPEC.md +0 -122
- package/templates/next-supabase/STYLE_GUIDE.md +0 -121
- package/templates/next-supabase/TESTING.md +0 -107
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
# Frontend Design Lead Agent
|
|
2
|
-
|
|
3
|
-
## Purpose
|
|
4
|
-
|
|
5
|
-
Prevent generic AI-looking UI by owning content-first creative direction, design-system quality, visual QA, accessibility, and screenshot acceptance.
|
|
6
|
-
|
|
7
|
-
## Responsibilities
|
|
8
|
-
|
|
9
|
-
- Require brand/content intake before visual implementation starts.
|
|
10
|
-
- Produce or review at least two distinct creative directions before one is selected.
|
|
11
|
-
- Require reference-set evidence, anti-references, source-safety notes, and a design critique verdict for significant frontend work.
|
|
12
|
-
- Require a frontend distinctiveness benchmark for significant frontend work: first-screen proof, content fingerprint, reference benchmark, asset provenance, state proof, and visual QA proof.
|
|
13
|
-
- Score significant frontend work with the product-quality rubric before acceptance.
|
|
14
|
-
- Review information architecture, visual hierarchy, density, responsive behavior, imagery, copy, and component states.
|
|
15
|
-
- Reject default AI-site tropes: purple-blue gradients, vague SaaS copy, fake analytics, and card soup.
|
|
16
|
-
- Require real workflow screens, real content or asset assumptions, and meaningful empty/error/loading states.
|
|
17
|
-
- Require visual QA evidence for important responsive screens and reusable component states.
|
|
18
|
-
- Use provider-neutral design briefs for Stitch, Claude, Figma, or human design review.
|
|
19
|
-
|
|
20
|
-
## Quality Bar
|
|
21
|
-
|
|
22
|
-
The first screen should communicate the actual product, content, object, workflow, or task. A frontend change is not accepted until `DESIGN.md`, reference-led critique, distinctiveness benchmark, creative-direction rationale, frontend product-quality scorecard, desktop/mobile screenshot evidence, and visual QA coverage are sufficient for the change risk.
|
package/agents/lead-architect.md
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# Lead Architect Agent
|
|
2
|
-
|
|
3
|
-
## Purpose
|
|
4
|
-
|
|
5
|
-
Own architecture, affected-layer mapping, tradeoffs, and final delivery direction.
|
|
6
|
-
|
|
7
|
-
## Responsibilities
|
|
8
|
-
|
|
9
|
-
- Confirm existing behavior before changing it.
|
|
10
|
-
- Map changes across data, business logic, presentation, auth, deployment, and docs.
|
|
11
|
-
- Verify the requested maturity target in `QUALITY_GATES.md` is realistic for the scope.
|
|
12
|
-
- Choose the right boundary for logic: SQL/RLS, Route Handler, Server Action, Server Component, Client Component, or shared library.
|
|
13
|
-
- Keep implementation scoped and preserve behavioral contracts.
|
|
14
|
-
- Record architecture handoff decisions, risks, and evidence in `COUNCIL.md` for meaningful core changes.
|
|
15
|
-
- Record major decisions in `DECISIONS.md`.
|
|
16
|
-
|
|
17
|
-
## Review Questions
|
|
18
|
-
|
|
19
|
-
- What existing capability must be preserved?
|
|
20
|
-
- Is this baseline, strong, or best-practice work, and what evidence proves that level?
|
|
21
|
-
- Which layers are affected?
|
|
22
|
-
- What security boundary changes?
|
|
23
|
-
- What test evidence proves the change works?
|
|
24
|
-
- What council-session evidence should survive beyond the chat?
|
|
25
|
-
- Which docs need updating?
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
# Marketing Copy Lead Agent
|
|
2
|
-
|
|
3
|
-
## Purpose
|
|
4
|
-
|
|
5
|
-
Own positioning, value proposition, conversion copy, product voice, and UX copy so public-facing pages and SaaS flows do not rely on generic marketing filler.
|
|
6
|
-
|
|
7
|
-
## Responsibilities
|
|
8
|
-
|
|
9
|
-
- Ask discovery questions before writing final copy when audience, offer, outcome, differentiator, proof, or conversion goal is unclear.
|
|
10
|
-
- Maintain `MESSAGING.md` as the positioning, value proposition, voice, and copy-evidence contract.
|
|
11
|
-
- Define the primary audience, their pain, desired outcome, current alternatives, and buying or adoption trigger.
|
|
12
|
-
- Turn product facts into specific headlines, CTAs, onboarding copy, empty states, pricing copy, and supporting page sections.
|
|
13
|
-
- Require proof points, examples, constraints, and objection handling before making strong claims.
|
|
14
|
-
- Reject vague SaaS copy, inflated AI claims, unsupported superlatives, and copy that could fit any competitor.
|
|
15
|
-
- Handoff copy direction to Frontend Design Lead so layout, hierarchy, imagery, and interaction tone support the message.
|
|
16
|
-
- Handoff implemented copy to QA and Docs when claims, workflows, onboarding, or public pages change.
|
|
17
|
-
|
|
18
|
-
## Quality Bar
|
|
19
|
-
|
|
20
|
-
Copy is not accepted until it explains who the product is for, what problem it solves, why this approach is different, what proof supports the claim, what action the user should take, and what assumptions still need validation.
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
# Next.js Engineer Agent
|
|
2
|
-
|
|
3
|
-
## Purpose
|
|
4
|
-
|
|
5
|
-
Own App Router implementation, rendering boundaries, data loading, forms, and UI state.
|
|
6
|
-
|
|
7
|
-
## Responsibilities
|
|
8
|
-
|
|
9
|
-
- Prefer Server Components unless browser state or events require Client Components.
|
|
10
|
-
- Keep user-specific data out of shared caches.
|
|
11
|
-
- Avoid exposing secrets to the client.
|
|
12
|
-
- Add loading, error, empty, and success states.
|
|
13
|
-
- Keep route handlers and server actions thin and validated.
|
|
14
|
-
|
|
15
|
-
## Deliverables
|
|
16
|
-
|
|
17
|
-
- Working UI and route behavior.
|
|
18
|
-
- Clear server/client boundaries.
|
|
19
|
-
- Tests or documented test gaps.
|
|
20
|
-
- Updated docs for changed workflows.
|
package/agents/planner.md
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
# Planner Agent
|
|
2
|
-
|
|
3
|
-
## Purpose
|
|
4
|
-
|
|
5
|
-
Own planning, scope breakdown, sequencing, and council routing before implementation starts.
|
|
6
|
-
|
|
7
|
-
## Responsibilities
|
|
8
|
-
|
|
9
|
-
- Convert user intent into phased, checkable work.
|
|
10
|
-
- Identify whether a request is planning-only, frontend-only, security-sensitive, or a core change.
|
|
11
|
-
- Select the matching workflow from `.agent-kit/agent-roster.json` when available.
|
|
12
|
-
- Classify meaningful work against `QUALITY_GATES.md` as baseline, strong, or best-practice.
|
|
13
|
-
- Route core changes to Lead Architect before implementation.
|
|
14
|
-
- Name required agent handoffs and acceptance evidence.
|
|
15
|
-
- Start or update `COUNCIL.md` for meaningful multi-agent work.
|
|
16
|
-
- Keep the roadmap updated when a task changes delivery status.
|
|
17
|
-
|
|
18
|
-
## Required Handoff
|
|
19
|
-
|
|
20
|
-
Planning is complete only when the next owning agent, maturity target, affected layers, preserved behavior, risks, verification steps, and council evidence path are explicit.
|
package/agents/qa-engineer.md
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
# QA Engineer Agent
|
|
2
|
-
|
|
3
|
-
## Purpose
|
|
4
|
-
|
|
5
|
-
Own tests, regression coverage, smoke checks, and acceptance evidence.
|
|
6
|
-
|
|
7
|
-
## Responsibilities
|
|
8
|
-
|
|
9
|
-
- Add unit tests for core logic.
|
|
10
|
-
- Add regression tests for preserved behavior.
|
|
11
|
-
- Add Playwright smoke tests for critical paths.
|
|
12
|
-
- Add visual regression or screenshot evidence for high-risk UI changes.
|
|
13
|
-
- Prioritize auth, data mutations, admin flows, and edge cases.
|
|
14
|
-
- Compare evidence against the target level in `QUALITY_GATES.md`.
|
|
15
|
-
- Report test gaps explicitly.
|
|
16
|
-
|
|
17
|
-
## Acceptance Evidence
|
|
18
|
-
|
|
19
|
-
Include commands run, results, failed checks, and residual risks.
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# Research Analyst Agent
|
|
2
|
-
|
|
3
|
-
## Purpose
|
|
4
|
-
|
|
5
|
-
Own open-source repo research and conversion of evidence into reusable kit improvements.
|
|
6
|
-
|
|
7
|
-
## Responsibilities
|
|
8
|
-
|
|
9
|
-
- Select active, relevant repositories.
|
|
10
|
-
- Separate popular patterns from good patterns.
|
|
11
|
-
- Identify practices to adopt, avoid, or investigate.
|
|
12
|
-
- Never copy third-party code.
|
|
13
|
-
- Convert repeated findings into proposed template, skill, or checklist updates.
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
# Security Reviewer Agent
|
|
2
|
-
|
|
3
|
-
## Purpose
|
|
4
|
-
|
|
5
|
-
Review implementation against OWASP Top 10 and project-specific auth/data boundaries.
|
|
6
|
-
|
|
7
|
-
## Responsibilities
|
|
8
|
-
|
|
9
|
-
- Check broken access control, IDOR, injection, SSRF, misconfiguration, vulnerable dependencies, and unsafe secrets.
|
|
10
|
-
- Verify inputs are validated and outputs are safely rendered.
|
|
11
|
-
- Ensure errors are explicit without leaking internals.
|
|
12
|
-
- Require RLS or equivalent data-boundary enforcement.
|
|
13
|
-
|
|
14
|
-
## Output
|
|
15
|
-
|
|
16
|
-
Lead with findings, severity, affected file or behavior, exploit path, and remediation.
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
# Supabase/Postgres Engineer Agent
|
|
2
|
-
|
|
3
|
-
## Purpose
|
|
4
|
-
|
|
5
|
-
Own Supabase Auth, SSR clients, schema, migrations, RLS, Storage policies, SQL functions, and indexes.
|
|
6
|
-
|
|
7
|
-
## Responsibilities
|
|
8
|
-
|
|
9
|
-
- Enforce authorization through RLS for user-owned and tenant-owned data.
|
|
10
|
-
- Keep service-role keys server-only.
|
|
11
|
-
- Validate migration order and rollback risk.
|
|
12
|
-
- Use constraints and indexes to protect integrity and performance.
|
|
13
|
-
- Document policy assumptions.
|
|
14
|
-
|
|
15
|
-
## Required Review
|
|
16
|
-
|
|
17
|
-
- Can a user access another user's data by changing an ID?
|
|
18
|
-
- Are policies present for select, insert, update, and delete as needed?
|
|
19
|
-
- Does every privileged operation use the least privilege possible?
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
name = "accessibility-pass"
|
|
2
|
-
description = "Run a WCAG 2.1 AA-oriented UI pass for semantics, keyboard flow, focus, labels, contrast, and motion."
|
|
3
|
-
|
|
4
|
-
prompt = """
|
|
5
|
-
Run the accessibility pass workflow.
|
|
6
|
-
|
|
7
|
-
Canonical sources: DESIGN.md, STYLE_GUIDE.md, TESTING.md, QUALITY_GATES.md, .agent-kit/agent-roster.json, .agent-kit/skills/ui-improvement-harness.md, .agent-kit/skills/accessibility-wcag.md, .agent-kit/checklists/ui-detectors.md, .agent-kit/checklists/ui-acceptance-rubric.md, and .agent-kit/prompts/ui-command-index.md.
|
|
8
|
-
|
|
9
|
-
Workflow:
|
|
10
|
-
1. Check semantics, headings, landmarks, forms, labels, tables, buttons, and ARIA use.
|
|
11
|
-
2. Check keyboard navigation, visible focus, tab order, escape/close behavior, and skip path when applicable.
|
|
12
|
-
3. Check contrast, reduced motion, error association, touch targets, and status announcements.
|
|
13
|
-
4. Keep accessibility checks separate from visual-only approval.
|
|
14
|
-
|
|
15
|
-
Required outputs: accessibility findings by severity, fixes made or proposed, skipped checks, test evidence, remaining risks.
|
|
16
|
-
"""
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
name = "audit"
|
|
2
|
-
description = "Run the Agent Kit maturity audit and convert findings into concrete follow-up work."
|
|
3
|
-
|
|
4
|
-
prompt = """
|
|
5
|
-
Run the Agent Kit audit workflow.
|
|
6
|
-
|
|
7
|
-
Canonical sources: QUALITY_GATES.md, AGENTS.md, .agent-kit/agent-roster.json, SPEC.md, SECURITY.md, TESTING.md, DEPLOYMENT.md, and ASSISTANT_ADAPTERS.md.
|
|
8
|
-
|
|
9
|
-
Workflow:
|
|
10
|
-
1. Run `agent-kit audit --json`.
|
|
11
|
-
2. Classify failures before warnings.
|
|
12
|
-
3. Map each finding to the responsible council role.
|
|
13
|
-
4. Record remediation tasks and evidence with `agent-kit session output` when a session is active.
|
|
14
|
-
|
|
15
|
-
Required outputs: readiness level, failures, warnings, owner/council role, remediation order, verification command.
|
|
16
|
-
"""
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
name = "browser-qa"
|
|
2
|
-
description = "Run a live browser QA loop with desktop, mobile, state, and authenticated screen evidence."
|
|
3
|
-
|
|
4
|
-
prompt = """
|
|
5
|
-
Run the live browser QA workflow.
|
|
6
|
-
|
|
7
|
-
Canonical sources: DESIGN.md, STYLE_GUIDE.md, TESTING.md, QUALITY_GATES.md, .agent-kit/agent-roster.json, .agent-kit/skills/ui-improvement-harness.md, .agent-kit/checklists/ui-detectors.md, .agent-kit/checklists/ui-acceptance-rubric.md, .agent-kit/prompts/screenshot-review.md, .agent-kit/prompts/visual-qa-plan.md, and .agent-kit/prompts/ui-command-index.md.
|
|
8
|
-
|
|
9
|
-
Workflow:
|
|
10
|
-
1. Start or identify the dev/preview server and target routes.
|
|
11
|
-
2. Open the target with required auth, role, tenant, and data state.
|
|
12
|
-
3. Capture desktop and mobile screenshots.
|
|
13
|
-
4. Run detector, screenshot critique, accessibility pass, and responsive cleanup.
|
|
14
|
-
5. Apply scoped fixes and repeat until no blockers remain and major findings are fixed or documented.
|
|
15
|
-
6. Record evidence with agent-kit session output when Agent Studio is in use.
|
|
16
|
-
|
|
17
|
-
Required outputs: route, auth state, commands run, screenshots, detector results, fixes, final verdict.
|
|
18
|
-
"""
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
name = "copy"
|
|
2
|
-
description = "Route public-facing and conversion-facing copy through messaging and proof gates."
|
|
3
|
-
|
|
4
|
-
prompt = """
|
|
5
|
-
Run the marketing-copy workflow.
|
|
6
|
-
|
|
7
|
-
Canonical sources: MESSAGING.md, DESIGN.md, QUALITY_GATES.md, .agent-kit/agent-roster.json, .agent-kit/skills/positioning-messaging.md, and .agent-kit/skills/conversion-copywriting.md.
|
|
8
|
-
|
|
9
|
-
Workflow:
|
|
10
|
-
1. Start with Marketing Copy Lead for public-facing, onboarding, pricing, CTA, landing, empty-state, or conversion-facing copy.
|
|
11
|
-
2. Confirm audience, pain, outcome, differentiator, proof, objections, voice, and conversion goal.
|
|
12
|
-
3. Mark unsupported claims as assumptions.
|
|
13
|
-
4. Handoff accepted copy to Frontend Design Lead for hierarchy and layout fit.
|
|
14
|
-
|
|
15
|
-
Required outputs: audience, problem/pain/outcome, value proposition, proof, objections, voice/tone, CTA hierarchy, risky-claim review.
|
|
16
|
-
"""
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
name = "distinctiveness-pass"
|
|
2
|
-
description = "Check that UI is product-specific, source-safe, and not generic SaaS or AI-site styling."
|
|
3
|
-
|
|
4
|
-
prompt = """
|
|
5
|
-
Run the visual distinctiveness pass workflow.
|
|
6
|
-
|
|
7
|
-
Canonical sources: DESIGN.md, STYLE_GUIDE.md, MESSAGING.md, QUALITY_GATES.md, .agent-kit/agent-roster.json, .agent-kit/skills/ui-improvement-harness.md, .agent-kit/skills/frontend-distinctiveness-benchmark.md, .agent-kit/checklists/ui-detectors.md, .agent-kit/checklists/ui-acceptance-rubric.md, and .agent-kit/prompts/ui-command-index.md.
|
|
8
|
-
|
|
9
|
-
Workflow:
|
|
10
|
-
1. Compare the first viewport to product category, audience, workflow, and content fingerprint.
|
|
11
|
-
2. Confirm references were translated into lessons without copying source layouts, copy, assets, or brand marks.
|
|
12
|
-
3. Identify fake metrics, vague claims, abstract filler, interchangeable card stacks, and generic visual tropes.
|
|
13
|
-
4. Re-score distinctiveness and product quality where significant UI work is involved.
|
|
14
|
-
|
|
15
|
-
Required outputs: product-specific evidence, generic-risk findings, source-safety notes, required changes, final distinctiveness verdict.
|
|
16
|
-
"""
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
name = "frontend"
|
|
2
|
-
description = "Route frontend work through content-first design, accessibility, and visual QA gates."
|
|
3
|
-
|
|
4
|
-
prompt = """
|
|
5
|
-
Run the frontend-change workflow.
|
|
6
|
-
|
|
7
|
-
Canonical sources: DESIGN.md, STYLE_GUIDE.md, MESSAGING.md, QUALITY_GATES.md, .agent-kit/agent-roster.json, .agent-kit/design-briefs/, .agent-kit/prompts/screenshot-review.md, .agent-kit/prompts/ui-command-index.md, .agent-kit/checklists/ui-detectors.md, .agent-kit/checklists/ui-acceptance-rubric.md, .agent-kit/skills/frontend-design-system.md, and .agent-kit/skills/ui-improvement-harness.md.
|
|
8
|
-
|
|
9
|
-
Workflow:
|
|
10
|
-
1. Start with Frontend Design Lead before implementation.
|
|
11
|
-
2. Confirm brand/content intake, user needs, real content, creative direction, references, anti-references, and source-safety notes.
|
|
12
|
-
3. Require distinctiveness benchmark and product-quality scorecard for significant UI.
|
|
13
|
-
4. Apply the UI improvement command index when auditing, polishing, cleaning layout, reviewing screenshots, or running browser QA.
|
|
14
|
-
5. Preserve WCAG 2.1 AA, keyboard flow, responsive states, and loading/error/empty/success states.
|
|
15
|
-
6. Record UI detector findings, visual QA, and accessibility evidence with `agent-kit session output`.
|
|
16
|
-
|
|
17
|
-
Required outputs: design direction, reference evidence, product-specific UI rationale, UI detector findings, state coverage, accessibility checks, desktop/mobile visual QA, authenticated screen evidence when applicable.
|
|
18
|
-
"""
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
name = "handoff"
|
|
2
|
-
description = "Record durable Agent Studio handoff evidence between council roles."
|
|
3
|
-
|
|
4
|
-
prompt = """
|
|
5
|
-
Run the Agent Kit handoff workflow.
|
|
6
|
-
|
|
7
|
-
Canonical sources: COUNCIL.md, .agent-kit/council-sessions/, .agent-kit/schemas/session-event.schema.json, AGENT_ROSTER.md, and .agent-kit/agent-roster.json.
|
|
8
|
-
|
|
9
|
-
Workflow:
|
|
10
|
-
1. Identify source agent, target agent, decision, risk, and evidence.
|
|
11
|
-
2. Use `agent-kit session handoff --from <agent> --to <agent> --decision <decision> --risk <risk> --evidence <evidence>`.
|
|
12
|
-
3. Mark required outputs with `agent-kit session output`.
|
|
13
|
-
4. Run `agent-kit session render`.
|
|
14
|
-
|
|
15
|
-
Required outputs: source agent, target agent, decision, risk, evidence path, required-output status, rendered session path.
|
|
16
|
-
"""
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
name = "layout-cleanup"
|
|
2
|
-
description = "Clean crowded layouts, weak hierarchy, card nesting, overflow, and inconsistent spacing."
|
|
3
|
-
|
|
4
|
-
prompt = """
|
|
5
|
-
Run the layout cleanup workflow.
|
|
6
|
-
|
|
7
|
-
Canonical sources: DESIGN.md, STYLE_GUIDE.md, TESTING.md, QUALITY_GATES.md, .agent-kit/agent-roster.json, .agent-kit/skills/ui-improvement-harness.md, .agent-kit/checklists/ui-detectors.md, .agent-kit/checklists/ui-acceptance-rubric.md, and .agent-kit/prompts/ui-command-index.md.
|
|
8
|
-
|
|
9
|
-
Workflow:
|
|
10
|
-
1. Identify primary task, secondary tasks, content hierarchy, and target viewport range.
|
|
11
|
-
2. Remove unnecessary nesting, repeated surfaces, card-within-card patterns, arbitrary dividers, and workflow-obscuring decoration.
|
|
12
|
-
3. Normalize spacing, grouping, alignment, heading scale, and responsive containers.
|
|
13
|
-
4. Verify text fit, truncation, overlap, and horizontal overflow on desktop and mobile.
|
|
14
|
-
|
|
15
|
-
Required outputs: layout findings, cleanup actions, preserved workflow, desktop/mobile evidence, remaining layout risks.
|
|
16
|
-
"""
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
name = "plan"
|
|
2
|
-
description = "Create an implementation-ready Agent Kit plan through Planner and Lead Architect routing."
|
|
3
|
-
|
|
4
|
-
prompt = """
|
|
5
|
-
Run the planning workflow.
|
|
6
|
-
|
|
7
|
-
Canonical sources: AGENTS.md, AGENT_ROSTER.md, .agent-kit/agent-roster.json, MODEL_ROUTING.md, .agent-kit/model-routing.json, .agent-kit/project-context.md, .agent-kit/corrections/project-rules.json, COUNCIL.md, and QUALITY_GATES.md.
|
|
8
|
-
|
|
9
|
-
Workflow:
|
|
10
|
-
1. Start with Planner.
|
|
11
|
-
2. Name the active workflow and maturity target from QUALITY_GATES.md.
|
|
12
|
-
3. Map affected layers: data, business logic, presentation, auth, deployment, docs, and tests.
|
|
13
|
-
4. Name preserved behavior and compatibility constraints.
|
|
14
|
-
5. Route core changes through Lead Architect before implementation.
|
|
15
|
-
6. Record decision, risk, next handoff, and required outputs with `agent-kit session ...` when available.
|
|
16
|
-
|
|
17
|
-
Required outputs: goal, affected layers, preserved capabilities, implementation sequence, risks, tests, docs, handoffs, acceptance criteria.
|
|
18
|
-
"""
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
name = "responsive-cleanup"
|
|
2
|
-
description = "Verify and repair mobile and responsive UI behavior with required desktop and mobile evidence."
|
|
3
|
-
|
|
4
|
-
prompt = """
|
|
5
|
-
Run the responsive cleanup workflow.
|
|
6
|
-
|
|
7
|
-
Canonical sources: DESIGN.md, STYLE_GUIDE.md, TESTING.md, QUALITY_GATES.md, .agent-kit/agent-roster.json, .agent-kit/skills/ui-improvement-harness.md, .agent-kit/checklists/ui-detectors.md, .agent-kit/checklists/ui-acceptance-rubric.md, and .agent-kit/prompts/ui-command-index.md.
|
|
8
|
-
|
|
9
|
-
Workflow:
|
|
10
|
-
1. Review mobile width, desktop width, and project-specific breakpoint assumptions.
|
|
11
|
-
2. Verify tap targets, text fit, navigation, primary action visibility, sticky UI, scroll behavior, and viewport-safe spacing.
|
|
12
|
-
3. Verify relevant loading, empty, error, disabled, success, permission, and focus states on mobile.
|
|
13
|
-
4. Capture or request desktop and mobile screenshots before acceptance.
|
|
14
|
-
|
|
15
|
-
Required outputs: viewports checked, responsive findings, fixes made or proposed, screenshots, remaining risks.
|
|
16
|
-
"""
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
name = "review"
|
|
2
|
-
description = "Run pre-merge code health review with QA and conditional Security Reviewer routing."
|
|
3
|
-
|
|
4
|
-
prompt = """
|
|
5
|
-
Run the code-review workflow.
|
|
6
|
-
|
|
7
|
-
Canonical sources: TESTING.md, SECURITY.md, QUALITY_GATES.md, AGENTS.md, .agent-kit/agent-roster.json, .agent-kit/skills/testing-qa.md, .agent-kit/skills/owasp-security-review.md, and .agent-kit/prompts/lifecycle-command-index.md.
|
|
8
|
-
|
|
9
|
-
Workflow:
|
|
10
|
-
1. Route through QA Engineer for behavior, regression, and test evidence.
|
|
11
|
-
2. Include Security Reviewer when auth, RLS, data mutation, dependency, secret, or external-call boundaries changed.
|
|
12
|
-
3. Return findings by severity with concrete remediation.
|
|
13
|
-
4. Distinguish this from release GO/NO-GO, which belongs to `/ship`.
|
|
14
|
-
|
|
15
|
-
Required outputs: reviewed scope, findings by severity, required fixes, security notes when applicable, merge recommendation.
|
|
16
|
-
"""
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
name = "screenshot-critique"
|
|
2
|
-
description = "Critique desktop, mobile, state, and authenticated screenshots against design and detector rules."
|
|
3
|
-
|
|
4
|
-
prompt = """
|
|
5
|
-
Run the screenshot critique workflow.
|
|
6
|
-
|
|
7
|
-
Canonical sources: DESIGN.md, STYLE_GUIDE.md, TESTING.md, QUALITY_GATES.md, .agent-kit/agent-roster.json, .agent-kit/skills/ui-improvement-harness.md, .agent-kit/checklists/ui-detectors.md, .agent-kit/checklists/ui-acceptance-rubric.md, .agent-kit/prompts/screenshot-review.md, and .agent-kit/prompts/ui-command-index.md.
|
|
8
|
-
|
|
9
|
-
Workflow:
|
|
10
|
-
1. Name each screenshot, viewport, route, auth state, data state, and UI state.
|
|
11
|
-
2. Run screenshot review, detector checklist, and accessibility risk scan.
|
|
12
|
-
3. Compare against DESIGN.md, STYLE_GUIDE.md, and selected creative direction.
|
|
13
|
-
4. Return concrete fixes and missing screenshot evidence.
|
|
14
|
-
|
|
15
|
-
Required outputs: screenshot inventory, blockers, high-value fixes, accepted areas, missing screenshots, release verdict.
|
|
16
|
-
"""
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
name = "security"
|
|
2
|
-
description = "Run OWASP, auth, RLS, dependency, secret, and external-call review before acceptance."
|
|
3
|
-
|
|
4
|
-
prompt = """
|
|
5
|
-
Run the security-review workflow.
|
|
6
|
-
|
|
7
|
-
Canonical sources: SECURITY.md, .agent-kit/checklists/owasp.md, .agent-kit/checklists/rls.md, .agent-kit/skills/owasp-security-review.md, AGENTS.md, and .agent-kit/agent-roster.json.
|
|
8
|
-
|
|
9
|
-
Workflow:
|
|
10
|
-
1. Route through Security Reviewer for auth, RLS, API, Server Action, data mutation, dependency, secret, external-call, upload, or release-risk changes.
|
|
11
|
-
2. Check OWASP Top 10, IDOR, SSRF, injection, broken auth, unsafe output rendering, secret leakage, and vulnerable dependencies.
|
|
12
|
-
3. Verify service-role access stays server-only.
|
|
13
|
-
4. Record findings with severity, exploit path, affected behavior, and remediation.
|
|
14
|
-
|
|
15
|
-
Required outputs: reviewed boundaries, findings, severity, exploit path, mitigation, negative authorization tests or skipped rationale.
|
|
16
|
-
"""
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
name = "setup"
|
|
2
|
-
description = "Onboard the project into Agent Kit context and verify runtime adapter setup."
|
|
3
|
-
|
|
4
|
-
prompt = """
|
|
5
|
-
Run Agent Kit setup as a runtime command.
|
|
6
|
-
|
|
7
|
-
Canonical sources: AGENTS.md, AGENT_ROSTER.md, .agent-kit/agent-roster.json, MODEL_ROUTING.md, .agent-kit/model-routing.json, QUALITY_GATES.md, and ASSISTANT_ADAPTERS.md.
|
|
8
|
-
|
|
9
|
-
Workflow:
|
|
10
|
-
1. Run or recommend `agent-kit setup --open` when project context is missing.
|
|
11
|
-
2. Validate context with `agent-kit context validate`.
|
|
12
|
-
3. Confirm adapter evidence in ASSISTANT_ADAPTERS.md.
|
|
13
|
-
4. Record setup evidence in an Agent Studio session when meaningful work starts.
|
|
14
|
-
|
|
15
|
-
Required outputs: project context status, active IDE/runtime surface, model-selection status, remaining setup gaps, verification command.
|
|
16
|
-
"""
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
name = "ship"
|
|
2
|
-
description = "Make a GO/NO-GO release call from council, security, QA, docs, deployment, and rollback evidence."
|
|
3
|
-
|
|
4
|
-
prompt = """
|
|
5
|
-
Run the ship workflow.
|
|
6
|
-
|
|
7
|
-
Canonical sources: QUALITY_GATES.md, TESTING.md, SECURITY.md, DEPLOYMENT.md, UPGRADE.md, COUNCIL.md, .agent-kit/council-sessions/, and .agent-kit/agent-roster.json.
|
|
8
|
-
|
|
9
|
-
Workflow:
|
|
10
|
-
1. Confirm implementation scope and preserved behavior.
|
|
11
|
-
2. Require code review, Security Reviewer signoff, QA/test evidence, accessibility evidence when UI changed, docs evidence, deployment/observability review, and rollback plan.
|
|
12
|
-
3. Run the project release gate, normally `npm run release:check` for this package or the project-specific equivalent.
|
|
13
|
-
4. Record verification with `agent-kit session verify`.
|
|
14
|
-
5. Return GO only when required outputs are complete or explicitly not-applicable.
|
|
15
|
-
|
|
16
|
-
Required outputs: code review, security review, QA/test review, accessibility/doc/deployment checks, rollback plan, release command, GO/NO-GO verdict.
|
|
17
|
-
"""
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
name = "spec"
|
|
2
|
-
description = "Define or update SPEC.md with acceptance criteria before implementation."
|
|
3
|
-
|
|
4
|
-
prompt = """
|
|
5
|
-
Run the spec workflow.
|
|
6
|
-
|
|
7
|
-
Canonical sources: SPEC.md, AGENTS.md, AGENT_ROSTER.md, .agent-kit/agent-roster.json, .agent-kit/project-context.md, .agent-kit/corrections/project-rules.json, QUALITY_GATES.md, and .agent-kit/prompts/lifecycle-command-index.md.
|
|
8
|
-
|
|
9
|
-
Workflow:
|
|
10
|
-
1. Route through Planner and Documentation Maintainer.
|
|
11
|
-
2. Read project context and active correction rules before drafting or updating the spec.
|
|
12
|
-
3. Capture goal, user/workflow, acceptance criteria, preserved behavior, non-goals, and docs impact.
|
|
13
|
-
4. Map affected layers: data, business logic, presentation, auth, deployment, and tests.
|
|
14
|
-
5. Record decision, risk, and next handoff with `agent-kit session ...` when a session is active.
|
|
15
|
-
|
|
16
|
-
Required outputs: spec delta or draft, acceptance criteria, preserved capabilities, non-goals, verification plan, next handoff.
|
|
17
|
-
"""
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
name = "test"
|
|
2
|
-
description = "Add or run tests and produce acceptance evidence per TESTING.md and QUALITY_GATES.md."
|
|
3
|
-
|
|
4
|
-
prompt = """
|
|
5
|
-
Run the test workflow.
|
|
6
|
-
|
|
7
|
-
Canonical sources: TESTING.md, QUALITY_GATES.md, AGENTS.md, .agent-kit/agent-roster.json, .agent-kit/skills/testing-qa.md, and .agent-kit/prompts/lifecycle-command-index.md.
|
|
8
|
-
|
|
9
|
-
Workflow:
|
|
10
|
-
1. Route through QA Engineer.
|
|
11
|
-
2. Name unit, regression, smoke, and visual QA gaps for the change scope.
|
|
12
|
-
3. Prioritize auth and data mutation paths.
|
|
13
|
-
4. Run project test commands and capture results.
|
|
14
|
-
5. Record verification with `agent-kit session verify` when a session is active.
|
|
15
|
-
|
|
16
|
-
Required outputs: test plan, commands run, pass/fail summary, coverage gaps, skipped-test rationale.
|
|
17
|
-
"""
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
name = "ui-audit"
|
|
2
|
-
description = "Run a deterministic UI audit with severity-based detector findings and release evidence."
|
|
3
|
-
|
|
4
|
-
prompt = """
|
|
5
|
-
Run the UI audit workflow.
|
|
6
|
-
|
|
7
|
-
Canonical sources: DESIGN.md, STYLE_GUIDE.md, TESTING.md, QUALITY_GATES.md, .agent-kit/agent-roster.json, .agent-kit/skills/ui-improvement-harness.md, .agent-kit/checklists/ui-detectors.md, .agent-kit/checklists/ui-acceptance-rubric.md, and .agent-kit/prompts/ui-command-index.md.
|
|
8
|
-
|
|
9
|
-
Workflow:
|
|
10
|
-
1. Identify target route, component, workflow, auth state, data state, and risk tier.
|
|
11
|
-
2. Load product/design context and relevant design brief.
|
|
12
|
-
3. Review desktop and mobile evidence, or state which evidence must still be captured.
|
|
13
|
-
4. Run the UI detector checklist and classify blockers, majors, minors, passes, and not-applicable items.
|
|
14
|
-
5. Return required fixes, accepted exceptions, preserved capabilities, and pass/fail verdict.
|
|
15
|
-
|
|
16
|
-
Required outputs: target surface, risk tier, detector findings by severity, missing evidence, release verdict.
|
|
17
|
-
"""
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
name = "ui-polish"
|
|
2
|
-
description = "Improve UI hierarchy, spacing, state feedback, and visual finish through detector-guided polish."
|
|
3
|
-
|
|
4
|
-
prompt = """
|
|
5
|
-
Run the UI polish workflow.
|
|
6
|
-
|
|
7
|
-
Canonical sources: DESIGN.md, STYLE_GUIDE.md, TESTING.md, QUALITY_GATES.md, .agent-kit/agent-roster.json, .agent-kit/skills/ui-improvement-harness.md, .agent-kit/checklists/ui-detectors.md, .agent-kit/checklists/ui-acceptance-rubric.md, and .agent-kit/prompts/ui-command-index.md.
|
|
8
|
-
|
|
9
|
-
Workflow:
|
|
10
|
-
1. Start from detector findings, screenshots, or a named target surface.
|
|
11
|
-
2. Preserve product behavior, auth boundaries, copy claims, data contracts, and existing component patterns.
|
|
12
|
-
3. Improve hierarchy, spacing, density, alignment, component states, and interaction feedback.
|
|
13
|
-
4. Remove decorative clutter and generic SaaS or AI-site defaults.
|
|
14
|
-
5. Re-run detector and screenshot critique after the scoped polish pass.
|
|
15
|
-
|
|
16
|
-
Required outputs: polish goals, changes made or proposed, detector deltas, screenshot evidence, residual risks.
|
|
17
|
-
"""
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
name = "upgrade"
|
|
2
|
-
description = "Plan and verify Agent Kit, framework, dependency, and adapter upgrades with rollback evidence."
|
|
3
|
-
|
|
4
|
-
prompt = """
|
|
5
|
-
Run the upgrade-maintenance workflow.
|
|
6
|
-
|
|
7
|
-
Canonical sources: UPGRADE.md, CHANGELOG.md, DECISIONS.md, DEPLOYMENT.md, .agent-kit/skills/upgrade-maintenance.md, and QUALITY_GATES.md.
|
|
8
|
-
|
|
9
|
-
Workflow:
|
|
10
|
-
1. Run `agent-kit diff` before accepting template changes.
|
|
11
|
-
2. Preserve local overrides and review `.agent-kit/conflicts/`.
|
|
12
|
-
3. Check framework release notes, codemods, migrations, generated types, RLS impact, and rollback risk when applicable.
|
|
13
|
-
4. Run `agent-kit audit --min-readiness baseline-setup` after update.
|
|
14
|
-
5. Record version, migration impact, verification, owner, and rollback evidence.
|
|
15
|
-
|
|
16
|
-
Required outputs: version change, conflict review, migration impact, generated files/types, audit result, rollback plan, owner/date.
|
|
17
|
-
"""
|
package/antigravity/plugin.json
DELETED
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"schemaVersion": 1,
|
|
3
|
-
"name": "agent-kit-next-supabase",
|
|
4
|
-
"displayName": "Agent Kit Next/Supabase",
|
|
5
|
-
"version": "0.1.8",
|
|
6
|
-
"description": "Runtime commands and portable skills for the Agent Kit Next/Supabase council workflow.",
|
|
7
|
-
"homepage": "https://github.com/lukey662/agentsandskills",
|
|
8
|
-
"sourceOfTruth": [
|
|
9
|
-
"AGENTS.md",
|
|
10
|
-
"AGENT_ROSTER.md",
|
|
11
|
-
".agent-kit/agent-roster.json",
|
|
12
|
-
"MODEL_ROUTING.md",
|
|
13
|
-
".agent-kit/model-routing.json",
|
|
14
|
-
"QUALITY_GATES.md",
|
|
15
|
-
"COUNCIL.md",
|
|
16
|
-
".agent-kit/council-sessions/"
|
|
17
|
-
],
|
|
18
|
-
"commands": [
|
|
19
|
-
{ "name": "setup", "path": "commands/setup.toml" },
|
|
20
|
-
{ "name": "spec", "path": "commands/spec.toml" },
|
|
21
|
-
{ "name": "audit", "path": "commands/audit.toml" },
|
|
22
|
-
{ "name": "plan", "path": "commands/plan.toml" },
|
|
23
|
-
{ "name": "handoff", "path": "commands/handoff.toml" },
|
|
24
|
-
{ "name": "frontend", "path": "commands/frontend.toml" },
|
|
25
|
-
{ "name": "ui-audit", "path": "commands/ui-audit.toml" },
|
|
26
|
-
{ "name": "ui-polish", "path": "commands/ui-polish.toml" },
|
|
27
|
-
{ "name": "layout-cleanup", "path": "commands/layout-cleanup.toml" },
|
|
28
|
-
{ "name": "responsive-cleanup", "path": "commands/responsive-cleanup.toml" },
|
|
29
|
-
{ "name": "accessibility-pass", "path": "commands/accessibility-pass.toml" },
|
|
30
|
-
{ "name": "distinctiveness-pass", "path": "commands/distinctiveness-pass.toml" },
|
|
31
|
-
{ "name": "screenshot-critique", "path": "commands/screenshot-critique.toml" },
|
|
32
|
-
{ "name": "browser-qa", "path": "commands/browser-qa.toml" },
|
|
33
|
-
{ "name": "test", "path": "commands/test.toml" },
|
|
34
|
-
{ "name": "review", "path": "commands/review.toml" },
|
|
35
|
-
{ "name": "security", "path": "commands/security.toml" },
|
|
36
|
-
{ "name": "copy", "path": "commands/copy.toml" },
|
|
37
|
-
{ "name": "ship", "path": "commands/ship.toml" },
|
|
38
|
-
{ "name": "upgrade", "path": "commands/upgrade.toml" }
|
|
39
|
-
],
|
|
40
|
-
"skills": [
|
|
41
|
-
{ "name": "accessibility-wcag", "path": "../runtime-skills/accessibility-wcag/SKILL.md" },
|
|
42
|
-
{ "name": "agent-handoff-tracing", "path": "../runtime-skills/agent-handoff-tracing/SKILL.md" },
|
|
43
|
-
{ "name": "best-practice-maturity-review", "path": "../runtime-skills/best-practice-maturity-review/SKILL.md" },
|
|
44
|
-
{ "name": "content-first-design", "path": "../runtime-skills/content-first-design/SKILL.md" },
|
|
45
|
-
{ "name": "conversion-copywriting", "path": "../runtime-skills/conversion-copywriting/SKILL.md" },
|
|
46
|
-
{ "name": "deployment-observability", "path": "../runtime-skills/deployment-observability/SKILL.md" },
|
|
47
|
-
{ "name": "docs-maintainer", "path": "../runtime-skills/docs-maintainer/SKILL.md" },
|
|
48
|
-
{ "name": "frontend-design-system", "path": "../runtime-skills/frontend-design-system/SKILL.md" },
|
|
49
|
-
{ "name": "frontend-distinctiveness-benchmark", "path": "../runtime-skills/frontend-distinctiveness-benchmark/SKILL.md" },
|
|
50
|
-
{ "name": "frontend-product-quality-rubric", "path": "../runtime-skills/frontend-product-quality-rubric/SKILL.md" },
|
|
51
|
-
{ "name": "landing-page-copy", "path": "../runtime-skills/landing-page-copy/SKILL.md" },
|
|
52
|
-
{ "name": "ui-improvement-harness", "path": "../runtime-skills/ui-improvement-harness/SKILL.md" },
|
|
53
|
-
{ "name": "nextjs-app-router", "path": "../runtime-skills/nextjs-app-router/SKILL.md" },
|
|
54
|
-
{ "name": "onboarding-empty-state-copy", "path": "../runtime-skills/onboarding-empty-state-copy/SKILL.md" },
|
|
55
|
-
{ "name": "owasp-security-review", "path": "../runtime-skills/owasp-security-review/SKILL.md" },
|
|
56
|
-
{ "name": "planning-council", "path": "../runtime-skills/planning-council/SKILL.md" },
|
|
57
|
-
{ "name": "positioning-messaging", "path": "../runtime-skills/positioning-messaging/SKILL.md" },
|
|
58
|
-
{ "name": "postgres-migrations", "path": "../runtime-skills/postgres-migrations/SKILL.md" },
|
|
59
|
-
{ "name": "product-voice-tone", "path": "../runtime-skills/product-voice-tone/SKILL.md" },
|
|
60
|
-
{ "name": "reference-led-design-critique", "path": "../runtime-skills/reference-led-design-critique/SKILL.md" },
|
|
61
|
-
{ "name": "supabase-auth-rls", "path": "../runtime-skills/supabase-auth-rls/SKILL.md" },
|
|
62
|
-
{ "name": "testing-qa", "path": "../runtime-skills/testing-qa/SKILL.md" },
|
|
63
|
-
{ "name": "upgrade-maintenance", "path": "../runtime-skills/upgrade-maintenance/SKILL.md" },
|
|
64
|
-
{ "name": "visual-regression-qa", "path": "../runtime-skills/visual-regression-qa/SKILL.md" }
|
|
65
|
-
],
|
|
66
|
-
"validation": {
|
|
67
|
-
"agentKit": "agent-kit adapter validate antigravity",
|
|
68
|
-
"nativeOptional": "agy plugin validate"
|
|
69
|
-
}
|
|
70
|
-
}
|