@appsforgood/next-supabase-kit 0.2.1 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/README.md +22 -548
- package/UPGRADE.md +11 -77
- package/USER_GUIDE.md +181 -0
- package/agents/app-engineer/agent.md +32 -0
- package/agents/copy/agent.md +27 -0
- package/agents/design/agent.md +27 -0
- package/agents/optional/deploy/agent.md +12 -0
- package/agents/optional/docs/agent.md +12 -0
- package/agents/optional/lead-architect/agent.md +12 -0
- package/agents/optional/research/agent.md +12 -0
- package/agents/planner/agent.md +29 -0
- package/agents/qa/agent.md +35 -0
- package/agents/security/agent.md +28 -0
- package/assistant-adapters/cursor-agent-kit.mdc +5 -26
- package/catalog.json +20 -0
- package/dist/index.js +892 -8219
- package/dist/index.js.map +1 -1
- package/examples/next-supabase-installed/.agent-kit/config.json +26 -0
- package/examples/next-supabase-installed/.agent-kit/manifest.json +78 -223
- package/examples/next-supabase-installed/.antigravity/agent-kit/commands/browser-qa.toml +6 -0
- package/examples/next-supabase-installed/.antigravity/agent-kit/commands/copy.toml +6 -0
- package/examples/next-supabase-installed/.antigravity/agent-kit/commands/frontend.toml +6 -0
- package/examples/next-supabase-installed/.antigravity/agent-kit/commands/plan.toml +6 -0
- package/examples/next-supabase-installed/.antigravity/agent-kit/commands/security.toml +6 -0
- package/examples/next-supabase-installed/.antigravity/agent-kit/commands/ship.toml +6 -0
- package/examples/next-supabase-installed/.antigravity/agent-kit/commands/test.toml +6 -0
- package/examples/next-supabase-installed/.antigravity/agent-kit/plugin.json +12 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/accessibility-wcag/SKILL.md +26 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/browser-qa/SKILL.md +67 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/frontend-design/SKILL.md +26 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/nextjs-app-router/SKILL.md +23 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/owasp-security-review/SKILL.md +23 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/planning/SKILL.md +25 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/postgres-migrations/SKILL.md +21 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/product-copy/SKILL.md +22 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/ship/SKILL.md +22 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/supabase-auth-rls/SKILL.md +23 -0
- package/examples/next-supabase-installed/.antigravity/runtime-skills/testing-qa/SKILL.md +27 -0
- package/examples/next-supabase-installed/.claude/agents/app-engineer.md +32 -0
- package/examples/next-supabase-installed/.claude/agents/copy.md +27 -0
- package/examples/next-supabase-installed/.claude/agents/design.md +27 -0
- package/examples/next-supabase-installed/.claude/agents/planner.md +29 -0
- package/examples/next-supabase-installed/.claude/agents/qa.md +35 -0
- package/examples/next-supabase-installed/.claude/agents/security.md +28 -0
- package/examples/next-supabase-installed/.codex/agents/app-engineer.toml +39 -0
- package/examples/next-supabase-installed/.codex/agents/copy.toml +34 -0
- package/examples/next-supabase-installed/.codex/agents/design.toml +34 -0
- package/examples/next-supabase-installed/.codex/agents/planner.toml +36 -0
- package/examples/next-supabase-installed/.codex/agents/qa.toml +42 -0
- package/examples/next-supabase-installed/.codex/agents/security.toml +35 -0
- package/examples/next-supabase-installed/.cursor/agents/app-engineer.md +32 -0
- package/examples/next-supabase-installed/.cursor/agents/copy.md +27 -0
- package/examples/next-supabase-installed/.cursor/agents/design.md +27 -0
- package/examples/next-supabase-installed/.cursor/agents/planner.md +29 -0
- package/examples/next-supabase-installed/.cursor/agents/qa.md +35 -0
- package/examples/next-supabase-installed/.cursor/agents/security.md +28 -0
- package/examples/next-supabase-installed/.cursor/rules/cursor-agent-kit.mdc +12 -0
- package/examples/next-supabase-installed/.cursor/skills/accessibility-wcag/SKILL.md +26 -0
- package/examples/next-supabase-installed/.cursor/skills/browser-qa/SKILL.md +67 -0
- package/examples/next-supabase-installed/.cursor/skills/frontend-design/SKILL.md +26 -0
- package/examples/next-supabase-installed/.cursor/skills/nextjs-app-router/SKILL.md +23 -0
- package/examples/next-supabase-installed/.cursor/skills/owasp-security-review/SKILL.md +23 -0
- package/examples/next-supabase-installed/.cursor/skills/planning/SKILL.md +25 -0
- package/examples/next-supabase-installed/.cursor/skills/postgres-migrations/SKILL.md +21 -0
- package/examples/next-supabase-installed/.cursor/skills/product-copy/SKILL.md +22 -0
- package/examples/next-supabase-installed/.cursor/skills/ship/SKILL.md +22 -0
- package/examples/next-supabase-installed/.cursor/skills/supabase-auth-rls/SKILL.md +23 -0
- package/examples/next-supabase-installed/.cursor/skills/testing-qa/SKILL.md +27 -0
- package/examples/next-supabase-installed/.github/copilot-instructions.md +23 -0
- package/examples/next-supabase-installed/AGENTS.md +30 -0
- package/examples/next-supabase-installed/CLAUDE.md +7 -0
- package/examples/next-supabase-installed/README.md +2 -14
- package/examples/next-supabase-installed/USER_GUIDE.md +181 -0
- package/examples/next-supabase-installed/skills/accessibility-wcag/SKILL.md +26 -0
- package/examples/next-supabase-installed/skills/browser-qa/SKILL.md +67 -0
- package/examples/next-supabase-installed/skills/frontend-design/SKILL.md +26 -0
- package/examples/next-supabase-installed/skills/nextjs-app-router/SKILL.md +23 -0
- package/examples/next-supabase-installed/skills/owasp-security-review/SKILL.md +23 -0
- package/examples/next-supabase-installed/skills/planning/SKILL.md +25 -0
- package/examples/next-supabase-installed/skills/postgres-migrations/SKILL.md +21 -0
- package/examples/next-supabase-installed/skills/product-copy/SKILL.md +22 -0
- package/examples/next-supabase-installed/skills/ship/SKILL.md +22 -0
- package/examples/next-supabase-installed/skills/supabase-auth-rls/SKILL.md +23 -0
- package/examples/next-supabase-installed/skills/testing-qa/SKILL.md +27 -0
- package/examples/next-supabase-installed/tree.txt +57 -45
- package/package.json +15 -42
- package/research/agent-skill-gap-report.md +128 -0
- package/skills/accessibility-wcag/SKILL.md +26 -0
- package/skills/browser-qa/SKILL.md +67 -0
- package/skills/frontend-design/SKILL.md +26 -0
- package/skills/nextjs-app-router/SKILL.md +23 -0
- package/skills/optional/debug/SKILL.md +11 -0
- package/skills/optional/docs/SKILL.md +10 -0
- package/skills/optional/ui-polish/SKILL.md +10 -0
- package/skills/optional/upgrade/SKILL.md +10 -0
- package/skills/owasp-security-review/SKILL.md +23 -0
- package/skills/planning/SKILL.md +25 -0
- package/skills/postgres-migrations/SKILL.md +21 -0
- package/skills/product-copy/SKILL.md +22 -0
- package/skills/ship/SKILL.md +22 -0
- package/skills/supabase-auth-rls/SKILL.md +23 -0
- package/skills/testing-qa/SKILL.md +27 -0
- package/templates/next-supabase/AGENTS.md +19 -129
- package/templates/next-supabase/CLAUDE.md +4 -36
- package/BEST_PRACTICE_EVIDENCE.md +0 -45
- package/DOGFOOD.md +0 -187
- package/GOVERNANCE.md +0 -45
- package/LOOP_CODING.md +0 -107
- package/MAINTAINER_RELEASE.md +0 -100
- package/REPOSITORY_SETTINGS.md +0 -81
- package/RESEARCH_CITATION_POLICY.md +0 -26
- package/SUPPLY_CHAIN.md +0 -56
- package/agents/deployment-observability-engineer.md +0 -13
- package/agents/docs-maintainer.md +0 -17
- package/agents/frontend-design-lead.md +0 -22
- package/agents/lead-architect.md +0 -25
- package/agents/marketing-copy-lead.md +0 -20
- package/agents/nextjs-engineer.md +0 -20
- package/agents/planner.md +0 -20
- package/agents/qa-engineer.md +0 -19
- package/agents/research-analyst.md +0 -13
- package/agents/security-reviewer.md +0 -16
- package/agents/supabase-postgres-engineer.md +0 -19
- package/antigravity/commands/accessibility-pass.toml +0 -16
- package/antigravity/commands/audit.toml +0 -16
- package/antigravity/commands/browser-qa.toml +0 -18
- package/antigravity/commands/copy.toml +0 -16
- package/antigravity/commands/distinctiveness-pass.toml +0 -16
- package/antigravity/commands/frontend.toml +0 -18
- package/antigravity/commands/handoff.toml +0 -16
- package/antigravity/commands/layout-cleanup.toml +0 -16
- package/antigravity/commands/plan.toml +0 -18
- package/antigravity/commands/responsive-cleanup.toml +0 -16
- package/antigravity/commands/review.toml +0 -16
- package/antigravity/commands/screenshot-critique.toml +0 -16
- package/antigravity/commands/security.toml +0 -16
- package/antigravity/commands/setup.toml +0 -16
- package/antigravity/commands/ship.toml +0 -17
- package/antigravity/commands/spec.toml +0 -17
- package/antigravity/commands/test.toml +0 -17
- package/antigravity/commands/ui-audit.toml +0 -17
- package/antigravity/commands/ui-polish.toml +0 -17
- package/antigravity/commands/upgrade.toml +0 -17
- package/antigravity/plugin.json +0 -70
- package/assistant-adapters/antigravity.md +0 -65
- package/assistant-adapters/claude-code-subagents.md +0 -38
- package/assistant-adapters/codex-agents.md +0 -53
- package/assistant-adapters/cursor-frontend.mdc +0 -16
- package/assistant-adapters/cursor-planner.mdc +0 -14
- package/assistant-adapters/cursor-security.mdc +0 -18
- package/assistant-adapters/github-copilot-instructions.md +0 -35
- package/assistant-adapters/github-next-supabase.instructions.md +0 -28
- package/assistant-adapters/model-selection/claude-code-subagents-with-models.md +0 -32
- package/assistant-adapters/model-selection/codex-config.example.toml +0 -32
- package/assistant-adapters/model-selection/cursor-model-selection.mdc +0 -24
- package/assistant-adapters/model-selection/github-copilot-model-selection.md +0 -20
- package/assistant-adapters/orchestrator-runtime.md +0 -39
- package/checklists/accessibility.md +0 -12
- package/checklists/agent-council.md +0 -13
- package/checklists/brand-content.md +0 -15
- package/checklists/deployment.md +0 -10
- package/checklists/design-critique.md +0 -13
- package/checklists/frontend-distinctiveness.md +0 -12
- package/checklists/frontend-product-quality.md +0 -13
- package/checklists/frontend-quality.md +0 -21
- package/checklists/marketing-copy.md +0 -11
- package/checklists/owasp.md +0 -12
- package/checklists/rls.md +0 -10
- package/checklists/testing.md +0 -12
- package/checklists/ui-acceptance-rubric.md +0 -58
- package/checklists/ui-detectors.md +0 -81
- package/checklists/upgrade.md +0 -13
- package/checklists/visual-regression.md +0 -11
- package/design-adapters/claude-design.prompt.md +0 -27
- package/design-adapters/figma.prompt.md +0 -18
- package/design-adapters/google-stitch.prompt.md +0 -36
- package/design-adapters/human-designer-brief.prompt.md +0 -36
- package/design-briefs/admin-dashboard.md +0 -21
- package/design-briefs/ai-workflow-product.md +0 -25
- package/design-briefs/community-social.md +0 -26
- package/design-briefs/content-app.md +0 -21
- package/design-briefs/ecommerce.md +0 -25
- package/design-briefs/education-course.md +0 -25
- package/design-briefs/marketplace.md +0 -21
- package/design-briefs/portfolio-venue.md +0 -25
- package/design-briefs/saas.md +0 -21
- package/design-briefs/tool.md +0 -21
- package/examples/next-supabase-installed/.agent-kit/agent-roster.json +0 -267
- package/examples/next-supabase-installed/.agent-kit/model-routing.json +0 -171
- package/examples/next-supabase-installed/.agent-kit/overrides.json +0 -3
- package/examples/next-supabase-installed/audit-output.json +0 -405
- package/model-routing/default-model-routing.json +0 -171
- package/profiles/admin-app.md +0 -17
- package/profiles/content-app.md +0 -17
- package/profiles/marketplace.md +0 -17
- package/profiles/saas.md +0 -17
- package/profiles/stack-next-firebase.md +0 -25
- package/profiles/stack-next-postgres.md +0 -24
- package/profiles/stack-remix-supabase.md +0 -24
- package/prompts/audit-project-setup.md +0 -28
- package/prompts/brand-content-intake.md +0 -17
- package/prompts/copy-review.md +0 -15
- package/prompts/council-session-review.md +0 -17
- package/prompts/creative-direction-matrix.md +0 -22
- package/prompts/design-critique-gate.md +0 -28
- package/prompts/docs-update.md +0 -16
- package/prompts/frontend-design-review.md +0 -35
- package/prompts/frontend-distinctiveness-benchmark.md +0 -32
- package/prompts/frontend-product-quality-scorecard.md +0 -35
- package/prompts/implement-feature.md +0 -14
- package/prompts/lifecycle-command-index.md +0 -180
- package/prompts/migration-review.md +0 -14
- package/prompts/screenshot-review.md +0 -28
- package/prompts/security-review.md +0 -17
- package/prompts/ui-command-index.md +0 -124
- package/prompts/upgrade-review.md +0 -18
- package/prompts/visual-qa-plan.md +0 -16
- package/research/proposed-updates.md +0 -70
- package/research/scan-config.json +0 -261
- package/research/scan-plan.md +0 -24
- package/research/summaries/.gitkeep +0 -1
- package/research/summaries/agent-workflow-patterns.md +0 -37
- package/research/summaries/agentic-engineering-maturity-levels.md +0 -54
- package/research/summaries/creative-design-patterns.md +0 -38
- package/research/summaries/design-critique-patterns.md +0 -34
- package/research/summaries/docs-and-agent-patterns.md +0 -64
- package/research/summaries/dogfood-adoption-patterns.md +0 -33
- package/research/summaries/frontend-design-patterns.md +0 -64
- package/research/summaries/frontend-distinctiveness-benchmark-patterns.md +0 -38
- package/research/summaries/frontend-product-quality-rubric-patterns.md +0 -37
- package/research/summaries/maturity-model-patterns.md +0 -29
- package/research/summaries/nextjs-patterns.md +0 -65
- package/research/summaries/repo-health-patterns.md +0 -41
- package/research/summaries/scan-overview.md +0 -46
- package/research/summaries/security-patterns.md +0 -64
- package/research/summaries/supabase-rls-patterns.md +0 -54
- package/research/summaries/supply-chain-patterns.md +0 -38
- package/research/summaries/testing-patterns.md +0 -63
- package/research/summaries/upgrade-lifecycle-patterns.md +0 -26
- package/research/summaries/visual-qa-patterns.md +0 -39
- package/rosters/next-supabase-default-council.json +0 -267
- package/runtime-skills/README.md +0 -7
- package/runtime-skills/accessibility-wcag/SKILL.md +0 -8
- package/runtime-skills/agent-handoff-tracing/SKILL.md +0 -8
- package/runtime-skills/best-practice-maturity-review/SKILL.md +0 -8
- package/runtime-skills/content-first-design/SKILL.md +0 -8
- package/runtime-skills/conversion-copywriting/SKILL.md +0 -8
- package/runtime-skills/deployment-observability/SKILL.md +0 -8
- package/runtime-skills/docs-maintainer/SKILL.md +0 -8
- package/runtime-skills/frontend-design-system/SKILL.md +0 -8
- package/runtime-skills/frontend-distinctiveness-benchmark/SKILL.md +0 -8
- package/runtime-skills/frontend-product-quality-rubric/SKILL.md +0 -8
- package/runtime-skills/landing-page-copy/SKILL.md +0 -8
- package/runtime-skills/nextjs-app-router/SKILL.md +0 -8
- package/runtime-skills/onboarding-empty-state-copy/SKILL.md +0 -8
- package/runtime-skills/owasp-security-review/SKILL.md +0 -8
- package/runtime-skills/planning-council/SKILL.md +0 -8
- package/runtime-skills/positioning-messaging/SKILL.md +0 -8
- package/runtime-skills/postgres-migrations/SKILL.md +0 -8
- package/runtime-skills/product-voice-tone/SKILL.md +0 -8
- package/runtime-skills/reference-led-design-critique/SKILL.md +0 -8
- package/runtime-skills/supabase-auth-rls/SKILL.md +0 -8
- package/runtime-skills/testing-qa/SKILL.md +0 -8
- package/runtime-skills/ui-improvement-harness/SKILL.md +0 -12
- package/runtime-skills/upgrade-maintenance/SKILL.md +0 -8
- package/runtime-skills/visual-regression-qa/SKILL.md +0 -8
- package/schemas/agent-roster.schema.json +0 -54
- package/schemas/agentic-level.schema.json +0 -47
- package/schemas/audit-report-v2.schema.json +0 -71
- package/schemas/audit-report.schema.json +0 -50
- package/schemas/correction-rules.schema.json +0 -32
- package/schemas/council-session.schema.json +0 -65
- package/schemas/model-routing.schema.json +0 -72
- package/schemas/onboarding-state.schema.json +0 -36
- package/schemas/orchestrator.schema.json +0 -167
- package/schemas/project-context.schema.json +0 -94
- package/schemas/runtime-event.schema.json +0 -66
- package/schemas/runtime-run.schema.json +0 -58
- package/schemas/session-event.schema.json +0 -48
- package/schemas/studio-session.schema.json +0 -48
- package/skills/accessibility-wcag.md +0 -15
- package/skills/agent-handoff-tracing.md +0 -44
- package/skills/best-practice-maturity-review.md +0 -26
- package/skills/content-first-design.md +0 -50
- package/skills/conversion-copywriting.md +0 -38
- package/skills/deployment-observability.md +0 -14
- package/skills/docs-maintainer.md +0 -19
- package/skills/frontend-design-system.md +0 -68
- package/skills/frontend-distinctiveness-benchmark.md +0 -40
- package/skills/frontend-product-quality-rubric.md +0 -59
- package/skills/landing-page-copy.md +0 -29
- package/skills/nextjs-app-router.md +0 -18
- package/skills/onboarding-empty-state-copy.md +0 -37
- package/skills/owasp-security-review.md +0 -19
- package/skills/planning-council.md +0 -21
- package/skills/positioning-messaging.md +0 -42
- package/skills/postgres-migrations.md +0 -14
- package/skills/product-voice-tone.md +0 -35
- package/skills/reference-led-design-critique.md +0 -48
- package/skills/supabase-auth-rls.md +0 -20
- package/skills/testing-qa.md +0 -15
- package/skills/ui-improvement-harness.md +0 -96
- package/skills/upgrade-maintenance.md +0 -32
- package/skills/visual-regression-qa.md +0 -42
- package/templates/next-supabase/.agent-kit/orchestrator.json +0 -48
- package/templates/next-supabase/.agent-kit/runtime/gitignore.template +0 -2
- package/templates/next-supabase/.github/workflows/agent-kit-audit.yml +0 -35
- package/templates/next-supabase/AGENT_ROSTER.md +0 -101
- package/templates/next-supabase/ASSISTANT_ADAPTERS.md +0 -146
- package/templates/next-supabase/COUNCIL.md +0 -54
- package/templates/next-supabase/DECISIONS.md +0 -87
- package/templates/next-supabase/DEPLOYMENT.md +0 -49
- package/templates/next-supabase/DESIGN.md +0 -180
- package/templates/next-supabase/DOCS.md +0 -80
- package/templates/next-supabase/LOOP_CODING.md +0 -98
- package/templates/next-supabase/MESSAGING.md +0 -81
- package/templates/next-supabase/MODEL_ROUTING.md +0 -130
- package/templates/next-supabase/QUALITY_GATES.md +0 -97
- package/templates/next-supabase/SKILLS.md +0 -235
- package/templates/next-supabase/SPEC.md +0 -122
- package/templates/next-supabase/STYLE_GUIDE.md +0 -121
- package/templates/next-supabase/TESTING.md +0 -91
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: visual-regression-qa
|
|
3
|
-
description: Use for user-facing screen changes, reusable components, visual design tokens, responsive layouts, image-heavy pages, and visual acceptance.
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
Canonical workflow: read `skills/visual-regression-qa.md` or `.agent-kit/skills/visual-regression-qa.md`.
|
|
7
|
-
|
|
8
|
-
Name the visual QA tier, capture important states and breakpoints, handle volatile regions, and keep visual checks separate from accessibility and data-boundary tests.
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://agent-skills.dev/schemas/agent-roster.schema.json",
|
|
4
|
-
"title": "Agent Kit Agent Roster",
|
|
5
|
-
"type": "object",
|
|
6
|
-
"required": ["schemaVersion", "id", "stack", "required", "defaultWorkflow", "agents", "workflows", "handoffRules"],
|
|
7
|
-
"additionalProperties": false,
|
|
8
|
-
"properties": {
|
|
9
|
-
"schemaVersion": { "const": 1 },
|
|
10
|
-
"id": { "type": "string", "minLength": 1 },
|
|
11
|
-
"stack": { "type": "string", "minLength": 1 },
|
|
12
|
-
"required": { "type": "boolean" },
|
|
13
|
-
"defaultWorkflow": { "type": "string", "minLength": 1 },
|
|
14
|
-
"principle": { "type": "string" },
|
|
15
|
-
"agents": {
|
|
16
|
-
"type": "array",
|
|
17
|
-
"minItems": 1,
|
|
18
|
-
"items": {
|
|
19
|
-
"type": "object",
|
|
20
|
-
"required": ["id", "skills"],
|
|
21
|
-
"additionalProperties": false,
|
|
22
|
-
"properties": {
|
|
23
|
-
"id": { "type": "string", "minLength": 1 },
|
|
24
|
-
"name": { "type": "string" },
|
|
25
|
-
"file": { "type": "string" },
|
|
26
|
-
"defaultFor": { "type": "array", "items": { "type": "string" } },
|
|
27
|
-
"skills": { "type": "array", "minItems": 1, "items": { "type": "string" } },
|
|
28
|
-
"handsOffTo": { "type": "array", "items": { "type": "string" } }
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
"workflows": {
|
|
33
|
-
"type": "array",
|
|
34
|
-
"minItems": 1,
|
|
35
|
-
"items": {
|
|
36
|
-
"type": "object",
|
|
37
|
-
"required": ["id", "sequence", "council", "requiredOutputs"],
|
|
38
|
-
"additionalProperties": false,
|
|
39
|
-
"properties": {
|
|
40
|
-
"id": { "type": "string", "minLength": 1 },
|
|
41
|
-
"triggers": { "type": "array", "items": { "type": "string" } },
|
|
42
|
-
"sequence": { "type": "array", "minItems": 1, "items": { "type": "string" } },
|
|
43
|
-
"council": { "type": "array", "items": { "type": "string" } },
|
|
44
|
-
"requiredOutputs": { "type": "array", "items": { "type": "string" } }
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
},
|
|
48
|
-
"handoffRules": {
|
|
49
|
-
"type": "array",
|
|
50
|
-
"minItems": 1,
|
|
51
|
-
"items": { "type": "string" }
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
}
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://agent-skills.dev/schemas/agentic-level.schema.json",
|
|
4
|
-
"title": "Agent Kit Agentic Level Report",
|
|
5
|
-
"type": "object",
|
|
6
|
-
"required": ["currentLevel", "targetLevel", "maintainerProfile", "computedAt", "signals"],
|
|
7
|
-
"additionalProperties": false,
|
|
8
|
-
"properties": {
|
|
9
|
-
"currentLevel": { "type": "integer", "enum": [3, 4, 5, 6] },
|
|
10
|
-
"targetLevel": { "type": "integer", "enum": [3, 4, 5, 6, 7, 8] },
|
|
11
|
-
"maintainerProfile": { "type": "boolean" },
|
|
12
|
-
"computedAt": { "type": "string", "format": "date-time" },
|
|
13
|
-
"maintainerNote": { "type": "string" },
|
|
14
|
-
"signals": {
|
|
15
|
-
"type": "array",
|
|
16
|
-
"items": {
|
|
17
|
-
"type": "object",
|
|
18
|
-
"required": ["id", "level", "label", "pass", "evidence", "remediation"],
|
|
19
|
-
"additionalProperties": false,
|
|
20
|
-
"properties": {
|
|
21
|
-
"id": { "type": "string" },
|
|
22
|
-
"level": { "type": "integer", "enum": [3, 4, 5, 6] },
|
|
23
|
-
"label": { "type": "string" },
|
|
24
|
-
"pass": { "type": "boolean" },
|
|
25
|
-
"evidence": { "type": "string" },
|
|
26
|
-
"remediation": { "type": "string" }
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
},
|
|
30
|
-
"climbSteps": {
|
|
31
|
-
"type": "array",
|
|
32
|
-
"items": {
|
|
33
|
-
"type": "object",
|
|
34
|
-
"required": ["id", "level", "label", "pass", "evidence", "remediation"],
|
|
35
|
-
"additionalProperties": false,
|
|
36
|
-
"properties": {
|
|
37
|
-
"id": { "type": "string" },
|
|
38
|
-
"level": { "type": "integer", "enum": [3, 4, 5, 6] },
|
|
39
|
-
"label": { "type": "string" },
|
|
40
|
-
"pass": { "type": "boolean" },
|
|
41
|
-
"evidence": { "type": "string" },
|
|
42
|
-
"remediation": { "type": "string" }
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://agent-skills.dev/schemas/audit-report-v2.schema.json",
|
|
4
|
-
"title": "Agent Kit Audit Report v2",
|
|
5
|
-
"type": "object",
|
|
6
|
-
"required": ["schemaVersion", "generatedAt", "tool", "root", "summary", "readiness", "findings"],
|
|
7
|
-
"additionalProperties": false,
|
|
8
|
-
"properties": {
|
|
9
|
-
"schemaVersion": { "const": 2 },
|
|
10
|
-
"generatedAt": { "type": "string", "format": "date-time" },
|
|
11
|
-
"tool": {
|
|
12
|
-
"type": "object",
|
|
13
|
-
"required": ["name", "version"],
|
|
14
|
-
"additionalProperties": false,
|
|
15
|
-
"properties": {
|
|
16
|
-
"name": { "const": "agent-kit" },
|
|
17
|
-
"version": { "type": "string", "minLength": 1 }
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
"root": { "const": "." },
|
|
21
|
-
"summary": {
|
|
22
|
-
"type": "object",
|
|
23
|
-
"required": ["pass", "warn", "fail", "suppressed"],
|
|
24
|
-
"additionalProperties": false,
|
|
25
|
-
"properties": {
|
|
26
|
-
"pass": { "type": "integer", "minimum": 0 },
|
|
27
|
-
"warn": { "type": "integer", "minimum": 0 },
|
|
28
|
-
"fail": { "type": "integer", "minimum": 0 },
|
|
29
|
-
"suppressed": { "type": "integer", "minimum": 0 }
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
"readiness": { "$ref": "audit-report.schema.json#/$defs/readiness" },
|
|
33
|
-
"findings": {
|
|
34
|
-
"type": "array",
|
|
35
|
-
"items": {
|
|
36
|
-
"type": "object",
|
|
37
|
-
"required": ["level", "area", "message", "ruleId", "ruleVersion", "confidence", "evidence"],
|
|
38
|
-
"additionalProperties": false,
|
|
39
|
-
"properties": {
|
|
40
|
-
"level": { "type": "string", "enum": ["pass", "warn", "fail"] },
|
|
41
|
-
"area": { "type": "string", "minLength": 1 },
|
|
42
|
-
"message": { "type": "string", "minLength": 1 },
|
|
43
|
-
"remediation": { "type": "string", "minLength": 1 },
|
|
44
|
-
"ruleId": { "type": "string", "minLength": 1 },
|
|
45
|
-
"ruleVersion": { "type": "string", "minLength": 1 },
|
|
46
|
-
"helpUri": { "type": "string", "format": "uri" },
|
|
47
|
-
"confidence": { "type": "string", "enum": ["low", "medium", "high"] },
|
|
48
|
-
"fixable": { "type": "boolean" },
|
|
49
|
-
"suppressed": { "type": "boolean" },
|
|
50
|
-
"suppressionReason": { "type": "string", "minLength": 1 },
|
|
51
|
-
"evidence": {
|
|
52
|
-
"type": "array",
|
|
53
|
-
"items": {
|
|
54
|
-
"type": "object",
|
|
55
|
-
"required": ["kind", "summary"],
|
|
56
|
-
"additionalProperties": false,
|
|
57
|
-
"properties": {
|
|
58
|
-
"kind": { "type": "string", "enum": ["file", "command", "configuration", "runtime"] },
|
|
59
|
-
"summary": { "type": "string", "minLength": 1 },
|
|
60
|
-
"path": { "type": "string", "minLength": 1 },
|
|
61
|
-
"line": { "type": "integer", "minimum": 1 },
|
|
62
|
-
"column": { "type": "integer", "minimum": 1 },
|
|
63
|
-
"observedAt": { "type": "string", "format": "date-time" }
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
}
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://agent-skills.dev/schemas/audit-report.schema.json",
|
|
4
|
-
"title": "Agent Kit Audit Report",
|
|
5
|
-
"$defs": {
|
|
6
|
-
"readiness": {
|
|
7
|
-
"type": "object",
|
|
8
|
-
"required": ["level", "summary", "nextActions"],
|
|
9
|
-
"additionalProperties": false,
|
|
10
|
-
"properties": {
|
|
11
|
-
"level": {
|
|
12
|
-
"type": "string",
|
|
13
|
-
"enum": ["needs-setup", "baseline-setup", "needs-improvement", "best-practice-candidate"]
|
|
14
|
-
},
|
|
15
|
-
"summary": { "type": "string", "minLength": 1 },
|
|
16
|
-
"nextActions": { "type": "array", "items": { "type": "string" } }
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
"type": "object",
|
|
21
|
-
"required": ["summary", "readiness", "findings"],
|
|
22
|
-
"additionalProperties": false,
|
|
23
|
-
"properties": {
|
|
24
|
-
"summary": {
|
|
25
|
-
"type": "object",
|
|
26
|
-
"required": ["pass", "warn", "fail"],
|
|
27
|
-
"additionalProperties": false,
|
|
28
|
-
"properties": {
|
|
29
|
-
"pass": { "type": "integer", "minimum": 0 },
|
|
30
|
-
"warn": { "type": "integer", "minimum": 0 },
|
|
31
|
-
"fail": { "type": "integer", "minimum": 0 }
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
"readiness": { "$ref": "#/$defs/readiness" },
|
|
35
|
-
"findings": {
|
|
36
|
-
"type": "array",
|
|
37
|
-
"items": {
|
|
38
|
-
"type": "object",
|
|
39
|
-
"required": ["level", "area", "message"],
|
|
40
|
-
"additionalProperties": false,
|
|
41
|
-
"properties": {
|
|
42
|
-
"level": { "type": "string", "enum": ["pass", "warn", "fail"] },
|
|
43
|
-
"area": { "type": "string", "minLength": 1 },
|
|
44
|
-
"message": { "type": "string", "minLength": 1 },
|
|
45
|
-
"remediation": { "type": "string", "minLength": 1 }
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://agent-skills.dev/schemas/correction-rules.schema.json",
|
|
4
|
-
"title": "Agent Kit Correction Rules",
|
|
5
|
-
"type": "object",
|
|
6
|
-
"required": ["schemaVersion", "rules"],
|
|
7
|
-
"additionalProperties": false,
|
|
8
|
-
"properties": {
|
|
9
|
-
"schemaVersion": { "const": 1 },
|
|
10
|
-
"rules": {
|
|
11
|
-
"type": "array",
|
|
12
|
-
"items": {
|
|
13
|
-
"type": "object",
|
|
14
|
-
"required": ["id", "scope", "status", "text", "createdAt"],
|
|
15
|
-
"additionalProperties": false,
|
|
16
|
-
"properties": {
|
|
17
|
-
"id": { "type": "string", "minLength": 1 },
|
|
18
|
-
"scope": { "type": "string", "enum": ["session", "project", "agent", "upstream-proposal"] },
|
|
19
|
-
"status": { "type": "string", "enum": ["active", "retired", "proposed"] },
|
|
20
|
-
"text": { "type": "string", "minLength": 1 },
|
|
21
|
-
"appliesToAgents": { "type": "array", "items": { "type": "string" } },
|
|
22
|
-
"agentId": { "type": "string", "minLength": 1 },
|
|
23
|
-
"sourceSessionId": { "type": "string", "minLength": 1 },
|
|
24
|
-
"createdAt": { "type": "string", "format": "date-time" },
|
|
25
|
-
"reviewedAt": { "type": ["string", "null"], "format": "date-time" },
|
|
26
|
-
"retiredAt": { "type": "string", "format": "date-time" },
|
|
27
|
-
"reason": { "type": "string" }
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
}
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://agent-skills.dev/schemas/council-session.schema.json",
|
|
4
|
-
"title": "Agent Kit Council Session",
|
|
5
|
-
"type": "object",
|
|
6
|
-
"required": ["schemaVersion", "sessionId", "createdAt", "workflowId", "status", "request", "handoffs", "requiredOutputs", "verification"],
|
|
7
|
-
"additionalProperties": false,
|
|
8
|
-
"properties": {
|
|
9
|
-
"schemaVersion": { "const": 1 },
|
|
10
|
-
"sessionId": { "type": "string", "minLength": 1 },
|
|
11
|
-
"createdAt": { "type": "string", "format": "date-time" },
|
|
12
|
-
"workflowId": { "type": "string", "minLength": 1 },
|
|
13
|
-
"status": { "type": "string", "enum": ["planned", "in-progress", "blocked", "complete"] },
|
|
14
|
-
"request": { "type": "string", "minLength": 1 },
|
|
15
|
-
"affectedLayers": {
|
|
16
|
-
"type": "array",
|
|
17
|
-
"items": { "type": "string" }
|
|
18
|
-
},
|
|
19
|
-
"handoffs": {
|
|
20
|
-
"type": "array",
|
|
21
|
-
"minItems": 1,
|
|
22
|
-
"items": {
|
|
23
|
-
"type": "object",
|
|
24
|
-
"required": ["agentId", "decision", "risk", "nextHandoff"],
|
|
25
|
-
"additionalProperties": false,
|
|
26
|
-
"properties": {
|
|
27
|
-
"agentId": { "type": "string", "minLength": 1 },
|
|
28
|
-
"decision": { "type": "string", "minLength": 1 },
|
|
29
|
-
"risk": { "type": "string", "minLength": 1 },
|
|
30
|
-
"nextHandoff": { "type": "string", "minLength": 1 },
|
|
31
|
-
"evidence": {
|
|
32
|
-
"type": "array",
|
|
33
|
-
"items": { "type": "string" }
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
},
|
|
38
|
-
"requiredOutputs": {
|
|
39
|
-
"type": "array",
|
|
40
|
-
"items": {
|
|
41
|
-
"type": "object",
|
|
42
|
-
"required": ["name", "status"],
|
|
43
|
-
"additionalProperties": false,
|
|
44
|
-
"properties": {
|
|
45
|
-
"name": { "type": "string", "minLength": 1 },
|
|
46
|
-
"status": { "type": "string", "enum": ["missing", "partial", "complete", "not-applicable"] },
|
|
47
|
-
"evidence": { "type": "string" }
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
},
|
|
51
|
-
"verification": {
|
|
52
|
-
"type": "array",
|
|
53
|
-
"items": {
|
|
54
|
-
"type": "object",
|
|
55
|
-
"required": ["command", "result"],
|
|
56
|
-
"additionalProperties": false,
|
|
57
|
-
"properties": {
|
|
58
|
-
"command": { "type": "string", "minLength": 1 },
|
|
59
|
-
"result": { "type": "string", "enum": ["pass", "fail", "skipped"] },
|
|
60
|
-
"notes": { "type": "string" }
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
}
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://agent-skills.dev/schemas/model-routing.schema.json",
|
|
4
|
-
"title": "Agent Kit Model Routing",
|
|
5
|
-
"type": "object",
|
|
6
|
-
"required": ["schemaVersion", "id", "stack", "reviewedAt", "reviewCadence", "principle", "profiles", "agentRoutes", "toolSurfaces", "updatePolicy"],
|
|
7
|
-
"additionalProperties": false,
|
|
8
|
-
"properties": {
|
|
9
|
-
"schemaVersion": { "const": 1 },
|
|
10
|
-
"id": { "type": "string", "minLength": 1 },
|
|
11
|
-
"stack": { "type": "string", "minLength": 1 },
|
|
12
|
-
"reviewedAt": { "type": "string", "minLength": 1 },
|
|
13
|
-
"reviewCadence": { "type": "string", "minLength": 1 },
|
|
14
|
-
"principle": { "type": "string", "minLength": 1 },
|
|
15
|
-
"profiles": {
|
|
16
|
-
"type": "array",
|
|
17
|
-
"minItems": 1,
|
|
18
|
-
"items": {
|
|
19
|
-
"type": "object",
|
|
20
|
-
"required": ["id", "label", "intent", "reasoningEffort", "contextWindow", "latency", "cost", "preferredFor"],
|
|
21
|
-
"additionalProperties": false,
|
|
22
|
-
"properties": {
|
|
23
|
-
"id": { "type": "string", "minLength": 1 },
|
|
24
|
-
"label": { "type": "string", "minLength": 1 },
|
|
25
|
-
"intent": { "type": "string", "minLength": 1 },
|
|
26
|
-
"reasoningEffort": { "type": "string", "enum": ["low", "medium", "high", "varies"] },
|
|
27
|
-
"contextWindow": { "type": "string", "enum": ["small", "medium", "large", "very-large", "varies"] },
|
|
28
|
-
"latency": { "type": "string", "enum": ["low", "medium", "high", "varies"] },
|
|
29
|
-
"cost": { "type": "string", "enum": ["low", "medium", "high", "varies"] },
|
|
30
|
-
"preferredFor": { "type": "array", "minItems": 1, "items": { "type": "string" } }
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
"agentRoutes": {
|
|
35
|
-
"type": "array",
|
|
36
|
-
"minItems": 1,
|
|
37
|
-
"items": {
|
|
38
|
-
"type": "object",
|
|
39
|
-
"required": ["agentId", "profileId", "defaultEffort"],
|
|
40
|
-
"additionalProperties": false,
|
|
41
|
-
"properties": {
|
|
42
|
-
"agentId": { "type": "string", "minLength": 1 },
|
|
43
|
-
"profileId": { "type": "string", "minLength": 1 },
|
|
44
|
-
"defaultEffort": { "type": "string", "enum": ["low", "medium", "high"] },
|
|
45
|
-
"escalationProfileId": { "type": "string", "minLength": 1 },
|
|
46
|
-
"notes": { "type": "string" }
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
},
|
|
50
|
-
"toolSurfaces": {
|
|
51
|
-
"type": "array",
|
|
52
|
-
"minItems": 1,
|
|
53
|
-
"items": {
|
|
54
|
-
"type": "object",
|
|
55
|
-
"required": ["tool", "instructionSurface", "modelSelection", "enforcement", "adapter"],
|
|
56
|
-
"additionalProperties": false,
|
|
57
|
-
"properties": {
|
|
58
|
-
"tool": { "type": "string", "minLength": 1 },
|
|
59
|
-
"instructionSurface": { "type": "string", "minLength": 1 },
|
|
60
|
-
"modelSelection": { "type": "string", "minLength": 1 },
|
|
61
|
-
"enforcement": { "type": "string", "enum": ["enforced", "partial", "advisory", "manual"] },
|
|
62
|
-
"adapter": { "type": "string", "minLength": 1 }
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
},
|
|
66
|
-
"updatePolicy": {
|
|
67
|
-
"type": "array",
|
|
68
|
-
"minItems": 1,
|
|
69
|
-
"items": { "type": "string" }
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://agent-skills.dev/schemas/onboarding-state.schema.json",
|
|
4
|
-
"title": "Agent Kit Onboarding State",
|
|
5
|
-
"type": "object",
|
|
6
|
-
"required": [
|
|
7
|
-
"schemaVersion",
|
|
8
|
-
"depth",
|
|
9
|
-
"startedAt",
|
|
10
|
-
"lastVisitedAt",
|
|
11
|
-
"completedSections",
|
|
12
|
-
"skippedSections",
|
|
13
|
-
"currentSection",
|
|
14
|
-
"currentStep",
|
|
15
|
-
"wizardVersion"
|
|
16
|
-
],
|
|
17
|
-
"additionalProperties": false,
|
|
18
|
-
"properties": {
|
|
19
|
-
"schemaVersion": { "const": 1 },
|
|
20
|
-
"depth": { "type": "string", "enum": ["quick", "standard", "complete", "undecided"] },
|
|
21
|
-
"startedAt": { "type": "string", "format": "date-time" },
|
|
22
|
-
"lastVisitedAt": { "type": "string", "format": "date-time" },
|
|
23
|
-
"completedAt": { "type": "string", "format": "date-time" },
|
|
24
|
-
"completedSections": { "type": "array", "items": { "type": "string" } },
|
|
25
|
-
"skippedSections": { "type": "array", "items": { "type": "string" } },
|
|
26
|
-
"currentSection": { "type": "string" },
|
|
27
|
-
"currentStep": { "type": "integer", "minimum": 0 },
|
|
28
|
-
"wizardVersion": { "type": "string" },
|
|
29
|
-
"ideSurface": { "type": "string", "enum": ["cursor", "copilot", "claude", "codex", "other"] },
|
|
30
|
-
"ideVerifiedAt": { "type": "string", "format": "date-time" },
|
|
31
|
-
"visualQaTier": { "type": "string", "enum": ["baseline", "strong", "mature"] },
|
|
32
|
-
"targetAgenticLevel": { "type": "integer", "enum": [3, 4, 5, 6, 7, 8] },
|
|
33
|
-
"lastAgenticLevel": { "type": "integer", "enum": [3, 4, 5, 6] },
|
|
34
|
-
"lastAgenticComputedAt": { "type": "string", "format": "date-time" }
|
|
35
|
-
}
|
|
36
|
-
}
|
|
@@ -1,167 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://agent-skills.dev/schemas/orchestrator.schema.json",
|
|
4
|
-
"title": "Agent Kit Orchestrator Configuration",
|
|
5
|
-
"type": "object",
|
|
6
|
-
"required": ["schemaVersion"],
|
|
7
|
-
"additionalProperties": false,
|
|
8
|
-
"properties": {
|
|
9
|
-
"schemaVersion": { "const": 1 },
|
|
10
|
-
"enabled": { "type": "boolean", "default": false },
|
|
11
|
-
"defaultWorkflow": { "type": "string", "minLength": 1, "default": "planning" },
|
|
12
|
-
"defaultAlias": { "type": "string", "minLength": 1, "default": "balanced" },
|
|
13
|
-
"databasePath": { "type": "string", "minLength": 1, "default": ".agent-kit/runtime/runtime.sqlite" },
|
|
14
|
-
"providers": {
|
|
15
|
-
"type": "object",
|
|
16
|
-
"additionalProperties": { "$ref": "#/$defs/provider" },
|
|
17
|
-
"default": {}
|
|
18
|
-
},
|
|
19
|
-
"modelAliases": {
|
|
20
|
-
"type": "object",
|
|
21
|
-
"additionalProperties": { "$ref": "#/$defs/modelAlias" },
|
|
22
|
-
"default": {}
|
|
23
|
-
},
|
|
24
|
-
"agentRoutes": {
|
|
25
|
-
"type": "object",
|
|
26
|
-
"additionalProperties": { "type": "string", "minLength": 1 },
|
|
27
|
-
"default": {}
|
|
28
|
-
},
|
|
29
|
-
"agentExecutors": {
|
|
30
|
-
"type": "object",
|
|
31
|
-
"additionalProperties": { "enum": ["model", "cursor"] },
|
|
32
|
-
"default": {}
|
|
33
|
-
},
|
|
34
|
-
"mutationAgents": {
|
|
35
|
-
"type": "array",
|
|
36
|
-
"items": { "type": "string", "minLength": 1 },
|
|
37
|
-
"uniqueItems": true
|
|
38
|
-
},
|
|
39
|
-
"cursor": {
|
|
40
|
-
"type": "object",
|
|
41
|
-
"additionalProperties": false,
|
|
42
|
-
"properties": {
|
|
43
|
-
"enabled": { "type": "boolean", "default": false },
|
|
44
|
-
"command": { "type": "string", "minLength": 1, "default": "cursor-agent" },
|
|
45
|
-
"args": { "type": "array", "items": { "type": "string" } },
|
|
46
|
-
"timeoutMs": { "type": "integer", "minimum": 1000, "maximum": 3600000 }
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
"mcpServers": {
|
|
50
|
-
"type": "object",
|
|
51
|
-
"additionalProperties": { "$ref": "#/$defs/mcpServer" },
|
|
52
|
-
"default": {}
|
|
53
|
-
},
|
|
54
|
-
"sandbox": { "$ref": "#/$defs/sandbox" },
|
|
55
|
-
"approvals": { "$ref": "#/$defs/approvals" },
|
|
56
|
-
"limits": { "$ref": "#/$defs/limits" }
|
|
57
|
-
},
|
|
58
|
-
"$defs": {
|
|
59
|
-
"credentialRef": {
|
|
60
|
-
"type": "string",
|
|
61
|
-
"pattern": "^(?:env:[A-Z][A-Z0-9_]*|keychain:[a-zA-Z0-9_.:@/-]+)$"
|
|
62
|
-
},
|
|
63
|
-
"capability": {
|
|
64
|
-
"enum": ["text", "tools", "parallel-tools", "structured-output", "streaming", "vision", "reasoning", "usage"]
|
|
65
|
-
},
|
|
66
|
-
"provider": {
|
|
67
|
-
"type": "object",
|
|
68
|
-
"required": ["kind"],
|
|
69
|
-
"additionalProperties": false,
|
|
70
|
-
"properties": {
|
|
71
|
-
"kind": {
|
|
72
|
-
"enum": ["openai", "anthropic", "gemini", "xai", "deepseek", "kimi", "glm", "openrouter", "ollama", "lm-studio", "vllm", "openai-compatible"]
|
|
73
|
-
},
|
|
74
|
-
"baseUrl": { "type": "string", "format": "uri" },
|
|
75
|
-
"credentialRef": { "$ref": "#/$defs/credentialRef" },
|
|
76
|
-
"allowPrivateNetwork": { "type": "boolean", "default": false },
|
|
77
|
-
"capabilities": { "type": "array", "items": { "$ref": "#/$defs/capability" }, "uniqueItems": true },
|
|
78
|
-
"timeoutMs": { "type": "integer", "minimum": 1000, "maximum": 600000 }
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
|
-
"modelAlias": {
|
|
82
|
-
"type": "object",
|
|
83
|
-
"required": ["candidates"],
|
|
84
|
-
"additionalProperties": false,
|
|
85
|
-
"properties": {
|
|
86
|
-
"candidates": {
|
|
87
|
-
"type": "array",
|
|
88
|
-
"minItems": 1,
|
|
89
|
-
"items": {
|
|
90
|
-
"type": "object",
|
|
91
|
-
"required": ["provider", "model"],
|
|
92
|
-
"additionalProperties": false,
|
|
93
|
-
"properties": {
|
|
94
|
-
"provider": { "type": "string", "minLength": 1 },
|
|
95
|
-
"model": { "type": "string", "minLength": 1 }
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
},
|
|
99
|
-
"requiredCapabilities": { "type": "array", "items": { "$ref": "#/$defs/capability" }, "uniqueItems": true },
|
|
100
|
-
"maxAttempts": { "type": "integer", "minimum": 1, "maximum": 10 }
|
|
101
|
-
}
|
|
102
|
-
},
|
|
103
|
-
"mcpServer": {
|
|
104
|
-
"oneOf": [
|
|
105
|
-
{
|
|
106
|
-
"type": "object",
|
|
107
|
-
"required": ["transport", "command"],
|
|
108
|
-
"additionalProperties": false,
|
|
109
|
-
"properties": {
|
|
110
|
-
"transport": { "const": "stdio" },
|
|
111
|
-
"command": { "type": "string", "minLength": 1 },
|
|
112
|
-
"args": { "type": "array", "items": { "type": "string" } },
|
|
113
|
-
"envRefs": { "type": "object", "additionalProperties": { "$ref": "#/$defs/credentialRef" } },
|
|
114
|
-
"allowHostExecution": { "type": "boolean", "default": false },
|
|
115
|
-
"allowedTools": { "type": "array", "items": { "type": "string" }, "uniqueItems": true }
|
|
116
|
-
}
|
|
117
|
-
},
|
|
118
|
-
{
|
|
119
|
-
"type": "object",
|
|
120
|
-
"required": ["transport", "url", "allowedHosts"],
|
|
121
|
-
"additionalProperties": false,
|
|
122
|
-
"properties": {
|
|
123
|
-
"transport": { "const": "streamable-http" },
|
|
124
|
-
"url": { "type": "string", "format": "uri" },
|
|
125
|
-
"authRef": { "$ref": "#/$defs/credentialRef" },
|
|
126
|
-
"allowedHosts": { "type": "array", "minItems": 1, "items": { "type": "string", "minLength": 1 }, "uniqueItems": true },
|
|
127
|
-
"allowPrivateNetwork": { "type": "boolean", "default": false },
|
|
128
|
-
"allowedTools": { "type": "array", "items": { "type": "string" }, "uniqueItems": true }
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
]
|
|
132
|
-
},
|
|
133
|
-
"sandbox": {
|
|
134
|
-
"type": "object",
|
|
135
|
-
"additionalProperties": false,
|
|
136
|
-
"properties": {
|
|
137
|
-
"provider": { "enum": ["docker", "host-readonly"] },
|
|
138
|
-
"image": { "type": "string", "minLength": 1 },
|
|
139
|
-
"network": { "enum": ["none", "approved"] },
|
|
140
|
-
"allowHostMutations": { "type": "boolean" },
|
|
141
|
-
"timeoutMs": { "type": "integer", "minimum": 1000, "maximum": 3600000 },
|
|
142
|
-
"memoryMb": { "type": "integer", "minimum": 128, "maximum": 32768 },
|
|
143
|
-
"cpus": { "type": "number", "exclusiveMinimum": 0, "maximum": 32 }
|
|
144
|
-
}
|
|
145
|
-
},
|
|
146
|
-
"approvals": {
|
|
147
|
-
"type": "object",
|
|
148
|
-
"additionalProperties": false,
|
|
149
|
-
"properties": {
|
|
150
|
-
"mode": { "const": "risk-tiered" },
|
|
151
|
-
"requirePlan": { "type": "boolean" },
|
|
152
|
-
"requireFinalCommit": { "type": "boolean" }
|
|
153
|
-
}
|
|
154
|
-
},
|
|
155
|
-
"limits": {
|
|
156
|
-
"type": "object",
|
|
157
|
-
"additionalProperties": false,
|
|
158
|
-
"properties": {
|
|
159
|
-
"maxSteps": { "type": "integer", "minimum": 1, "maximum": 100 },
|
|
160
|
-
"maxAgentVisits": { "type": "integer", "minimum": 1, "maximum": 10 },
|
|
161
|
-
"maxRetriesPerNode": { "type": "integer", "minimum": 0, "maximum": 5 },
|
|
162
|
-
"maxToolCallsPerAgent": { "type": "integer", "minimum": 0, "maximum": 100 },
|
|
163
|
-
"runTimeoutMs": { "type": "integer", "minimum": 1000, "maximum": 86400000 }
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
}
|
|
167
|
-
}
|