@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
package/DOGFOOD.md
DELETED
|
@@ -1,201 +0,0 @@
|
|
|
1
|
-
# Dogfood Evidence
|
|
2
|
-
|
|
3
|
-
This file is the public-safe summary of downstream adoption evidence. Detailed local-path notes live in `dogfood/` and are intentionally excluded from the npm package.
|
|
4
|
-
|
|
5
|
-
## Evidence Rule
|
|
6
|
-
|
|
7
|
-
- Dogfood evidence must run against the current built CLI, not an older remembered result.
|
|
8
|
-
- Real-project audits may fail. Failure is useful when it proves the kit catches setup drift.
|
|
9
|
-
- Public summaries use project archetypes instead of local paths or private project details.
|
|
10
|
-
- A dogfood item only counts as promoted when it leads to an installed asset, audit check, test, release gate, or documented decision.
|
|
11
|
-
|
|
12
|
-
## Current Read-Only Audit Snapshot
|
|
13
|
-
|
|
14
|
-
Date: 2026-06-03
|
|
15
|
-
CLI source: current `dist/index.js`
|
|
16
|
-
Command: `node dist/index.js audit --json`
|
|
17
|
-
Mode: read-only audit; no downstream files were modified.
|
|
18
|
-
|
|
19
|
-
| Project Archetype | Summary | Readiness | Highest-Value Gaps Caught |
|
|
20
|
-
| --- | --- | --- | --- |
|
|
21
|
-
| SaaS/tool hybrid | 11 pass, 20 warn, 7 fail | `needs-setup` | Missing `.agent-kit/agent-roster.json`, schema contracts, `AGENT_ROSTER.md`, `ASSISTANT_ADAPTERS.md`, `COUNCIL.md`, `DESIGN.md`, `QUALITY_GATES.md`, `UPGRADE.md`, assistant adapters, visual QA evidence, reference-led design critique, and stale templates. |
|
|
22
|
-
| Content/admin hybrid | 11 pass, 20 warn, 7 fail | `needs-setup` | Missing `.agent-kit/agent-roster.json`, schema contracts, `AGENT_ROSTER.md`, `ASSISTANT_ADAPTERS.md`, `COUNCIL.md`, `DESIGN.md`, `QUALITY_GATES.md`, `UPGRADE.md`, assistant adapters, visual QA evidence, reference-led design critique, and stale/customized templates. |
|
|
23
|
-
|
|
24
|
-
## What This Proves
|
|
25
|
-
|
|
26
|
-
- The audit distinguishes older valid installs from the current best-practice setup.
|
|
27
|
-
- Current audits catch the exact post-research hardening areas: schema-backed council routing, assistant activation, maturity gates, upgrade lifecycle, visual QA, and reference-led frontend critique.
|
|
28
|
-
- Real projects installed before later hardening phases need `agent-kit update` and conflict review before they can claim baseline setup under the current package.
|
|
29
|
-
|
|
30
|
-
## What This Does Not Prove
|
|
31
|
-
|
|
32
|
-
- These two projects are not yet best-practice candidates.
|
|
33
|
-
- The public npm package has not yet been published and verified with `npx`.
|
|
34
|
-
- Assistant adapters and upgrade lifecycle still need real activation/dogfood evidence after publication.
|
|
35
|
-
- Reference-led design critique still needs a real UI change dogfood pass with screenshots or equivalent visual evidence.
|
|
36
|
-
|
|
37
|
-
## 2026-07-04 Publish @0.1.8 Snapshot
|
|
38
|
-
|
|
39
|
-
Date: 2026-07-04
|
|
40
|
-
CLI source: local `dist/index.js` after `npm run release:check`
|
|
41
|
-
|
|
42
|
-
- Setup-server API route coverage (`tests/setup-server-api.test.ts`), Playwright UI screenshot smoke (`smoke:ui-screens`, Playwright 1.55.1), and Agent Studio Milestone 8 completion (note/render POST endpoints, session picker, live office controls).
|
|
43
|
-
- `readJsonBody` shared between setup and studio servers; oversized bodies return 400 without dropping the connection; studio SSE broadcasts notes.
|
|
44
|
-
- Dedicated Ubuntu CI job for UI screenshots; not part of `release:check` matrix.
|
|
45
|
-
- Local verification: `release:check` green (150 tests, setup-server.ts 86% statements), `smoke:ui-screens` produced 4 PNGs.
|
|
46
|
-
- Published `@appsforgood/next-supabase-kit@0.1.8`; `publish:verify` passed against live registry.
|
|
47
|
-
|
|
48
|
-
## 2026-07-04 Publish @0.1.7 Snapshot
|
|
49
|
-
|
|
50
|
-
Date: 2026-07-04
|
|
51
|
-
CLI source: public npm registry `@appsforgood/next-supabase-kit@0.1.7`
|
|
52
|
-
|
|
53
|
-
- Published `@appsforgood/next-supabase-kit@0.1.7` with lifecycle README commands, `/spec`/`/test`/`/review` Antigravity adapters, and `prompts/lifecycle-command-index.md`.
|
|
54
|
-
- Post-publish: `npm run publish:verify` against live registry.
|
|
55
|
-
|
|
56
|
-
## 2026-07-04 Publish @0.1.6 Snapshot
|
|
57
|
-
|
|
58
|
-
Date: 2026-07-04
|
|
59
|
-
CLI source: public npm registry `@appsforgood/next-supabase-kit@0.1.6`
|
|
60
|
-
Mode: local maintainer publish (token) after `npm run release:check`, then `npm run publish:verify`.
|
|
61
|
-
|
|
62
|
-
- Published `@appsforgood/next-supabase-kit@0.1.6` to public npm (local token publish with `--provenance=false`; CI releases continue to use OIDC + provenance).
|
|
63
|
-
- `npm run publish:verify` passed: registry visibility confirmed, `npx` doctor ok, clean temp `init` installed current baseline assets, and `audit --json --min-readiness baseline-setup` returned 0 failures (67 pass / 4 warn / readiness `baseline-setup`).
|
|
64
|
-
|
|
65
|
-
## 2026-07-02 Publish Verification And Self-Install Snapshot
|
|
66
|
-
|
|
67
|
-
Date: 2026-07-02
|
|
68
|
-
CLI source: public npm registry (`@appsforgood/next-supabase-kit`, published) plus local `src/` for the self-install.
|
|
69
|
-
Mode: post-publish verification against the live registry, and dogfooding the kit into this repo's own root.
|
|
70
|
-
|
|
71
|
-
- `node scripts/post-publish-verify.mjs` against the published package passed: registry visibility confirmed, `npx` doctor ok, clean temp `init` installed 23 files, and `audit --json --min-readiness baseline-setup` returned 0 failures (readiness `baseline-setup`).
|
|
72
|
-
- This repo now dogfoods its own kit at the root: `agent-kit init` installed the root docs, `.agent-kit/`, and Cursor rules; project context, council session, and overrides were filled with real evidence; `agent-kit audit --min-readiness best-practice-candidate` passes with 0 warnings and 0 failures.
|
|
73
|
-
|
|
74
|
-
## 2026-06-07 Agent Studio Dogfood Snapshot
|
|
75
|
-
|
|
76
|
-
Date: 2026-06-07
|
|
77
|
-
CLI source: current `dist/index.js`
|
|
78
|
-
Mode: downstream update, guided context generation, session recording, static Studio export, and final audit.
|
|
79
|
-
|
|
80
|
-
| Project Archetype | Stage | Summary | Readiness | Notes |
|
|
81
|
-
| --- | --- | --- | --- | --- |
|
|
82
|
-
| Content/admin hybrid | Before update | 11 pass, 31 warn, 8 fail | `needs-setup` | Older partial install was missing current roster, schemas, docs, context, and Agent Studio assets. |
|
|
83
|
-
| Content/admin hybrid | After update/onboard/export | 54 pass, 17 warn, 0 fail | `baseline-setup` | `agent-kit update` preserved customized docs through `.agent-kit/conflicts/`; `onboard`, session render, and `studio export` worked locally. |
|
|
84
|
-
| Content/admin hybrid | After `session output` fix and completed session | 52 pass, 19 warn, 0 fail | `baseline-setup` | Completed planning session has all required outputs marked complete, verification recorded, rendered Markdown current, static Studio export regenerated, and 14 valid Agent Studio events. Extra warnings reflect template changes made during this fix and remaining project-specific evidence gaps. |
|
|
85
|
-
|
|
86
|
-
### Finding Promoted Back Into The Kit
|
|
87
|
-
|
|
88
|
-
Dogfood exposed that sessions could define required outputs but lacked a CLI command to update their status. The fix adds `agent-kit session output <name...> --status <missing|partial|complete|not-applicable> --evidence <evidence>`, a `required_output_updated` event type, renderer/static-export support, CLI smoke coverage, and completed-session regression tests.
|
|
89
|
-
|
|
90
|
-
### Remaining Dogfood Gaps
|
|
91
|
-
|
|
92
|
-
- Project context still needs real product summary, audience, workflows, auth/tenant model, UI direction, value proposition, and quality target answers.
|
|
93
|
-
- Assistant adapter rows still need active-tool verification evidence in downstream projects beyond the kit repo itself.
|
|
94
|
-
- Project-owned docs need conflict review before adopting newer template wording.
|
|
95
|
-
- A real UI change still needs reference-led design critique and desktop/mobile visual QA evidence.
|
|
96
|
-
- Public npm publish and `npm run publish:verify` still need maintainer release execution. See [PUBLISH.md](PUBLISH.md).
|
|
97
|
-
|
|
98
|
-
## 2026-06-07 Release Gate Snapshot
|
|
99
|
-
|
|
100
|
-
Date: 2026-06-07
|
|
101
|
-
CLI source: current built CLI
|
|
102
|
-
Command: `npm run release:check`
|
|
103
|
-
Result: passed locally on Windows after assistant adapter install on init, baseline audit gate smoke, install smoke, Agent Studio smoke, SBOM check, and npm pack dry run.
|
|
104
|
-
|
|
105
|
-
| Gate | Result |
|
|
106
|
-
| --- | --- | --- |
|
|
107
|
-
| Tests | 65 passed |
|
|
108
|
-
| Example install shape | `baseline-setup`, 0 failures |
|
|
109
|
-
| Install smoke | IDE adapter rules installed, `baseline-setup`, 0 failures |
|
|
110
|
-
| Agent Studio smoke | `baseline-setup`, 0 failures |
|
|
111
|
-
| Baseline audit gate smoke | `baseline-setup`, 0 failures |
|
|
112
|
-
| npm pack dry run | `@appsforgood/next-supabase-kit@0.1.1` tarball validated |
|
|
113
|
-
|
|
114
|
-
Remaining publish action: execute [PUBLISH.md](PUBLISH.md), then run `npm run publish:verify`.
|
|
115
|
-
|
|
116
|
-
## 2026-06-07 Assistant Adapter Activation On Init
|
|
117
|
-
|
|
118
|
-
Date: 2026-06-07
|
|
119
|
-
CLI source: current built CLI
|
|
120
|
-
Mode: init-time assistant adapter rule installation for downstream projects.
|
|
121
|
-
|
|
122
|
-
| Surface | Path | Status | Evidence |
|
|
123
|
-
| --- | --- | --- | --- |
|
|
124
|
-
| Downstream init | `.cursor/rules/cursor-agent-kit.mdc` | Active on `agent-kit init` | `smoke:install`, `smoke:audit-gate`, and `tests/update.test.ts` verify rule installation. |
|
|
125
|
-
| Downstream init | `.cursor/rules/cursor-model-selection.mdc` | Active on `agent-kit init` | Same smoke and update coverage as council rule. |
|
|
126
|
-
| Template docs | `ASSISTANT_ADAPTERS.md` | Updated | Adapter activation steps and init-time install behavior documented for downstream projects. |
|
|
127
|
-
|
|
128
|
-
## Promotion Back Into The Kit
|
|
129
|
-
|
|
130
|
-
| Dogfood Finding | Promoted Kit Behavior |
|
|
131
|
-
| --- | --- |
|
|
132
|
-
| Older installs drift as the package improves. | Template hashes, `agent-kit diff`, `agent-kit update`, `UPGRADE.md`, upgrade checklist, and upgrade audit warnings. |
|
|
133
|
-
| Existing project docs vary and must be preserved. | Conflict-safe writes and `.agent-kit/overrides.json`. |
|
|
134
|
-
| Agent instructions can exist without machine-readable council routing. | `.agent-kit/agent-roster.json`, roster schema validation, and council-session evidence. |
|
|
135
|
-
| AI tool activation cannot be assumed from `AGENTS.md` alone. | `ASSISTANT_ADAPTERS.md` and `.agent-kit/assistant-adapters/`. |
|
|
136
|
-
| Frontend docs can miss product-specific design evidence. | `DESIGN.md`, content-first design skill, reference-led design critique, visual QA tiers, and screenshot review. |
|
|
137
|
-
| Required session outputs were hard to complete without manual JSON edits. | `agent-kit session output`, `required_output_updated` events, renderer/export support, and completed-session audit coverage. |
|
|
138
|
-
|
|
139
|
-
## Upgrade Regression Fixture
|
|
140
|
-
|
|
141
|
-
The package also includes a deterministic test for an older install shape:
|
|
142
|
-
|
|
143
|
-
- Older install has customized root docs and no current roster, schemas, assistant adapters, `DESIGN.md`, `QUALITY_GATES.md`, or `UPGRADE.md`.
|
|
144
|
-
- `agent-kit update` behavior preserves customized docs and writes new template versions into `.agent-kit/conflicts/`.
|
|
145
|
-
- `agent-kit diff` previews missing docs, changed docs, roster status, missing library folders, files update would create, and files update would write to conflicts.
|
|
146
|
-
- Missing current baseline docs and `.agent-kit/agent-roster.json` are added.
|
|
147
|
-
- `.agent-kit/schemas/`, `.agent-kit/assistant-adapters/`, and the reference-led design critique skill are installed.
|
|
148
|
-
- The upgraded fixture audits with `0` failures and readiness `baseline-setup`.
|
|
149
|
-
|
|
150
|
-
Covered by `tests/update.test.ts`.
|
|
151
|
-
|
|
152
|
-
## Next Dogfood Passes
|
|
153
|
-
|
|
154
|
-
- Review generated conflicts in the dogfood project and decide which project-owned docs should adopt the latest template wording.
|
|
155
|
-
- Run `agent-kit update` on another real project on a dedicated branch and record conflict-review outcomes.
|
|
156
|
-
- Activate at least one assistant adapter in a real project and record whether the chosen tool loads the canonical council instructions.
|
|
157
|
-
- Apply the reference-led design critique gate to one real frontend change with desktop/mobile screenshot evidence.
|
|
158
|
-
- After public publish, run `npm run publish:verify` to verify registry visibility, public `npx doctor`, clean temp `init`, and `audit --json` with zero failures.
|
|
159
|
-
|
|
160
|
-
## BaseRepo Maintainer Dogfood Policy
|
|
161
|
-
|
|
162
|
-
Date: 2026-06-17
|
|
163
|
-
Policy: **gitignored local overlay + bootstrap script** (not committed to kit source)
|
|
164
|
-
|
|
165
|
-
| Item | Detail |
|
|
166
|
-
| --- | --- |
|
|
167
|
-
| Bootstrap | `npm run dogfood:init` runs `agent-kit init --stack next-supabase --activate cursor --activate codex` against the repo root |
|
|
168
|
-
| Gitignore | `.agent-kit/`, `.codex/`, init-generated council docs at repo root, and local pack tarballs — see `.gitignore` and [DOCS.md](DOCS.md#maintainer-dogfood) |
|
|
169
|
-
| Validation | `node dist/index.js adapter validate cursor\|codex` after bootstrap |
|
|
170
|
-
| Release evidence | [MAINTAINER_RELEASE.md](MAINTAINER_RELEASE.md) session checklist; loop patterns in [LOOP_CODING.md](LOOP_CODING.md) |
|
|
171
|
-
| Rationale | Kit source stays in `templates/` and tracked maintainer docs; overlay proves Tier B activation without polluting commit history |
|
|
172
|
-
|
|
173
|
-
This policy closes the gap where the kit shipped Level 5 IDE surfaces but BaseRepo maintainers operated at Level 4 day-to-day.
|
|
174
|
-
|
|
175
|
-
## 2026-07-04 - Lifecycle Commands README Parity
|
|
176
|
-
|
|
177
|
-
Date: 2026-07-04
|
|
178
|
-
Scope: README/docs discoverability + three new Antigravity adapters
|
|
179
|
-
|
|
180
|
-
| Item | Detail |
|
|
181
|
-
| --- | --- |
|
|
182
|
-
| README | Added **Workflow Commands** section: lifecycle diagram, 12 core + 8 UI slash commands, council table, skills-by-phase, skill activation narrative |
|
|
183
|
-
| Canonical index | `prompts/lifecycle-command-index.md` for delivery commands (parallel to `prompts/ui-command-index.md`) |
|
|
184
|
-
| New adapters | `/spec`, `/test`, `/review` in `antigravity/commands/` (20 total native commands) |
|
|
185
|
-
| Roster | `testing` and `code-review` workflows; planning triggers for spec keywords |
|
|
186
|
-
| Historical scope | `/build`, `/webperf`, `/code-simplify`, and `/build auto` were deferred in this 0.1.7 review; the later runtime ships bounded roster workflows rather than cloning those command semantics |
|
|
187
|
-
| Verification | `npm test`, `agent-kit adapter validate antigravity` after build |
|
|
188
|
-
|
|
189
|
-
## 2026-07-11 - README Examples Release 0.2.1
|
|
190
|
-
|
|
191
|
-
Date: 2026-07-11
|
|
192
|
-
Scope: publish the verified README rewrite through npm Trusted Publishing and confirm the public artifacts.
|
|
193
|
-
|
|
194
|
-
| Evidence | Result |
|
|
195
|
-
| --- | --- |
|
|
196
|
-
| Local release gate | `npm run release:check` passed with 200 tests, coverage gates, package/adapters/examples/install/Studio/setup/audit checks, zero dependency vulnerabilities, SBOM validation, and package dry runs. |
|
|
197
|
-
| Root package | `@appsforgood/next-supabase-kit@0.2.1` is public and the `latest` dist-tag resolves to `0.2.1`. |
|
|
198
|
-
| Published README | npm returns the rewritten quick start, audit, council-session, frontend-review, update, and optional-runtime examples for `0.2.1`. |
|
|
199
|
-
| Runtime package | `@appsforgood/agent-kit-runtime` remains at `0.1.3`; the release workflow correctly skipped its unchanged package. |
|
|
200
|
-
| GitHub release | [`v0.2.1`](https://github.com/lukey662/agentsandskills/releases/tag/v0.2.1) was created only after public-registry verification. |
|
|
201
|
-
| Supply chain | Trusted Publishing used GitHub Actions OIDC and generated the root-package SBOM attestation before publication. |
|
package/GOVERNANCE.md
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
# Governance
|
|
2
|
-
|
|
3
|
-
## Maintainer Model
|
|
4
|
-
|
|
5
|
-
This project is maintained as a small public OSS package. Maintainers own release approval, public-package safety, research promotion, and final merge decisions.
|
|
6
|
-
|
|
7
|
-
## Decision Rules
|
|
8
|
-
|
|
9
|
-
Changes should improve reusable setup quality for many projects. Project-specific preferences belong downstream unless repeated evidence shows they generalize.
|
|
10
|
-
|
|
11
|
-
Promoted best practices need at least one of:
|
|
12
|
-
|
|
13
|
-
- Repeated findings from repository research.
|
|
14
|
-
- Dogfood evidence from downstream installs.
|
|
15
|
-
- Official framework or platform documentation.
|
|
16
|
-
- A clear security, release, or maintainability requirement.
|
|
17
|
-
|
|
18
|
-
Promotion targets should be explicit:
|
|
19
|
-
|
|
20
|
-
- Installed root template.
|
|
21
|
-
- Agent role.
|
|
22
|
-
- Skill.
|
|
23
|
-
- Prompt.
|
|
24
|
-
- Checklist.
|
|
25
|
-
- Schema.
|
|
26
|
-
- Audit rule.
|
|
27
|
-
- Research scanner signal.
|
|
28
|
-
- CI or release gate.
|
|
29
|
-
|
|
30
|
-
## Release Rules
|
|
31
|
-
|
|
32
|
-
Releases require:
|
|
33
|
-
|
|
34
|
-
- Passing CI.
|
|
35
|
-
- Passing install smoke.
|
|
36
|
-
- Passing dependency audit.
|
|
37
|
-
- Passing package dry run.
|
|
38
|
-
- Branch protection and repository settings reviewed when workflows, permissions, or release controls changed.
|
|
39
|
-
- Public package metadata review.
|
|
40
|
-
- No secrets, copied third-party source, or private downstream details.
|
|
41
|
-
- Trusted Publishing or another npm-approved secure publish path.
|
|
42
|
-
|
|
43
|
-
## Research Rules
|
|
44
|
-
|
|
45
|
-
Research findings are evidence, not implementation. A pattern only becomes kit behavior after it is promoted into an installed asset, CLI/audit behavior, test, release gate, or recorded decision.
|
package/LOOP_CODING.md
DELETED
|
@@ -1,107 +0,0 @@
|
|
|
1
|
-
# Loop Coding
|
|
2
|
-
|
|
3
|
-
Loop coding means the agent repeats **plan → act → check → fix** until a stop condition, instead of finishing in one chat turn. The Agent Kit is opinionated about **which loops are safe** and **which checkpoints must stay in place**.
|
|
4
|
-
|
|
5
|
-
This document describes loop types, kit-safe patterns, and limits. It is the canonical reference for eval-driven development with `@appsforgood/next-supabase-kit`.
|
|
6
|
-
|
|
7
|
-
## Loop Types
|
|
8
|
-
|
|
9
|
-
| Loop type | What it means | Kit-safe version |
|
|
10
|
-
| --- | --- | --- |
|
|
11
|
-
| **Agent loop** | Same agent iterates on feedback until done | Use scoped prompts (for example `.agent-kit/prompts/implement-feature.md`); review each turn; do not remove Security Reviewer or QA gates |
|
|
12
|
-
| **Eval-driven loop** | Code changes until **tests, audit, or evals pass** | `npm test` + `agent-kit audit` + CI — BaseRepo uses `npm run release:check` as the maintainer merge gate |
|
|
13
|
-
| **Self-improving loop** | Agent critiques its own output and revises | Manual: delegate to `@qa-engineer` or run tests between passes; **avoid fully unsupervised self-critique on auth, RLS, or release tooling** |
|
|
14
|
-
| **Council / team loop** | Planner → specialist → Security → QA handoffs | `agent-kit session handoff` + IDE subagents — the kit's core operating model |
|
|
15
|
-
| **Background / overnight loop** | Runs without a human present | **Defer by default** — requires worktree policy, cost caps, kill switches, and stronger eval gates than agent freedom |
|
|
16
|
-
|
|
17
|
-
## Practical Rule
|
|
18
|
-
|
|
19
|
-
Climb maturity by adding **checkpoints** (tests, audit, guards, human review), not by removing them. Unsupervised loops are only healthy when **eval gates are stronger than the agent's freedom**.
|
|
20
|
-
|
|
21
|
-
## Eval-Driven PR Loop (recommended)
|
|
22
|
-
|
|
23
|
-
For feature work in a kit-consuming project:
|
|
24
|
-
|
|
25
|
-
1. **Plan** — Planner classifies scope; Lead Architect maps affected layers when the change is core.
|
|
26
|
-
2. **Implement** — Next.js / Supabase engineers (or general agent with council rules loaded).
|
|
27
|
-
3. **Check** — run the smallest reliable gate set:
|
|
28
|
-
```bash
|
|
29
|
-
npm test
|
|
30
|
-
agent-kit audit --min-readiness baseline-setup
|
|
31
|
-
agent-kit adapter validate all # when IDE surfaces change
|
|
32
|
-
```
|
|
33
|
-
4. **Fix** — repeat implement/check until green or blocked on a documented gap.
|
|
34
|
-
5. **Record** — `agent-kit session render` and mirror summary in `COUNCIL.md` for meaningful multi-agent work.
|
|
35
|
-
|
|
36
|
-
BaseRepo maintainers use the same pattern at repo scale:
|
|
37
|
-
|
|
38
|
-
```bash
|
|
39
|
-
npm run release:check # tests, build, package validate, smokes, adapter validate
|
|
40
|
-
npm run smoke:audit-gate
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
## Council Loop (multi-agent)
|
|
44
|
-
|
|
45
|
-
The default handoff order lives in `AGENTS.md` and `.agent-kit/agent-roster.json`:
|
|
46
|
-
|
|
47
|
-
1. Planner — scope, workflow, council selection
|
|
48
|
-
2. Lead Architect — core changes
|
|
49
|
-
3. Domain engineers — data, UI, copy as needed
|
|
50
|
-
4. Security Reviewer — auth, mutations, secrets, dependencies, release risk
|
|
51
|
-
5. QA Engineer — behavior evidence
|
|
52
|
-
6. Documentation Maintainer — living docs and council record
|
|
53
|
-
|
|
54
|
-
Use Agent Studio when the CLI is available:
|
|
55
|
-
|
|
56
|
-
```bash
|
|
57
|
-
agent-kit session start --workflow core-change --request "Short title"
|
|
58
|
-
agent-kit session handoff --from planner --to lead-architect --decision "..." --risk "..." --next "..." --evidence "..."
|
|
59
|
-
agent-kit session verify --command "npm test" --result pass
|
|
60
|
-
agent-kit session output phased-checklist --status complete --evidence "..."
|
|
61
|
-
agent-kit session render
|
|
62
|
-
```
|
|
63
|
-
|
|
64
|
-
When CLI tooling is unavailable, append the session template in `COUNCIL.md` (see `MAINTAINER_RELEASE.md` for kit release evidence).
|
|
65
|
-
|
|
66
|
-
## Hooks And Local Automation (Level 6 enablers)
|
|
67
|
-
|
|
68
|
-
The kit does **not** ship unsupervised orchestration. It documents safe local enablers:
|
|
69
|
-
|
|
70
|
-
| Pattern | Purpose | Starting point |
|
|
71
|
-
| --- | --- | --- |
|
|
72
|
-
| Pre-commit test or audit | Catch drift before commit | `.agent-kit/prompts/audit-project-setup.md`, project `npm test` |
|
|
73
|
-
| Post-edit lint/typecheck | Fast feedback on save | Project ESLint / `tsc --noEmit` in editor or CI |
|
|
74
|
-
| PR CI audit gate | Block merge below readiness | `.github/workflows/agent-kit-audit.yml` template |
|
|
75
|
-
| Adapter validate on PR | Prove IDE templates stay shippable | `agent-kit adapter validate all` (BaseRepo: `npm run adapter:validate` in `release:check`) |
|
|
76
|
-
|
|
77
|
-
For Cursor-specific hook/automation patterns, see Cursor Automations docs and keep Planner-first triage **opt-in** — never as a replacement for Security Reviewer or human release approval.
|
|
78
|
-
|
|
79
|
-
## MCP Routing (delegation hint)
|
|
80
|
-
|
|
81
|
-
Match MCP servers to council roles in consuming projects:
|
|
82
|
-
|
|
83
|
-
| Role | Typical MCP use |
|
|
84
|
-
| --- | --- |
|
|
85
|
-
| Supabase/Postgres Engineer | Schema, migrations, RLS, logs, advisors |
|
|
86
|
-
| Security Reviewer | Dependency/advisory checks; no broad production writes without review |
|
|
87
|
-
| Deployment/Observability Engineer | Hosting logs, release status, error tracking |
|
|
88
|
-
| QA Engineer | Test runners, visual diff tools where configured |
|
|
89
|
-
|
|
90
|
-
Record active MCP surfaces in `ASSISTANT_ADAPTERS.md` when they affect council behavior.
|
|
91
|
-
|
|
92
|
-
## What Not To Default
|
|
93
|
-
|
|
94
|
-
- Overnight unsupervised agent runs on auth, RLS, or release tooling
|
|
95
|
-
- Agents managing agents without eval harness and kill switches
|
|
96
|
-
- Removing human review from publish, migration, or security-sensitive paths
|
|
97
|
-
- Duplicating runtime product agents inside the kit repo (wrong shape for agent-kit)
|
|
98
|
-
|
|
99
|
-
## Related Docs
|
|
100
|
-
|
|
101
|
-
- `AGENTS.md` — council roles and default handoffs
|
|
102
|
-
- `QUALITY_GATES.md` — Baseline / Strong / Mature evidence tiers
|
|
103
|
-
- `COUNCIL.md` — session evidence template
|
|
104
|
-
- `MAINTAINER_RELEASE.md` — kit maintainer release session checklist
|
|
105
|
-
- `research/summaries/agentic-engineering-maturity-levels.md` — L3–L8 ladder and office integration
|
|
106
|
-
- `TESTING.md` — project test and CI gate expectations
|
|
107
|
-
- `PUBLISH.md` — npm publish runbook
|
package/MAINTAINER_RELEASE.md
DELETED
|
@@ -1,100 +0,0 @@
|
|
|
1
|
-
# Maintainer Release Evidence
|
|
2
|
-
|
|
3
|
-
Use this checklist when shipping `@appsforgood/next-supabase-kit` releases. It aligns kit maintainer practice with the **Strong** tier in `QUALITY_GATES.md`: council sessions record workflow, decision, risk, next handoff, required outputs, and evidence.
|
|
4
|
-
|
|
5
|
-
For loop patterns and safe automation limits, see [LOOP_CODING.md](LOOP_CODING.md). For publish steps, see [PUBLISH.md](PUBLISH.md).
|
|
6
|
-
|
|
7
|
-
## When To Open A Session
|
|
8
|
-
|
|
9
|
-
Start `agent-kit session` (or a `COUNCIL.md` entry) when the release includes any of:
|
|
10
|
-
|
|
11
|
-
- CLI or install behavior changes
|
|
12
|
-
- New or changed IDE adapter surfaces (Cursor, Codex, Claude, Copilot, Antigravity)
|
|
13
|
-
- Audit, roster, schema, or Agent Studio contract changes
|
|
14
|
-
- Security-sensitive dependency or publish pipeline changes
|
|
15
|
-
- Multi-agent work spanning Planner → Architect → QA
|
|
16
|
-
|
|
17
|
-
Skip a formal session only for typo-only doc fixes with no behavioral impact.
|
|
18
|
-
|
|
19
|
-
## Bootstrap Maintainer Dogfood
|
|
20
|
-
|
|
21
|
-
Maintainers run the kit locally on BaseRepo without committing the overlay:
|
|
22
|
-
|
|
23
|
-
```bash
|
|
24
|
-
npm run dogfood:init
|
|
25
|
-
node dist/index.js adapter validate cursor
|
|
26
|
-
node dist/index.js adapter validate codex
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
Generated paths (`.agent-kit/`, `.cursor/`, `.codex/`, root council docs from init) are **gitignored**. Kit source stays in `templates/`, `assistant-adapters/`, and tracked root docs such as `DOCS.md` and `SPEC.md`.
|
|
30
|
-
|
|
31
|
-
## Release Session Workflow
|
|
32
|
-
|
|
33
|
-
```bash
|
|
34
|
-
agent-kit session start --workflow release --request "Release vX.Y.Z"
|
|
35
|
-
agent-kit session decision --agent planner --decision "..." --risk "..." --next "lead-architect" --evidence "..."
|
|
36
|
-
agent-kit session verify --command "npm run release:check" --result pass --notes "..."
|
|
37
|
-
agent-kit session verify --command "npm run smoke:audit-gate" --result pass
|
|
38
|
-
agent-kit session output changelog --status complete --evidence "CHANGELOG.md#X.Y.Z"
|
|
39
|
-
agent-kit session output test-evidence --status complete --evidence "vitest + smokes green"
|
|
40
|
-
agent-kit session output publish-evidence --status complete --evidence "npm run publish:verify or GitHub Release vX.Y.Z"
|
|
41
|
-
agent-kit session render
|
|
42
|
-
```
|
|
43
|
-
|
|
44
|
-
After publish, append a short evidence block to [DOGFOOD.md](DOGFOOD.md) (public-safe, no local paths).
|
|
45
|
-
|
|
46
|
-
## COUNCIL.md Mirror Template
|
|
47
|
-
|
|
48
|
-
When Agent Studio CLI is unavailable, paste this block into root `COUNCIL.md` (maintainer overlay, gitignored) or into the PR description:
|
|
49
|
-
|
|
50
|
-
```md
|
|
51
|
-
## YYYY-MM-DD - Release vX.Y.Z
|
|
52
|
-
|
|
53
|
-
- Workflow: release
|
|
54
|
-
- Status: complete
|
|
55
|
-
- Request: Ship @appsforgood/next-supabase-kit@X.Y.Z
|
|
56
|
-
- Affected layers: CLI, install, adapters, docs, CI, deployment
|
|
57
|
-
|
|
58
|
-
### Required Outputs
|
|
59
|
-
|
|
60
|
-
| Output | Status | Evidence |
|
|
61
|
-
| --- | --- | --- |
|
|
62
|
-
| Phased checklist | Complete | ROADMAP / PR scope |
|
|
63
|
-
| Architecture decision | Complete/N/A | DECISIONS.md or PR note |
|
|
64
|
-
| Security review | Complete | Dependency audit in release:check; no secret in adapters |
|
|
65
|
-
| Test evidence | Complete | npm run release:check; npm run smoke:audit-gate |
|
|
66
|
-
| Adapter validation | Complete | npm run adapter:validate (all IDE templates) |
|
|
67
|
-
| Docs impact | Complete | CHANGELOG.md, DOCS.md, PUBLISH.md if process changed |
|
|
68
|
-
| Publish verification | Complete | npm run publish:verify or Release workflow green |
|
|
69
|
-
|
|
70
|
-
### Handoffs
|
|
71
|
-
|
|
72
|
-
| Agent | Decision | Risk | Next Handoff | Evidence |
|
|
73
|
-
| --- | --- | --- | --- | --- |
|
|
74
|
-
| Planner | Release scope approved | Missed breaking change | Lead Architect / QA | PR + CHANGELOG |
|
|
75
|
-
| QA Engineer | release:check green | Residual flake | Documentation Maintainer | CI logs |
|
|
76
|
-
| Documentation Maintainer | CHANGELOG + DOGFOOD updated | Stale public evidence | Deployment/Observability | DOGFOOD.md entry |
|
|
77
|
-
|
|
78
|
-
### Verification
|
|
79
|
-
|
|
80
|
-
| Command Or Review | Result | Notes |
|
|
81
|
-
| --- | --- | --- |
|
|
82
|
-
| npm run release:check | Pass | Includes adapter:validate |
|
|
83
|
-
| npm run smoke:audit-gate | Pass | baseline-setup, 0 failures |
|
|
84
|
-
| npm run publish:verify | Pass/Skipped | Required after registry publish |
|
|
85
|
-
```
|
|
86
|
-
|
|
87
|
-
## Pre-Merge Gate (BaseRepo)
|
|
88
|
-
|
|
89
|
-
Every release PR must pass:
|
|
90
|
-
|
|
91
|
-
1. `npm run release:check` (tests, build, package validate, smokes, **adapter validate all**, audit, pack dry-run)
|
|
92
|
-
2. `npm run smoke:audit-gate`
|
|
93
|
-
3. CHANGELOG section for the target version
|
|
94
|
-
4. Session render or COUNCIL mirror with verification table filled in
|
|
95
|
-
|
|
96
|
-
## Post-Publish
|
|
97
|
-
|
|
98
|
-
1. Run `npm run publish:verify` after registry propagation (or confirm Release workflow verification).
|
|
99
|
-
2. Update `DOGFOOD.md` with publish verification snapshot (no machine paths).
|
|
100
|
-
3. Mark release items in `ROADMAP.md`.
|
package/REPOSITORY_SETTINGS.md
DELETED
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
# Repository Settings
|
|
2
|
-
|
|
3
|
-
This file records the GitHub settings that must be applied outside git for the repository to operate as a public best-practice package.
|
|
4
|
-
|
|
5
|
-
## Branch Protection
|
|
6
|
-
|
|
7
|
-
Protect `main` with:
|
|
8
|
-
|
|
9
|
-
- Require a pull request before merging.
|
|
10
|
-
- Require at least one approval.
|
|
11
|
-
- Require review from CODEOWNERS for owned paths.
|
|
12
|
-
- Dismiss stale approvals when new commits are pushed.
|
|
13
|
-
- Require conversation resolution before merge.
|
|
14
|
-
- Require branches to be up to date before merge.
|
|
15
|
-
- Require linear history.
|
|
16
|
-
- Do not allow force pushes.
|
|
17
|
-
- Do not allow deletions.
|
|
18
|
-
- Restrict bypasses to maintainers only.
|
|
19
|
-
|
|
20
|
-
Optional status checks, only after GitHub Actions entitlement is confirmed and the project deliberately chooses hosted CI as required:
|
|
21
|
-
|
|
22
|
-
- `Verify package`
|
|
23
|
-
- `Review dependency changes`
|
|
24
|
-
- `Analyze JavaScript and TypeScript`
|
|
25
|
-
- `Scorecard`
|
|
26
|
-
|
|
27
|
-
With the default `githubActions.mode: "off"`, configure no required hosted status checks. GitHub billing, spending-limit, or pre-execution failures cannot be recovered inside workflow YAML and must not block commit/push or ordinary phase progression. Preserve equivalent local test, audit, dependency, and security evidence in the council session.
|
|
28
|
-
|
|
29
|
-
## Release Environment
|
|
30
|
-
|
|
31
|
-
Create environment `npm-publish` with:
|
|
32
|
-
|
|
33
|
-
- Required reviewers enabled.
|
|
34
|
-
- Prevent self-review enabled where available.
|
|
35
|
-
- Deployment branches restricted to `main`.
|
|
36
|
-
- No npm package-write token secrets. Automated publication must fail closed when Trusted Publishing is unavailable.
|
|
37
|
-
- Required reviewers should protect manual non-dry-run dispatches without preventing the normal version-PR merge path.
|
|
38
|
-
|
|
39
|
-
Under **Actions > General > Workflow permissions**, allow GitHub Actions to create pull requests. The version workflow has job-scoped `contents: write` and `pull-requests: write` permissions and uses that setting only to open or update the Changesets version PR.
|
|
40
|
-
|
|
41
|
-
Create this npm Trusted Publisher for each of these package names:
|
|
42
|
-
|
|
43
|
-
- `@appsforgood/next-supabase-kit`
|
|
44
|
-
- `@appsforgood/agent-kit-runtime`
|
|
45
|
-
|
|
46
|
-
Each trusted publisher must match:
|
|
47
|
-
|
|
48
|
-
- Provider: GitHub Actions
|
|
49
|
-
- Repository: `lukey662/agentsandskills`
|
|
50
|
-
- Workflow: `release.yml`
|
|
51
|
-
- Environment: `npm-publish`
|
|
52
|
-
- Allowed action: `npm publish`
|
|
53
|
-
|
|
54
|
-
## Security Settings
|
|
55
|
-
|
|
56
|
-
Enable:
|
|
57
|
-
|
|
58
|
-
- Private vulnerability reporting.
|
|
59
|
-
- GitHub Security Advisories.
|
|
60
|
-
- Dependabot alerts.
|
|
61
|
-
- Dependabot security updates.
|
|
62
|
-
- Code scanning alerts.
|
|
63
|
-
- Secret scanning where available.
|
|
64
|
-
- Push protection for detected secrets where available.
|
|
65
|
-
|
|
66
|
-
## Issues, Discussions, And Labels
|
|
67
|
-
|
|
68
|
-
Enable issues. Enable discussions when maintainers want support questions outside the issue queue.
|
|
69
|
-
|
|
70
|
-
Create labels from `.github/labels.yml`. Required label families:
|
|
71
|
-
|
|
72
|
-
- Type: `bug`, `enhancement`, `research`, `documentation`, `security`, `dependencies`
|
|
73
|
-
- Area: `area: cli`, `area: agents`, `area: frontend`, `area: supabase`, `area: research`, `area: release`, `area: repo-health`
|
|
74
|
-
- Status: `needs-triage`, `blocked`, `good first issue`, `help wanted`
|
|
75
|
-
- Risk: `risk: security`, `risk: breaking-change`
|
|
76
|
-
|
|
77
|
-
## GitHub Pages
|
|
78
|
-
|
|
79
|
-
Enable GitHub Pages with source "Deploy from a branch", branch `main`, folder `/docs`. The minimal docs site lives at `docs/index.md` with the `jekyll-theme-minimal` theme configured in `docs/_config.yml`. Update `docs/index.md` when the CLI surface, readiness levels, or quick-start commands change.
|
|
80
|
-
|
|
81
|
-
## Review Cadence
|
|
82
|
-
|
|
83
|
-
Review these settings before every public release and after any workflow, release, permission, package, or security-policy change.
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# Research Citation Policy
|
|
2
|
-
|
|
3
|
-
This project uses public repository research to identify reusable setup patterns for agents, skills, documentation, security, testing, and frontend quality.
|
|
4
|
-
|
|
5
|
-
## Public Package Policy
|
|
6
|
-
|
|
7
|
-
- Publish generalized summaries, promoted decisions, and methodology.
|
|
8
|
-
- Do not publish third-party source code copied from researched repositories.
|
|
9
|
-
- Do not imply endorsement by repository owners, maintainers, vendors, or design-system teams.
|
|
10
|
-
- Do not present popularity as proof of quality.
|
|
11
|
-
- Treat scanned repositories as untrusted input.
|
|
12
|
-
|
|
13
|
-
## Included Public Research Artifacts
|
|
14
|
-
|
|
15
|
-
The npm package may include:
|
|
16
|
-
|
|
17
|
-
- `research/scan-config.json`
|
|
18
|
-
- `research/scan-plan.md`
|
|
19
|
-
- `research/summaries/*`
|
|
20
|
-
- `research/proposed-updates.md`
|
|
21
|
-
|
|
22
|
-
Detailed per-repo findings, candidate lists, and raw scan outputs should stay out of the public package unless they receive separate citation and legal review.
|
|
23
|
-
|
|
24
|
-
## How Findings Become Guidance
|
|
25
|
-
|
|
26
|
-
Research findings are promoted only as generalized practices with a clear rationale. The kit should explain why a pattern is useful without copying implementation details from the source repository.
|
package/SUPPLY_CHAIN.md
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
# Supply Chain Security
|
|
2
|
-
|
|
3
|
-
The root kit and optional runtime are intended for public npm distribution. Release integrity is part of the product, not an optional operations detail.
|
|
4
|
-
|
|
5
|
-
## Publish Identity
|
|
6
|
-
|
|
7
|
-
- Public packages: `@appsforgood/next-supabase-kit` and `@appsforgood/agent-kit-runtime`.
|
|
8
|
-
- Publish path: GitHub Actions release workflow through npm Trusted Publishing.
|
|
9
|
-
- Authentication: short-lived GitHub OIDC identity only; automated publishing has no npm token fallback.
|
|
10
|
-
- Environment: `npm-publish`.
|
|
11
|
-
- Each npm package must have its own Trusted Publisher scoped to repository `lukey662/agentsandskills`, workflow `release.yml`, environment `npm-publish`, and allowed action `npm publish`.
|
|
12
|
-
|
|
13
|
-
The workflow removes inherited npm token variables, supplies a token-free npm configuration, and requires the GitHub OIDC request context before publishing. A missing or incorrect package-level Trusted Publisher fails closed instead of switching authentication modes. Successful publication carries npm provenance tied to that workflow identity.
|
|
14
|
-
|
|
15
|
-
The release workflow creates separate root/runtime tarballs and package-rooted CycloneDX SBOMs, uploads them as release evidence, and attests each SBOM against its exact tarball. Runtime publishes before root when both are new. Both public packages are verified before the matching GitHub release, so a partial npm publish cannot create an apparently successful source release.
|
|
16
|
-
|
|
17
|
-
## Release Gates
|
|
18
|
-
|
|
19
|
-
Before publish:
|
|
20
|
-
|
|
21
|
-
- `npm ci`
|
|
22
|
-
- `npm run release:check`
|
|
23
|
-
- Public release review
|
|
24
|
-
|
|
25
|
-
`npm run release:check` validates JSON assets, typechecks both workspaces, tests, builds both packages, runs install smoke, runs dependency audit, validates SBOM generation, and performs root/runtime package dry runs. The install smoke also inspects packaged public files for forbidden private-package text.
|
|
26
|
-
|
|
27
|
-
`npm run sbom:check` validates that the lockfile-derived CycloneDX SBOM can be generated, includes runtime dependencies, and has no unresolved required dependency links. Optional platform-specific dependency links may be skipped when npm records optional package edges that are not present for the current install target.
|
|
28
|
-
|
|
29
|
-
After publish:
|
|
30
|
-
|
|
31
|
-
- `npm view @appsforgood/next-supabase-kit@<version> version`
|
|
32
|
-
- `npm view @appsforgood/agent-kit-runtime@<version> version`
|
|
33
|
-
- Clean install and import of `@appsforgood/agent-kit-runtime`
|
|
34
|
-
- Clean install of both packages followed by root `doctor`, `init`, `audit --json` with zero failures, and `orchestrate validate --json`
|
|
35
|
-
|
|
36
|
-
The release workflow and `npm run publish:verify` both use `scripts/post-publish-verify.mjs` for this post-publish verification path.
|
|
37
|
-
|
|
38
|
-
## Repository Automation
|
|
39
|
-
|
|
40
|
-
- Local `npm run release:check` is the default package verification and supply-chain gate.
|
|
41
|
-
- Hosted CI may mirror package verification on push and pull request when Actions entitlement is deliberately enabled.
|
|
42
|
-
- Dependency Review can block pull requests that introduce moderate or worse known vulnerabilities when hosted Actions is available; otherwise review `npm audit` and lockfile changes locally.
|
|
43
|
-
- Dependabot proposes npm and GitHub Actions updates; workflow actions remain pinned to immutable commit SHAs with reviewed version comments.
|
|
44
|
-
- CodeQL scans JavaScript/TypeScript code.
|
|
45
|
-
- OpenSSF Scorecard publishes repository security posture as code-scanning evidence.
|
|
46
|
-
- CODEOWNERS identifies default review ownership for source, templates, schemas, and workflows.
|
|
47
|
-
- Release artifacts include an attested CycloneDX SBOM for the npm tarball.
|
|
48
|
-
|
|
49
|
-
## Maintainer Rules
|
|
50
|
-
|
|
51
|
-
- Do not use npm publish tokens for automation. Maintainer-local OTP publishing is an explicit recovery operation, not a workflow fallback.
|
|
52
|
-
- Do not publish from unreviewed branches or untrusted workflow changes.
|
|
53
|
-
- Treat workflow edits as release-risk changes requiring security and maintainer review.
|
|
54
|
-
- Keep package-write token secrets absent from repository and environment configuration.
|
|
55
|
-
- Keep package contents free of secrets, private downstream data, and copied third-party source.
|
|
56
|
-
- Keep SBOM generation and attestation in the shared release path; do not publish an unattested tarball when the workflow is available.
|
|
57
|
-
- Keep `allowScripts` approvals version-pinned to reviewed required native/build packages. Explicitly deny optional package scripts that are not needed.
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# Deployment/Observability Engineer Agent
|
|
2
|
-
|
|
3
|
-
## Purpose
|
|
4
|
-
|
|
5
|
-
Own release safety, environment configuration, migrations, logs, monitoring, and rollback.
|
|
6
|
-
|
|
7
|
-
## Responsibilities
|
|
8
|
-
|
|
9
|
-
- Verify env vars and server-only secrets.
|
|
10
|
-
- Confirm migration and deploy order.
|
|
11
|
-
- Ensure production errors are observable.
|
|
12
|
-
- Define smoke checks after deployment.
|
|
13
|
-
- Document rollback steps.
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# Documentation Maintainer Agent
|
|
2
|
-
|
|
3
|
-
## Purpose
|
|
4
|
-
|
|
5
|
-
Keep living docs accurate enough for another engineer or agent to continue safely.
|
|
6
|
-
|
|
7
|
-
## Responsibilities
|
|
8
|
-
|
|
9
|
-
- Update `SPEC.md` after functional changes.
|
|
10
|
-
- Update `DECISIONS.md` for meaningful tradeoffs.
|
|
11
|
-
- Update `DOCS.md` for workflows and setup.
|
|
12
|
-
- Update `COUNCIL.md` for meaningful handoff evidence.
|
|
13
|
-
- Update `QUALITY_GATES.md`, `DESIGN.md`, `STYLE_GUIDE.md`, `SECURITY.md`, `TESTING.md`, `DEPLOYMENT.md`, and `UPGRADE.md` when standards change.
|
|
14
|
-
|
|
15
|
-
## Rule
|
|
16
|
-
|
|
17
|
-
Docs and council evidence are part of the implementation surface, not optional cleanup.
|