@appsforgood/next-supabase-kit 0.1.8 → 0.2.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/BEST_PRACTICE_EVIDENCE.md +1 -1
- package/CHANGELOG.md +13 -0
- package/DOGFOOD.md +2 -1
- package/README.md +431 -335
- package/REPOSITORY_SETTINGS.md +12 -6
- package/SECURITY.md +14 -0
- package/SUPPLY_CHAIN.md +15 -14
- package/UPGRADE.md +14 -4
- package/assistant-adapters/README.md +3 -0
- package/assistant-adapters/antigravity.md +2 -0
- package/assistant-adapters/claude-code-subagents.md +1 -0
- package/assistant-adapters/codex-agents.md +2 -0
- package/assistant-adapters/cursor-agent-kit.mdc +2 -0
- package/assistant-adapters/cursor-planner.mdc +1 -1
- package/assistant-adapters/orchestrator-runtime.md +39 -0
- package/checklists/frontend-quality.md +1 -0
- package/checklists/ui-detectors.md +6 -0
- package/dist/index.js +1723 -688
- package/dist/index.js.map +1 -1
- package/dist/studio/office/assets/office.css +138 -7
- package/dist/studio/office/assets/office.js +200 -2
- package/dist/studio/wizard/assets/wizard.js +7 -1
- package/examples/next-supabase-installed/.agent-kit/manifest.json +187 -14
- package/examples/next-supabase-installed/audit-output.json +405 -380
- package/package.json +25 -4
- package/prompts/frontend-design-review.md +6 -0
- package/prompts/screenshot-review.md +2 -1
- package/schemas/audit-report-v2.schema.json +71 -0
- package/schemas/audit-report.schema.json +16 -16
- package/schemas/orchestrator.schema.json +167 -0
- package/schemas/runtime-event.schema.json +66 -0
- package/schemas/runtime-run.schema.json +58 -0
- package/schemas/session-event.schema.json +2 -0
- package/templates/next-supabase/.agent-kit/orchestrator.json +48 -0
- package/templates/next-supabase/.agent-kit/runtime/gitignore.template +2 -0
- package/templates/next-supabase/AGENTS.md +2 -0
- package/templates/next-supabase/ASSISTANT_ADAPTERS.md +20 -0
- package/templates/next-supabase/DECISIONS.md +14 -0
- package/templates/next-supabase/DEPLOYMENT.md +4 -0
- package/templates/next-supabase/DESIGN.md +6 -0
- package/templates/next-supabase/DOCS.md +8 -0
- package/templates/next-supabase/MODEL_ROUTING.md +9 -0
- package/templates/next-supabase/QUALITY_GATES.md +5 -1
- package/templates/next-supabase/SECURITY.md +10 -0
- package/templates/next-supabase/SPEC.md +3 -1
- package/templates/next-supabase/STYLE_GUIDE.md +15 -0
- package/templates/next-supabase/TESTING.md +6 -0
- package/templates/next-supabase/UPGRADE.md +1 -0
|
@@ -71,3 +71,17 @@ Use `MODEL_ROUTING.md` and `.agent-kit/model-routing.json` as the provider-neutr
|
|
|
71
71
|
### Consequences
|
|
72
72
|
|
|
73
73
|
Exact model names remain dated recommendations, while agents keep stable profile intent and evidence requirements.
|
|
74
|
+
|
|
75
|
+
## Optional Executable Orchestrator
|
|
76
|
+
|
|
77
|
+
### Context
|
|
78
|
+
|
|
79
|
+
IDE rules and subagents provide advisory council routing but are not proof that an executable, resumable workflow ran.
|
|
80
|
+
|
|
81
|
+
### Decision
|
|
82
|
+
|
|
83
|
+
Keep `.agent-kit/orchestrator.json` disabled by default. When programmatic execution is required, install `@appsforgood/agent-kit-runtime`, validate deterministic aliases and credential references, and use its bounded LangGraph, SQLite checkpoint, approval, MCP, Docker, worktree, and redacted-evidence contracts. Permit at most one approved scoped commit; retain merge, push, pull request, deployment, and migration decisions for the operator.
|
|
84
|
+
|
|
85
|
+
### Consequences
|
|
86
|
+
|
|
87
|
+
The project can opt into stronger execution enforcement without making provider credentials or native runtime dependencies part of baseline Agent Kit use. Host execution and private network exceptions require explicit local rationale and approval evidence.
|
|
@@ -18,6 +18,8 @@ Required Supabase variables usually include:
|
|
|
18
18
|
- `NEXT_PUBLIC_SUPABASE_ANON_KEY`
|
|
19
19
|
- Server-only service-role key when needed
|
|
20
20
|
|
|
21
|
+
Optional Agent Kit runtime provider credentials must be referenced with `env:` names or OS-keychain entries. Do not copy resolved values into `.agent-kit/orchestrator.json`, deployment config, run evidence, or CI logs.
|
|
22
|
+
|
|
21
23
|
## Migration Order
|
|
22
24
|
|
|
23
25
|
Before deploying code that depends on database changes:
|
|
@@ -42,4 +44,6 @@ Document:
|
|
|
42
44
|
|
|
43
45
|
Document rollback steps for code, database migrations, and environment variable mistakes.
|
|
44
46
|
|
|
47
|
+
If an orchestrated run produced a worktree or scoped commit, record the run ID, branch, commit, approval decisions, whether any migration/deploy command actually ran, and the manual keep/remove/merge decision. The runtime does not perform that repository or deployment step automatically.
|
|
48
|
+
|
|
45
49
|
Link upgrade-specific rollback evidence from `UPGRADE.md` when the release includes package, framework, Agent Kit, or migration changes.
|
|
@@ -34,6 +34,12 @@ Anti-references:
|
|
|
34
34
|
- TBD: pattern, palette, layout, copy, or interaction style to avoid.
|
|
35
35
|
- TBD: another explicit non-goal.
|
|
36
36
|
|
|
37
|
+
Common visual tropes to reject unless a mature brand system explicitly requires them:
|
|
38
|
+
|
|
39
|
+
- Accent-border cards, glow rails, neon strokes, gradient borders, and one-sided colored panel borders.
|
|
40
|
+
- Generic gradient heroes, gradient text, abstract blobs, card soup, oversized rounded glass panels, and ornamental icon walls.
|
|
41
|
+
- Fake dashboard metrics, decorative credibility badges, vague SaaS sayings, filler "features / benefits / how it works" sections, and color-only status styling.
|
|
42
|
+
|
|
37
43
|
## Creative Direction
|
|
38
44
|
|
|
39
45
|
Before implementation, produce at least two distinct visual directions and choose one.
|
|
@@ -20,6 +20,7 @@ Document:
|
|
|
20
20
|
- Agent council routing in `.agent-kit/agent-roster.json`
|
|
21
21
|
- Assistant activation surfaces in `ASSISTANT_ADAPTERS.md`
|
|
22
22
|
- Optional runtime adapter surfaces such as `.antigravity/agent-kit/` and `.antigravity/runtime-skills/`
|
|
23
|
+
- Optional executable orchestration in `@appsforgood/agent-kit-runtime`, configured by `.agent-kit/orchestrator.json`
|
|
23
24
|
- Model profile routing in `MODEL_ROUTING.md` and `.agent-kit/model-routing.json`
|
|
24
25
|
- Council-session evidence in `COUNCIL.md`
|
|
25
26
|
- Agent, council-session, model-routing, and audit-report schemas in `.agent-kit/schemas/`
|
|
@@ -42,6 +43,7 @@ Document primary workflows, including:
|
|
|
42
43
|
- Planning and core-change handoffs from `AGENT_ROSTER.md`
|
|
43
44
|
- Tool-specific assistant activation from `ASSISTANT_ADAPTERS.md`
|
|
44
45
|
- Runtime command validation with `agent-kit adapter validate antigravity` when Antigravity is active
|
|
46
|
+
- Offline runtime validation and planning with `agent-kit orchestrate validate` and `agent-kit orchestrate plan`
|
|
45
47
|
- UI improvement command workflows from `.agent-kit/prompts/ui-command-index.md`
|
|
46
48
|
- Deterministic UI detector and acceptance review from `.agent-kit/checklists/ui-detectors.md` and `.agent-kit/checklists/ui-acceptance-rubric.md`
|
|
47
49
|
- Model-selection setup, enforcement status, and limitations from `MODEL_ROUTING.md`
|
|
@@ -61,6 +63,12 @@ Document primary workflows, including:
|
|
|
61
63
|
|
|
62
64
|
Runtime command files are adapters only. Native commands such as `/plan`, `/security`, `/frontend`, `/ui-audit`, `/ui-polish`, `/layout-cleanup`, `/responsive-cleanup`, `/accessibility-pass`, `/distinctiveness-pass`, `/screenshot-critique`, `/browser-qa`, `/copy`, `/handoff`, `/audit`, `/setup`, `/upgrade`, and `/ship` should point back to `AGENTS.md`, `.agent-kit/agent-roster.json`, `QUALITY_GATES.md`, `.agent-kit/skills/`, and Agent Studio evidence.
|
|
63
65
|
|
|
66
|
+
## Optional Orchestrator
|
|
67
|
+
|
|
68
|
+
Install `@appsforgood/agent-kit-runtime` only when the project needs executable council workflows. Keep `.agent-kit/orchestrator.json` disabled until provider aliases, credential references, mutation roles, MCP allowlists, Docker policy, limits, and approvals are reviewed.
|
|
69
|
+
|
|
70
|
+
The runtime compiles roster sequences to bounded LangGraph nodes, checkpoints in SQLite, records redacted JSONL evidence, pauses for risk-tiered approvals, and uses an isolated Git worktree. It may create one approved scoped commit but never merges, pushes, opens a pull request, deploys, or applies migrations automatically. `agent-kit studio serve` exposes the same run and approval state in its Runs tab.
|
|
71
|
+
|
|
64
72
|
High-risk UI work must include desktop and mobile screenshots plus authenticated or permission-state evidence when the surface requires login, roles, tenant context, or permissions.
|
|
65
73
|
|
|
66
74
|
## Integration Points
|
|
@@ -6,6 +6,7 @@ Canonical source of truth:
|
|
|
6
6
|
|
|
7
7
|
- `.agent-kit/model-routing.json`
|
|
8
8
|
- `.agent-kit/schemas/model-routing.schema.json`
|
|
9
|
+
- `.agent-kit/orchestrator.json`
|
|
9
10
|
- `.agent-kit/agent-roster.json`
|
|
10
11
|
- `ASSISTANT_ADAPTERS.md`
|
|
11
12
|
|
|
@@ -16,6 +17,7 @@ Canonical source of truth:
|
|
|
16
17
|
- Keep model choice as a dated, reviewable routing layer.
|
|
17
18
|
- Do not store secrets, API keys, billing notes, private model entitlement details, or workspace-only vendor terms in this file.
|
|
18
19
|
- If an IDE cannot enforce per-agent model choice, document the limitation honestly and use the closest manual or advisory setup.
|
|
20
|
+
- Runtime aliases must use an ordered candidate list, explicit required capabilities, and bounded attempts. Missing capabilities are skipped before a provider call.
|
|
19
21
|
|
|
20
22
|
## Agent Profiles
|
|
21
23
|
|
|
@@ -41,6 +43,13 @@ Canonical source of truth:
|
|
|
41
43
|
| Cursor | `.cursor/rules/*.mdc` | Unverified | Advisory | Record date, owner, model picker/team setting, and loaded rule evidence. |
|
|
42
44
|
| GitHub Copilot | `.github/copilot-instructions.md`, `.github/instructions/*.instructions.md` | Unverified | Advisory | Record date, owner, selected chat/coding-agent model, and loaded instruction evidence. |
|
|
43
45
|
| Antigravity | `.antigravity/agent-kit/plugin.json`, `.antigravity/agent-kit/commands/*.toml`, `.antigravity/runtime-skills/*/SKILL.md` | Unverified | Advisory | Record date, owner, `agent-kit adapter validate antigravity`, and optional native `agy plugin validate` output. |
|
|
46
|
+
| Agent Kit Runtime | `.agent-kit/orchestrator.json` | Alias routing and fallbacks | Enforced | Record `orchestrate validate`, provider probes, selected provider/model events, and fallback reasons. |
|
|
47
|
+
|
|
48
|
+
## Runtime Aliases
|
|
49
|
+
|
|
50
|
+
The executable runtime supports native adapters for OpenAI, Anthropic, Gemini, and OpenAI-compatible APIs including xAI/Grok, DeepSeek, Kimi, GLM, OpenRouter, Ollama, LM Studio, and vLLM. Configure project-owned model names in `.agent-kit/orchestrator.json`; do not copy dated IDE recommendations into active runtime aliases without verifying provider documentation and access.
|
|
51
|
+
|
|
52
|
+
Each alias is deterministic: candidates are attempted in order, capability mismatches do not consume an attempt, provider failures are recorded, and `maxAttempts` bounds fallback. Tool-using agents automatically require the `tools` capability, so text-only local models fail closed instead of receiving unsupported tool calls.
|
|
44
53
|
|
|
45
54
|
## June 2026 Commented Recommendations
|
|
46
55
|
|
|
@@ -18,7 +18,7 @@ Use `agent-kit audit --min-readiness <level>` in CI when the project wants a mer
|
|
|
18
18
|
Baseline means the project is usable and the agent kit can audit it.
|
|
19
19
|
|
|
20
20
|
- `AGENTS.md`, `AGENT_ROSTER.md`, `ASSISTANT_ADAPTERS.md`, `COUNCIL.md`, `SPEC.md`, `DECISIONS.md`, `DOCS.md`, `DESIGN.md`, `MESSAGING.md`, `MODEL_ROUTING.md`, `STYLE_GUIDE.md`, `SECURITY.md`, `TESTING.md`, `DEPLOYMENT.md`, and `UPGRADE.md` exist.
|
|
21
|
-
- `.agent-kit/agent-roster.json`, `.agent-kit/model-routing.json`, and `.agent-kit/schemas/` exist.
|
|
21
|
+
- `.agent-kit/agent-roster.json`, `.agent-kit/model-routing.json`, disabled-by-default `.agent-kit/orchestrator.json`, and `.agent-kit/schemas/` exist.
|
|
22
22
|
- `.agent-kit/assistant-adapters/` exists.
|
|
23
23
|
- Runtime adapters such as Antigravity are validated with `agent-kit adapter validate <target>` before being treated as active.
|
|
24
24
|
- Agent Studio schemas for project context, correction rules, session events, and studio sessions exist when the installed kit version includes them.
|
|
@@ -47,6 +47,7 @@ Strong means the project is safe for repeated team or agent delivery.
|
|
|
47
47
|
- `TESTING.md` defines unit, regression, smoke, visual QA, accessibility, and release checks.
|
|
48
48
|
- `DEPLOYMENT.md` documents environments, migrations, env vars, observability, rollback, and post-release verification.
|
|
49
49
|
- `UPGRADE.md` documents diff/update flow, release notes, migration review, generated types, and rollback evidence.
|
|
50
|
+
- When executable orchestration is enabled, `orchestrate validate` passes and provider aliases, credentials, mutation roles, MCP, Docker, limits, and approvals have named owners.
|
|
50
51
|
|
|
51
52
|
### Best-Practice
|
|
52
53
|
|
|
@@ -63,6 +64,7 @@ Best-practice means evidence can survive handoff, release, and later audit.
|
|
|
63
64
|
- Runtime adapter evidence includes command/plugin validation, portable `SKILL.md` coverage, package allowlist coverage, and proof that adapter files point back to Agent Kit source-of-truth contracts.
|
|
64
65
|
- Repo health includes issue/PR templates, CODEOWNERS, dependency updates, CodeQL or equivalent scanning, dependency review, provenance expectations, support, conduct, and governance.
|
|
65
66
|
- Public or shared package releases use Trusted Publishing or equivalent identity-bound release provenance.
|
|
67
|
+
- Executable runs have offline plan evidence, explicit approvals, bounded provider/tool outcomes, redacted run events, isolated worktree status, scoped commit review, and a manual merge/remove decision.
|
|
66
68
|
|
|
67
69
|
## Change Acceptance Matrix
|
|
68
70
|
|
|
@@ -76,6 +78,7 @@ Best-practice means evidence can survive handoff, release, and later audit.
|
|
|
76
78
|
| Security-sensitive | Security Reviewer, Lead Architect, QA | OWASP review, boundary validation, dependency/secret review, regression or smoke evidence |
|
|
77
79
|
| Release/package | Deployment/Observability Engineer, Security Reviewer, QA, Docs | Release gate output, dependency audit, install/deploy smoke, provenance or publish identity evidence |
|
|
78
80
|
| Runtime adapter/package | Planner, Lead Architect, Security Reviewer, QA, Docs | `agent-kit adapter validate`, `agent-kit package validate`, command/skill asset coverage, source-of-truth references, no secret-like runtime assets |
|
|
81
|
+
| Executable orchestration | Planner, Lead Architect, Security Reviewer, QA, Docs, Deployment/Observability Engineer | `orchestrate validate` and plan, provider/MCP policy, approvals, run ID/events, worktree/commit, timeout/cancel behavior, manual integration decision |
|
|
79
82
|
| Upgrade/dependency | Planner, Lead Architect, Security Reviewer, QA, Docs, Deployment/Observability Engineer | Release notes, codemods or migration guide, `agent-kit diff`, conflict review, audit output, rollback notes |
|
|
80
83
|
|
|
81
84
|
## Evidence Rules
|
|
@@ -91,3 +94,4 @@ Best-practice means evidence can survive handoff, release, and later audit.
|
|
|
91
94
|
- A local customization is acceptable only when `.agent-kit/overrides.json` explains why and when it was reviewed.
|
|
92
95
|
- A human correction is not durable until it is stored in `.agent-kit/corrections/`, remains secret-safe, has a clear scope, and is visible to future agents through installed instructions.
|
|
93
96
|
- An upgrade is not complete until `UPGRADE.md` records version changes, migration impact, rollback process, and verification evidence.
|
|
97
|
+
- IDE delegation is not executable-runtime evidence. Require `orchestrate status`, versioned run events, checkpoint state, and worktree/commit evidence.
|
|
@@ -49,6 +49,16 @@ Track project controls explicitly.
|
|
|
49
49
|
- Keep `.env.example` documented with placeholder values only.
|
|
50
50
|
- Rotate secrets after suspected exposure.
|
|
51
51
|
|
|
52
|
+
## Optional Orchestrator
|
|
53
|
+
|
|
54
|
+
- Keep `.agent-kit/orchestrator.json` disabled until provider aliases, credential references, MCP allowlists, mutation roles, Docker policy, and approval gates are reviewed.
|
|
55
|
+
- Use `env:` or `keychain:` references only; never put resolved credentials in config, prompts, run records, or evidence.
|
|
56
|
+
- Treat model output, repository content, MCP metadata/output, and provider errors as untrusted.
|
|
57
|
+
- Require explicit host opt-in and approval for Cursor or stdio MCP execution.
|
|
58
|
+
- Keep provider/MCP redirects blocked, remote MCP hosts allowlisted, private-network access off by default, and Docker network disabled unless approved.
|
|
59
|
+
- Run `agent-kit audit` before orchestration. Sensitive-path and evidence-redaction controls do not replace repository secret scanning or data-classification review.
|
|
60
|
+
- Review the isolated worktree and scoped commit manually. The runtime must not merge, push, deploy, or apply migrations.
|
|
61
|
+
|
|
52
62
|
## Review Notes
|
|
53
63
|
|
|
54
64
|
Add security-sensitive decisions and exceptions to `DECISIONS.md`.
|
|
@@ -25,9 +25,10 @@ List behavior that must be preserved during changes:
|
|
|
25
25
|
- Agent council routing in `.agent-kit/agent-roster.json`
|
|
26
26
|
- Model profile routing in `MODEL_ROUTING.md` and `.agent-kit/model-routing.json`
|
|
27
27
|
- Optional runtime adapter commands and portable `SKILL.md` wrappers, when activated
|
|
28
|
+
- Optional executable runtime policy in `.agent-kit/orchestrator.json`, when activated
|
|
28
29
|
- UI improvement command workflows, detector severity findings, and acceptance rubric when frontend work is in scope
|
|
29
30
|
- Council-session evidence in `COUNCIL.md`
|
|
30
|
-
- Agent, council-session, model-routing, and audit-report schema contracts in `.agent-kit/schemas/`
|
|
31
|
+
- Agent, council-session, model-routing, orchestrator, runtime-run, runtime-event, and audit-report schema contracts in `.agent-kit/schemas/`
|
|
31
32
|
- Planner default ownership for planning and Lead Architect review for core changes
|
|
32
33
|
- Quality gate evidence in `QUALITY_GATES.md`
|
|
33
34
|
- Content-first design direction in `DESIGN.md`
|
|
@@ -68,6 +69,7 @@ Record the current maturity target and evidence.
|
|
|
68
69
|
| Council routing | TBD | TBD | TBD | `AGENT_ROSTER.md`, `COUNCIL.md` |
|
|
69
70
|
| Model routing | TBD | TBD | TBD | `MODEL_ROUTING.md`, `ASSISTANT_ADAPTERS.md` |
|
|
70
71
|
| Runtime adapters | TBD | TBD | TBD | `agent-kit adapter validate antigravity`, `.antigravity/agent-kit/`, `.antigravity/runtime-skills/` |
|
|
72
|
+
| Executable orchestration | TBD | TBD | TBD | `agent-kit orchestrate validate`, plan/status output, approvals, redacted events, scoped worktree commit |
|
|
71
73
|
| Architecture | TBD | TBD | TBD | Affected-layer map, `DECISIONS.md` |
|
|
72
74
|
| Supabase/RLS | TBD | TBD | TBD | RLS inventory, migration tests |
|
|
73
75
|
| Messaging | TBD | TBD | TBD | `MESSAGING.md`, proof map, objection handling, CTA hierarchy |
|
|
@@ -45,6 +45,21 @@ Prefer:
|
|
|
45
45
|
- Mobile-first responsive layouts.
|
|
46
46
|
- Creative direction that is visibly tied to product content and user need.
|
|
47
47
|
|
|
48
|
+
### Anti-Slop UI Rules
|
|
49
|
+
|
|
50
|
+
Do not use generic AI-slop treatments as a substitute for product design. If a mature brand system intentionally uses one of these patterns, record the exception and rationale in `DESIGN.md` or `.agent-kit/overrides.json`.
|
|
51
|
+
|
|
52
|
+
- No accent-border cards. Replace thick, high-contrast, one-sided colored borders, glow rails, neon strokes, and gradient borders on cards, callouts, alerts, panels, or status messages with restrained 1px full-border surfaces, subtle background tint when needed, clear labels, icons, and semantic state text.
|
|
53
|
+
- No gradient-as-design. Replace generic purple-blue gradient heroes, gradient text, and gradient blobs with product-specific imagery, workflow screenshots, object-focused media, real content, or a quiet tokenized background.
|
|
54
|
+
- No card soup. Replace large grids of decorative cards with task-first layouts: tables, lists, timelines, forms, split panes, dashboards with real hierarchy, or workflow-specific grouped sections.
|
|
55
|
+
- No fake dashboard proof. Replace invented metrics, placeholder charts, and claims like "98% faster" with real product data, honest sample labels, empty states, or "connect data to view this" states.
|
|
56
|
+
- No vague SaaS sayings. Replace phrases like "supercharge your workflow", "unlock insights", "seamless collaboration", or "AI-powered productivity" with concrete user actions, product nouns, constraints, and outcomes the product actually supports.
|
|
57
|
+
- No badge or confetti credibility. Replace decorative badges, pills, stars, awards, or "trusted by" placeholders with real proof, integration names, security posture, support details, or omit the section.
|
|
58
|
+
- No oversized rounded glass panels. Replace translucent blur cards, frosted panels, and soft-glow shells with normal surfaces, clear section boundaries, practical density, and brand-appropriate depth.
|
|
59
|
+
- No ornamental icon walls. Replace generic floating icons with functional icons attached to commands, states, navigation, feature rows, or concrete workflow steps.
|
|
60
|
+
- No layout filler sections. Replace generic "features", "benefits", or "how it works" sections when the user asked for an app or tool with the actual usable workflow as the first screen.
|
|
61
|
+
- No inaccessible decorative state styling. Replace color-only alerts, low-contrast tints, and vague status panels with semantic text, icons, ARIA-compatible state, WCAG AA contrast, and recovery actions.
|
|
62
|
+
|
|
48
63
|
Use `.agent-kit/prompts/brand-content-intake.md` and `.agent-kit/prompts/creative-direction-matrix.md` when inputs are under-specified. Use `.agent-kit/design-briefs/*` before designing SaaS, admin dashboard, marketplace, content app, tool, ecommerce, portfolio/venue, education, community/social, or AI workflow surfaces. Use `.agent-kit/prompts/screenshot-review.md` after implementation to review desktop and mobile screenshots. Use `.agent-kit/prompts/visual-qa-plan.md` when a change needs repeatable visual regression or component-state evidence.
|
|
49
64
|
|
|
50
65
|
Use `.agent-kit/prompts/design-critique-gate.md` before accepting significant frontend work. `DESIGN.md` should name a reference set, anti-references, source-safety notes, and a distinctiveness verdict so a design cannot pass only because it has tokens, states, and screenshots.
|
|
@@ -69,6 +69,12 @@ agent-kit audit --min-readiness baseline-setup
|
|
|
69
69
|
agent-kit adapter validate all # when IDE or adapter assets change
|
|
70
70
|
```
|
|
71
71
|
|
|
72
|
+
## Optional Orchestrator Tests
|
|
73
|
+
|
|
74
|
+
When `.agent-kit/orchestrator.json` is enabled, add evidence for offline config/plan validation, required capability routing, approval pause/resume, provider/MCP failure handling, Docker or explicit host policy, worktree isolation, scoped commit review, cancellation/timeout, and redacted event export. Use mocked loopback providers for deterministic tests; keep real credentials out of fixtures and CI logs.
|
|
75
|
+
|
|
76
|
+
Run `agent-kit orchestrate status <run-id>` after a test run and record the run ID, approvals, worktree/commit, and remaining manual merge or cleanup step.
|
|
77
|
+
|
|
72
78
|
## Security-Focused Tests
|
|
73
79
|
|
|
74
80
|
Prioritize:
|
|
@@ -24,6 +24,7 @@ Use `agent-kit audit --min-readiness best-practice-candidate` only after starter
|
|
|
24
24
|
- Review `AGENTS.md`, `AGENT_ROSTER.md`, `ASSISTANT_ADAPTERS.md`, `MODEL_ROUTING.md`, `COUNCIL.md`, `QUALITY_GATES.md`, `SECURITY.md`, `TESTING.md`, and `DEPLOYMENT.md`.
|
|
25
25
|
- If using Antigravity, review `.antigravity/agent-kit/plugin.json`, `.antigravity/agent-kit/commands/*.toml`, and `.antigravity/runtime-skills/*/SKILL.md`.
|
|
26
26
|
- Validate runtime adapter assets with `agent-kit adapter validate antigravity`.
|
|
27
|
+
- If `@appsforgood/agent-kit-runtime` is installed, finish or cancel paused runs, update it deliberately, review `.agent-kit/orchestrator.json` and runtime schema conflict proposals, then run `agent-kit orchestrate validate` and an offline plan.
|
|
27
28
|
- Record accepted tradeoffs in `DECISIONS.md`.
|
|
28
29
|
- Update this file with package version, release notes, migration status, rollback notes, owner, and date.
|
|
29
30
|
|