antigravity-ai-kit 2.1.0 → 3.0.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.
Files changed (113) hide show
  1. package/.agent/README.md +4 -4
  2. package/.agent/agents/README.md +16 -12
  3. package/.agent/agents/architect.md +1 -0
  4. package/.agent/agents/backend-specialist.md +11 -0
  5. package/.agent/agents/code-reviewer.md +1 -0
  6. package/.agent/agents/database-architect.md +11 -0
  7. package/.agent/agents/devops-engineer.md +11 -0
  8. package/.agent/agents/e2e-runner.md +1 -0
  9. package/.agent/agents/explorer-agent.md +11 -0
  10. package/.agent/agents/frontend-specialist.md +11 -0
  11. package/.agent/agents/mobile-developer.md +11 -0
  12. package/.agent/agents/performance-optimizer.md +11 -0
  13. package/.agent/agents/planner.md +1 -0
  14. package/.agent/agents/refactor-cleaner.md +1 -0
  15. package/.agent/agents/reliability-engineer.md +11 -0
  16. package/.agent/agents/security-reviewer.md +1 -0
  17. package/.agent/agents/sprint-orchestrator.md +10 -0
  18. package/.agent/agents/tdd-guide.md +1 -0
  19. package/.agent/commands/code-review.md +1 -0
  20. package/.agent/commands/debug.md +1 -0
  21. package/.agent/commands/deploy.md +1 -0
  22. package/.agent/commands/plan.md +1 -0
  23. package/.agent/commands/status.md +1 -0
  24. package/.agent/commands/tdd.md +1 -0
  25. package/.agent/contexts/brainstorm.md +26 -0
  26. package/.agent/contexts/debug.md +28 -0
  27. package/.agent/contexts/implement.md +29 -0
  28. package/.agent/contexts/review.md +27 -0
  29. package/.agent/contexts/ship.md +28 -0
  30. package/.agent/engine/identity.json +13 -0
  31. package/.agent/engine/loading-rules.json +23 -1
  32. package/.agent/engine/marketplace-index.json +29 -0
  33. package/.agent/engine/reliability-config.json +14 -0
  34. package/.agent/engine/sdlc-map.json +44 -0
  35. package/.agent/engine/workflow-state.json +28 -2
  36. package/.agent/hooks/hooks.json +27 -25
  37. package/.agent/manifest.json +12 -4
  38. package/.agent/rules.md +2 -1
  39. package/.agent/skills/README.md +10 -5
  40. package/.agent/skills/i18n-localization/SKILL.md +191 -0
  41. package/.agent/skills/mcp-integration/SKILL.md +224 -0
  42. package/.agent/skills/parallel-agents/SKILL.md +1 -1
  43. package/.agent/skills/shell-conventions/SKILL.md +92 -0
  44. package/.agent/skills/ui-ux-pro-max/SKILL.md +557 -0
  45. package/.agent/skills/ui-ux-pro-max/data/charts.csv +26 -0
  46. package/.agent/skills/ui-ux-pro-max/data/colors.csv +97 -0
  47. package/.agent/skills/ui-ux-pro-max/data/icons.csv +101 -0
  48. package/.agent/skills/ui-ux-pro-max/data/landing.csv +31 -0
  49. package/.agent/skills/ui-ux-pro-max/data/products.csv +97 -0
  50. package/.agent/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
  51. package/.agent/skills/ui-ux-pro-max/data/stacks/astro.csv +54 -0
  52. package/.agent/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  53. package/.agent/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  54. package/.agent/skills/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
  55. package/.agent/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  56. package/.agent/skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
  57. package/.agent/skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  58. package/.agent/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  59. package/.agent/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
  60. package/.agent/skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  61. package/.agent/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  62. package/.agent/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  63. package/.agent/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  64. package/.agent/skills/ui-ux-pro-max/data/styles.csv +68 -0
  65. package/.agent/skills/ui-ux-pro-max/data/typography.csv +58 -0
  66. package/.agent/skills/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
  67. package/.agent/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  68. package/.agent/skills/ui-ux-pro-max/data/web-interface.csv +31 -0
  69. package/.agent/skills/ui-ux-pro-max/scripts/core.py +253 -0
  70. package/.agent/skills/ui-ux-pro-max/scripts/design_system.py +1067 -0
  71. package/.agent/skills/ui-ux-pro-max/scripts/search.py +114 -0
  72. package/.agent/templates/adr-template.md +32 -0
  73. package/.agent/templates/bug-report.md +37 -0
  74. package/.agent/templates/feature-request.md +32 -0
  75. package/.agent/workflows/README.md +92 -78
  76. package/.agent/workflows/brainstorm.md +154 -100
  77. package/.agent/workflows/create.md +142 -75
  78. package/.agent/workflows/debug.md +157 -98
  79. package/.agent/workflows/deploy.md +195 -144
  80. package/.agent/workflows/enhance.md +157 -65
  81. package/.agent/workflows/orchestrate.md +171 -114
  82. package/.agent/workflows/plan.md +147 -72
  83. package/.agent/workflows/preview.md +140 -83
  84. package/.agent/workflows/quality-gate.md +196 -0
  85. package/.agent/workflows/retrospective.md +197 -0
  86. package/.agent/workflows/review.md +188 -0
  87. package/.agent/workflows/status.md +142 -91
  88. package/.agent/workflows/test.md +168 -95
  89. package/.agent/workflows/ui-ux-pro-max.md +181 -127
  90. package/README.md +214 -77
  91. package/bin/ag-kit.js +340 -10
  92. package/lib/agent-registry.js +214 -0
  93. package/lib/agent-reputation.js +351 -0
  94. package/lib/cli-commands.js +235 -0
  95. package/lib/conflict-detector.js +245 -0
  96. package/lib/engineering-manager.js +354 -0
  97. package/lib/error-budget.js +294 -0
  98. package/lib/hook-system.js +252 -0
  99. package/lib/identity.js +245 -0
  100. package/lib/loading-engine.js +208 -0
  101. package/lib/marketplace.js +298 -0
  102. package/lib/plugin-system.js +604 -0
  103. package/lib/security-scanner.js +309 -0
  104. package/lib/self-healing.js +434 -0
  105. package/lib/session-manager.js +261 -0
  106. package/lib/skill-sandbox.js +244 -0
  107. package/lib/task-governance.js +523 -0
  108. package/lib/task-model.js +317 -0
  109. package/lib/updater.js +201 -0
  110. package/lib/verify.js +240 -0
  111. package/lib/workflow-engine.js +353 -0
  112. package/lib/workflow-persistence.js +160 -0
  113. package/package.json +7 -3
package/.agent/README.md CHANGED
@@ -24,10 +24,10 @@ This loads your session context and activates the orchestrator.
24
24
  ├── rules.md # Core governance & identity
25
25
  ├── session-state.json # Machine-readable state
26
26
 
27
- ├── agents/ # 15 specialized agents
28
- ├── commands/ # 20 slash commands
29
- ├── skills/ # 14 capability extensions
30
- ├── workflows/ # 8 slash command workflows
27
+ ├── agents/ # 19 specialized agents
28
+ ├── commands/ # 31 slash commands
29
+ ├── skills/ # 31 capability extensions
30
+ ├── workflows/ # 14 slash command workflows
31
31
  ├── hooks/ # Event-driven automation
32
32
  ├── rules/ # Modular governance
33
33
  ├── contexts/ # Mode switching
@@ -1,7 +1,7 @@
1
1
  # Antigravity AI Kit — Agents
2
2
 
3
3
  > **Purpose**: Specialized sub-agents for task delegation
4
- > **Count**: 15 Core Agents
4
+ > **Count**: 19 Core Agents
5
5
 
6
6
  ---
7
7
 
@@ -26,6 +26,8 @@ Agents are specialized personas that handle delegated tasks with focused experti
26
26
  | 🔍 **Code Reviewer** | `code-reviewer.md` | Quality & security review |
27
27
  | 🧪 **TDD Guide** | `tdd-guide.md` | Test-driven development |
28
28
  | 🔧 **Build Error Resolver** | `build-error-resolver.md` | Rapid build fixes |
29
+ | 🖥️ **Backend Specialist** | `backend-specialist.md` | Node.js, NestJS, API design |
30
+ | 🎨 **Frontend Specialist** | `frontend-specialist.md` | React, Next.js, UI architecture |
29
31
 
30
32
  ### Quality & Security Agents
31
33
 
@@ -37,20 +39,22 @@ Agents are specialized personas that handle delegated tasks with focused experti
37
39
 
38
40
  ### Infrastructure Agents
39
41
 
40
- | Agent | File | Purpose |
41
- | :------------------------ | :---------------------- | :---------------------------- |
42
- | 📱 **Mobile Developer** | `mobile-developer.md` | React Native/Expo development |
43
- | 🗄️ **Database Architect** | `database-architect.md` | Schema design, queries |
44
- | 🚀 **DevOps Engineer** | `devops-engineer.md` | CI/CD, deployment |
42
+ | Agent | File | Purpose |
43
+ | :--------------------------- | :------------------------- | :---------------------------- |
44
+ | 📱 **Mobile Developer** | `mobile-developer.md` | React Native/Expo development |
45
+ | 🗄️ **Database Architect** | `database-architect.md` | Schema design, queries |
46
+ | 🚀 **DevOps Engineer** | `devops-engineer.md` | CI/CD, deployment |
47
+ | 🛡️ **Reliability Engineer** | `reliability-engineer.md` | SRE, production readiness |
45
48
 
46
49
  ### Maintenance & Discovery Agents
47
50
 
48
- | Agent | File | Purpose |
49
- | :---------------------- | :-------------------- | :----------------- |
50
- | 🧹 **Refactor Cleaner** | `refactor-cleaner.md` | Dead code cleanup |
51
- | 📚 **Doc Updater** | `doc-updater.md` | Documentation sync |
52
- | 🧠 **Knowledge Agent** | `knowledge-agent.md` | RAG retrieval |
53
- | 🔭 **Explorer Agent** | `explorer-agent.md` | Codebase discovery |
51
+ | Agent | File | Purpose |
52
+ | :------------------------- | :----------------------- | :-------------------------- |
53
+ | 🧹 **Refactor Cleaner** | `refactor-cleaner.md` | Dead code cleanup |
54
+ | 📚 **Doc Updater** | `doc-updater.md` | Documentation sync |
55
+ | 🧠 **Knowledge Agent** | `knowledge-agent.md` | RAG retrieval |
56
+ | 🔭 **Explorer Agent** | `explorer-agent.md` | Codebase discovery |
57
+ | 📊 **Sprint Orchestrator** | `sprint-orchestrator.md` | Sprint planning & velocity |
54
58
 
55
59
  ---
56
60
 
@@ -5,6 +5,7 @@ model: opus
5
5
  authority: design-authority
6
6
  reports-to: alignment-engine
7
7
  integration: 3-role-architecture
8
+ relatedWorkflows: [orchestrate]
8
9
  ---
9
10
 
10
11
  # Antigravity AI Kit — Architect Agent
@@ -1,3 +1,14 @@
1
+ ---
2
+ name: backend-specialist
3
+ description: "Node.js backend architecture, API design, middleware patterns specialist"
4
+ domain: backend
5
+ triggers: [backend, api, server, nodejs, nestjs, express, middleware]
6
+ model: opus
7
+ authority: backend-code
8
+ reports-to: alignment-engine
9
+ relatedWorkflows: [orchestrate]
10
+ ---
11
+
1
12
  # Backend Specialist Agent
2
13
 
3
14
  > **Domain**: Node.js backend architecture, API design, middleware patterns, error handling, logging, service layer patterns
@@ -4,6 +4,7 @@ description: Expert code review specialist ensuring high standards of quality an
4
4
  model: opus
5
5
  authority: approval-gate
6
6
  reports-to: alignment-engine
7
+ relatedWorkflows: [orchestrate]
7
8
  ---
8
9
 
9
10
  # Antigravity AI Kit — Code Reviewer Agent
@@ -1,3 +1,14 @@
1
+ ---
2
+ name: database-architect
3
+ description: "Database design, schema optimization, and query performance specialist"
4
+ domain: database
5
+ triggers: [database, sql, postgresql, schema, migration, query]
6
+ model: opus
7
+ authority: schema-level
8
+ reports-to: alignment-engine
9
+ relatedWorkflows: [orchestrate]
10
+ ---
11
+
1
12
  # Database Architect
2
13
 
3
14
  > **Platform**: Antigravity AI Kit
@@ -1,3 +1,14 @@
1
+ ---
2
+ name: devops-engineer
3
+ description: "CI/CD, deployment, infrastructure, and monitoring specialist"
4
+ domain: devops
5
+ triggers: [deploy, ci, cd, docker, kubernetes, pipeline]
6
+ model: opus
7
+ authority: infrastructure
8
+ reports-to: alignment-engine
9
+ relatedWorkflows: [orchestrate]
10
+ ---
11
+
1
12
  # DevOps Engineer
2
13
 
3
14
  > **Platform**: Antigravity AI Kit
@@ -4,6 +4,7 @@ description: End-to-end testing specialist using Playwright for comprehensive us
4
4
  model: opus
5
5
  authority: test-execution
6
6
  reports-to: alignment-engine
7
+ relatedWorkflows: [orchestrate]
7
8
  ---
8
9
 
9
10
  # Antigravity AI Kit — E2E Runner Agent
@@ -1,3 +1,14 @@
1
+ ---
2
+ name: explorer-agent
3
+ description: "Codebase discovery, architectural analysis, and onboarding specialist"
4
+ domain: discovery
5
+ triggers: [explore, discover, analyze, map, onboard]
6
+ model: opus
7
+ authority: read-only
8
+ reports-to: alignment-engine
9
+ relatedWorkflows: [orchestrate]
10
+ ---
11
+
1
12
  # Explorer Agent
2
13
 
3
14
  > **Platform**: Antigravity AI Kit
@@ -1,3 +1,14 @@
1
+ ---
2
+ name: frontend-specialist
3
+ description: "Frontend architecture, React/Next.js patterns, component design specialist"
4
+ domain: frontend
5
+ triggers: [frontend, component, css, react, nextjs, ui, ux]
6
+ model: opus
7
+ authority: frontend-code
8
+ reports-to: alignment-engine
9
+ relatedWorkflows: [orchestrate]
10
+ ---
11
+
1
12
  # Frontend Specialist Agent
2
13
 
3
14
  > **Domain**: Frontend architecture, React/Next.js patterns, component design, CSS architecture, accessibility, responsive design
@@ -1,3 +1,14 @@
1
+ ---
2
+ name: mobile-developer
3
+ description: "React Native/Expo mobile development specialist"
4
+ domain: mobile
5
+ triggers: [mobile, react native, expo, ios, android]
6
+ model: opus
7
+ authority: mobile-code
8
+ reports-to: alignment-engine
9
+ relatedWorkflows: [orchestrate]
10
+ ---
11
+
1
12
  # Mobile Developer
2
13
 
3
14
  > **Platform**: Antigravity AI Kit
@@ -1,3 +1,14 @@
1
+ ---
2
+ name: performance-optimizer
3
+ description: "Performance profiling, Core Web Vitals, and optimization specialist"
4
+ domain: performance
5
+ triggers: [slow, optimize, speed, bundle, lighthouse, web vitals]
6
+ model: opus
7
+ authority: performance-advisory
8
+ reports-to: alignment-engine
9
+ relatedWorkflows: [orchestrate]
10
+ ---
11
+
1
12
  # Performance Optimizer
2
13
 
3
14
  > **Platform**: Antigravity AI Kit
@@ -4,6 +4,7 @@ description: Expert planning specialist for feature implementation. Use for comp
4
4
  model: opus
5
5
  authority: read-only-analysis
6
6
  reports-to: alignment-engine
7
+ relatedWorkflows: [plan, orchestrate]
7
8
  ---
8
9
 
9
10
  # Antigravity AI Kit — Planner Agent
@@ -4,6 +4,7 @@ description: Dead code cleanup and refactoring specialist. Identifies and remove
4
4
  model: opus
5
5
  authority: cleanup-only
6
6
  reports-to: alignment-engine
7
+ relatedWorkflows: [orchestrate]
7
8
  ---
8
9
 
9
10
  # Antigravity AI Kit — Refactor Cleaner Agent
@@ -1,3 +1,14 @@
1
+ ---
2
+ name: reliability-engineer
3
+ description: "Operational reliability, CI/CD health, and production readiness specialist"
4
+ domain: reliability
5
+ triggers: [reliability, uptime, monitoring, sre, sla, slo, incident]
6
+ model: opus
7
+ authority: reliability-advisory
8
+ reports-to: alignment-engine
9
+ relatedWorkflows: [orchestrate]
10
+ ---
11
+
1
12
  # Reliability Engineer Agent
2
13
 
3
14
  > **Domain**: Operational reliability, CI/CD health, dependency management, production readiness, error budgets, resilience patterns
@@ -4,6 +4,7 @@ description: Security vulnerability analysis and comprehensive security audit sp
4
4
  model: opus
5
5
  authority: security-audit
6
6
  reports-to: alignment-engine
7
+ relatedWorkflows: [orchestrate]
7
8
  ---
8
9
 
9
10
  # Antigravity AI Kit — Security Reviewer Agent
@@ -1,3 +1,13 @@
1
+ ---
2
+ name: sprint-orchestrator
3
+ description: "Sprint planning, velocity tracking, and autonomous task prioritization specialist"
4
+ domain: planning
5
+ triggers: [sprint, velocity, backlog, milestone, retrospective, prioritize]
6
+ model: opus
7
+ authority: sprint-management
8
+ reports-to: alignment-engine
9
+ ---
10
+
1
11
  # Sprint Orchestrator Agent
2
12
 
3
13
  > **Domain**: Sprint planning, velocity tracking, backlog management, retrospective analysis, autonomous task prioritization
@@ -4,6 +4,7 @@ description: Test-Driven Development specialist enforcing write-tests-first meth
4
4
  model: opus
5
5
  authority: tdd-enforcement
6
6
  reports-to: alignment-engine
7
+ relatedWorkflows: [orchestrate]
7
8
  ---
8
9
 
9
10
  # Antigravity AI Kit — TDD Guide Agent
@@ -2,6 +2,7 @@
2
2
  name: code-review
3
3
  description: Perform comprehensive code review on files or directories
4
4
  invokes: code-reviewer
5
+ workflow: review
5
6
  ---
6
7
 
7
8
  # /code-review
@@ -1,5 +1,6 @@
1
1
  ---
2
2
  description: Debug issues systematically
3
+ workflow: debug
3
4
  ---
4
5
 
5
6
  # /debug Command
@@ -1,5 +1,6 @@
1
1
  ---
2
2
  description: Deploy application to target environment
3
+ workflow: deploy
3
4
  ---
4
5
 
5
6
  # /deploy Command
@@ -2,6 +2,7 @@
2
2
  name: plan
3
3
  description: Create a comprehensive implementation plan for a feature or change
4
4
  invokes: planner
5
+ workflow: plan
5
6
  ---
6
7
 
7
8
  # /plan
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  name: status
3
3
  description: Display current session status and context
4
+ workflow: status
4
5
  ---
5
6
 
6
7
  # /status
@@ -2,6 +2,7 @@
2
2
  name: tdd
3
3
  description: Start test-driven development workflow for a component
4
4
  invokes: tdd-guide
5
+ workflow: test
5
6
  ---
6
7
 
7
8
  # /tdd
@@ -0,0 +1,26 @@
1
+ ---
2
+ mode: brainstorm
3
+ description: "Ideas-only exploration mode — Socratic discovery without implementation"
4
+ constraints: [no-code, no-modifications, socratic-only]
5
+ agent-focus: [planner, explorer-agent]
6
+ ---
7
+
8
+ # Brainstorm Mode Context
9
+
10
+ ## Behavioral Rules
11
+
12
+ - Generate ideas and alternatives only — never write code
13
+ - Ask Socratic questions to clarify requirements
14
+ - Present minimum 3 options for every decision point
15
+ - Support each option with evidence or industry precedent
16
+ - Never commit to a single approach without user confirmation
17
+
18
+ ## Loaded Skills
19
+
20
+ - `brainstorming` — Socratic discovery protocol
21
+
22
+ ## Exit Criteria
23
+
24
+ - Requirements are clarified with concrete acceptance criteria
25
+ - At least 3 viable approaches documented with trade-offs
26
+ - User selects preferred approach for planning phase
@@ -0,0 +1,28 @@
1
+ ---
2
+ mode: debug
3
+ description: "Systematic investigation mode — minimal changes, preserve evidence"
4
+ constraints: [evidence-first, minimal-changes, root-cause-required]
5
+ agent-focus: [build-error-resolver, tdd-guide]
6
+ ---
7
+
8
+ # Debug Mode Context
9
+
10
+ ## Behavioral Rules
11
+
12
+ - Identify root cause before applying any fix
13
+ - Preserve all evidence (logs, stack traces, reproduction steps)
14
+ - Make minimal, surgical changes — one fix per iteration
15
+ - Always verify the fix resolves the original issue
16
+ - Add regression tests to prevent recurrence
17
+
18
+ ## Loaded Skills
19
+
20
+ - `debugging-strategies` — Systematic hypothesis testing
21
+ - `testing-patterns` — Regression test creation
22
+
23
+ ## Exit Criteria
24
+
25
+ - Root cause identified and documented
26
+ - Fix applied with minimal code changes
27
+ - Regression test added and passing
28
+ - No new issues introduced (full test suite passes)
@@ -0,0 +1,29 @@
1
+ ---
2
+ mode: implement
3
+ description: "Code-focused execution mode — follow approved plan, build incrementally"
4
+ constraints: [plan-required, incremental-commits, tests-mandatory]
5
+ agent-focus: [architect, tdd-guide, code-reviewer]
6
+ ---
7
+
8
+ # Implement Mode Context
9
+
10
+ ## Behavioral Rules
11
+
12
+ - Follow the approved implementation plan step-by-step
13
+ - Write code that passes existing tests and adds new ones
14
+ - Commit incrementally — one logical change per commit
15
+ - Do not deviate from the plan without explicit user approval
16
+ - Apply project conventions and coding standards strictly
17
+
18
+ ## Loaded Skills
19
+
20
+ - `clean-code` — Code quality principles
21
+ - `testing-patterns` — TDD and test structure
22
+ - `architecture` — System design patterns
23
+
24
+ ## Exit Criteria
25
+
26
+ - All plan steps completed
27
+ - All tests pass (existing + new)
28
+ - Build succeeds without errors
29
+ - Code reviewed for quality standards
@@ -0,0 +1,27 @@
1
+ ---
2
+ mode: review
3
+ description: "Quality-focused critical analysis mode — verify standards compliance"
4
+ constraints: [critical-lens, no-bias, evidence-based]
5
+ agent-focus: [code-reviewer, security-reviewer]
6
+ ---
7
+
8
+ # Review Mode Context
9
+
10
+ ## Behavioral Rules
11
+
12
+ - Apply critical lens — assume nothing is correct until verified
13
+ - Check against all quality gates (lint, types, tests, security)
14
+ - No defense bias — report issues objectively regardless of author
15
+ - Classify findings by severity (CRITICAL / HIGH / MEDIUM / LOW)
16
+ - Block deployment for any CRITICAL or HIGH severity issue
17
+
18
+ ## Loaded Skills
19
+
20
+ - `verification-loop` — Sequential quality gate pipeline
21
+ - `security-practices` — OWASP vulnerability checks
22
+
23
+ ## Exit Criteria
24
+
25
+ - All quality gates pass (lint, type-check, tests, security)
26
+ - All CRITICAL and HIGH issues resolved
27
+ - Review report generated with verdict (APPROVE / BLOCK / WARNING)
@@ -0,0 +1,28 @@
1
+ ---
2
+ mode: ship
3
+ description: "Deployment-focused risk-aware mode — pre-flight checks, monitoring, rollback readiness"
4
+ constraints: [rollback-plan-required, health-check-mandatory, no-friday-deploys]
5
+ agent-focus: [devops-engineer, reliability-engineer]
6
+ ---
7
+
8
+ # Ship Mode Context
9
+
10
+ ## Behavioral Rules
11
+
12
+ - Verify all pre-flight checks pass before any deployment
13
+ - Require a documented rollback plan for every deploy
14
+ - Monitor health checks for minimum 15 minutes post-deploy
15
+ - No deployments on Fridays unless critical hotfix
16
+ - Follow the Production Merge Discipline from global rules
17
+
18
+ ## Loaded Skills
19
+
20
+ - `deployment-procedures` — CI/CD workflows and rollback strategies
21
+
22
+ ## Exit Criteria
23
+
24
+ - All pre-flight checks pass (tests, build, security, env vars)
25
+ - Rollback plan documented and verified
26
+ - Deployment executed successfully
27
+ - Health checks pass for observation period
28
+ - No error spikes in monitoring
@@ -0,0 +1,13 @@
1
+ {
2
+ "developers": [
3
+ {
4
+ "id": "9c1dbf58766b",
5
+ "name": "emredursun",
6
+ "email": "info.emredursun@gmail.com",
7
+ "role": "owner",
8
+ "registeredAt": "2026-03-14T00:18:01.952Z",
9
+ "lastActiveAt": "2026-03-14T00:18:01.952Z"
10
+ }
11
+ ],
12
+ "activeId": "9c1dbf58766b"
13
+ }
@@ -94,5 +94,27 @@
94
94
  "maxSkillsPerSession": 6,
95
95
  "warningThresholdPercent": 80,
96
96
  "description": "Limits prevent context overflow. The kit selects only domain-relevant agents and skills for each task, keeping within the LLM context window."
97
- }
97
+ },
98
+ "workflowBindings": [
99
+ { "workflow": "brainstorm", "loadAgents": [], "loadSkills": ["brainstorming"], "bindingType": "inferred" },
100
+ { "workflow": "quality-gate", "loadAgents": [], "loadSkills": ["brainstorming"], "bindingType": "inferred" },
101
+ { "workflow": "plan", "loadAgents": ["planner"], "loadSkills": ["plan-writing", "brainstorming"], "bindingType": "explicit" },
102
+ { "workflow": "create", "loadAgents": [], "loadSkills": ["app-builder", "clean-code"], "bindingType": "inferred" },
103
+ { "workflow": "enhance", "loadAgents": [], "loadSkills": ["clean-code", "testing-patterns"], "bindingType": "inferred" },
104
+ { "workflow": "preview", "loadAgents": [], "loadSkills": ["shell-conventions"], "bindingType": "inferred" },
105
+ { "workflow": "ui-ux-pro-max", "loadAgents": [], "loadSkills": ["ui-ux-pro-max", "frontend-patterns", "mobile-design"], "bindingType": "inferred" },
106
+ { "workflow": "test", "loadAgents": [], "loadSkills": ["testing-patterns", "webapp-testing"], "bindingType": "inferred" },
107
+ { "workflow": "review", "loadAgents": [], "loadSkills": ["verification-loop"], "bindingType": "inferred" },
108
+ { "workflow": "deploy", "loadAgents": [], "loadSkills": ["deployment-procedures"], "bindingType": "inferred" },
109
+ { "workflow": "debug", "loadAgents": [], "loadSkills": ["debugging-strategies"], "bindingType": "inferred" },
110
+ {
111
+ "workflow": "orchestrate",
112
+ "loadAgents": ["planner", "explorer-agent"],
113
+ "loadSkills": ["parallel-agents", "intelligent-routing"],
114
+ "bindingType": "explicit",
115
+ "dynamicAgentPool": ["architect", "backend-specialist", "frontend-specialist", "mobile-developer", "database-architect", "security-reviewer", "tdd-guide", "e2e-runner", "devops-engineer", "performance-optimizer", "reliability-engineer", "refactor-cleaner", "code-reviewer"]
116
+ },
117
+ { "workflow": "retrospective", "loadAgents": [], "loadSkills": ["verification-loop"], "bindingType": "inferred" },
118
+ { "workflow": "status", "loadAgents": [], "loadSkills": ["verification-loop"], "bindingType": "inferred" }
119
+ ]
98
120
  }
@@ -0,0 +1,29 @@
1
+ {
2
+ "entries": [
3
+ {
4
+ "name": "ag-skill-docker-compose",
5
+ "description": "Docker Compose orchestration skill for multi-container deployments",
6
+ "repository": "https://github.com/antigravity-community/ag-skill-docker-compose",
7
+ "version": "1.0.0",
8
+ "tags": ["docker", "compose", "containers", "deployment", "devops"],
9
+ "author": "antigravity-community"
10
+ },
11
+ {
12
+ "name": "ag-skill-graphql-designer",
13
+ "description": "GraphQL schema design and query generation skill",
14
+ "repository": "https://github.com/antigravity-community/ag-skill-graphql-designer",
15
+ "version": "0.9.0",
16
+ "tags": ["graphql", "api", "schema", "design", "queries"],
17
+ "author": "antigravity-community"
18
+ },
19
+ {
20
+ "name": "ag-skill-accessibility-audit",
21
+ "description": "WCAG compliance auditing and remediation suggestions",
22
+ "repository": "https://github.com/antigravity-community/ag-skill-accessibility-audit",
23
+ "version": "1.1.0",
24
+ "tags": ["accessibility", "wcag", "a11y", "audit", "compliance"],
25
+ "author": "antigravity-community"
26
+ }
27
+ ],
28
+ "lastUpdated": null
29
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "description": "SRE reliability configuration — error budget tracking and operational thresholds",
4
+ "errorBudget": {
5
+ "enabled": true,
6
+ "description": "When error budget is exhausted, reliability work takes priority over feature work. Projects opt-in when monitoring infrastructure exists.",
7
+ "thresholds": {
8
+ "testFailureRatePercent": 5,
9
+ "buildFailureRatePercent": 2,
10
+ "deployRollbackRatePercent": 10
11
+ },
12
+ "resetCadence": "monthly"
13
+ }
14
+ }
@@ -0,0 +1,44 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "description": "Machine-readable SDLC phase-to-workflow mapping with bidirectional traversal",
4
+ "phases": {
5
+ "discover": {
6
+ "description": "Requirement exploration and validation",
7
+ "workflows": ["brainstorm", "quality-gate"],
8
+ "previous": null,
9
+ "next": "plan"
10
+ },
11
+ "plan": {
12
+ "description": "Structured implementation planning",
13
+ "workflows": ["plan"],
14
+ "previous": "discover",
15
+ "next": "build"
16
+ },
17
+ "build": {
18
+ "description": "Feature implementation and scaffolding",
19
+ "workflows": ["create", "enhance", "preview", "ui-ux-pro-max"],
20
+ "previous": "plan",
21
+ "next": "verify"
22
+ },
23
+ "verify": {
24
+ "description": "Testing and quality gate validation",
25
+ "workflows": ["test", "review"],
26
+ "previous": "build",
27
+ "next": "ship"
28
+ },
29
+ "ship": {
30
+ "description": "Production deployment with pre-flight checks",
31
+ "workflows": ["deploy"],
32
+ "previous": "verify",
33
+ "next": "evaluate"
34
+ },
35
+ "evaluate": {
36
+ "description": "Post-sprint retrospective audit",
37
+ "workflows": ["retrospective"],
38
+ "previous": "ship",
39
+ "next": "discover"
40
+ }
41
+ },
42
+ "reactive": ["debug", "orchestrate"],
43
+ "crossCutting": ["status"]
44
+ }
@@ -52,6 +52,14 @@
52
52
  "artifact": null,
53
53
  "startedAt": null,
54
54
  "completedAt": null
55
+ },
56
+ "MAINTAIN": {
57
+ "status": "pending",
58
+ "description": "Post-deploy monitoring and operational handoff",
59
+ "workflow": "status",
60
+ "artifact": null,
61
+ "startedAt": null,
62
+ "completedAt": null
55
63
  }
56
64
  },
57
65
  "transitions": [
@@ -111,9 +119,27 @@
111
119
  },
112
120
  {
113
121
  "from": "DEPLOY",
122
+ "to": "MAINTAIN",
123
+ "trigger": "Deployment health check passes",
124
+ "guard": "Health check verified healthy"
125
+ },
126
+ {
127
+ "from": "DEPLOY",
128
+ "to": "REVIEW",
129
+ "trigger": "Deployment health check fails",
130
+ "guard": "Health check failure detected"
131
+ },
132
+ {
133
+ "from": "IMPLEMENT",
134
+ "to": "PLAN",
135
+ "trigger": "Unexpected complexity discovered",
136
+ "guard": "Implementation reveals plan inadequacy"
137
+ },
138
+ {
139
+ "from": "MAINTAIN",
114
140
  "to": "IDLE",
115
- "trigger": "Deployment complete",
116
- "guard": "Health check passes"
141
+ "trigger": "Monitoring period complete",
142
+ "guard": "No issues detected during observation"
117
143
  }
118
144
  ],
119
145
  "history": []