antigravity-ai-kit 2.1.0 → 3.0.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.
Files changed (114) 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/help.md +252 -31
  23. package/.agent/commands/plan.md +1 -0
  24. package/.agent/commands/status.md +1 -0
  25. package/.agent/commands/tdd.md +1 -0
  26. package/.agent/contexts/brainstorm.md +26 -0
  27. package/.agent/contexts/debug.md +28 -0
  28. package/.agent/contexts/implement.md +29 -0
  29. package/.agent/contexts/review.md +27 -0
  30. package/.agent/contexts/ship.md +28 -0
  31. package/.agent/engine/identity.json +13 -0
  32. package/.agent/engine/loading-rules.json +23 -1
  33. package/.agent/engine/marketplace-index.json +29 -0
  34. package/.agent/engine/reliability-config.json +14 -0
  35. package/.agent/engine/sdlc-map.json +44 -0
  36. package/.agent/engine/workflow-state.json +28 -2
  37. package/.agent/hooks/hooks.json +27 -25
  38. package/.agent/manifest.json +12 -4
  39. package/.agent/rules.md +2 -1
  40. package/.agent/skills/README.md +10 -5
  41. package/.agent/skills/i18n-localization/SKILL.md +191 -0
  42. package/.agent/skills/mcp-integration/SKILL.md +224 -0
  43. package/.agent/skills/parallel-agents/SKILL.md +1 -1
  44. package/.agent/skills/shell-conventions/SKILL.md +92 -0
  45. package/.agent/skills/ui-ux-pro-max/SKILL.md +557 -0
  46. package/.agent/skills/ui-ux-pro-max/data/charts.csv +26 -0
  47. package/.agent/skills/ui-ux-pro-max/data/colors.csv +97 -0
  48. package/.agent/skills/ui-ux-pro-max/data/icons.csv +101 -0
  49. package/.agent/skills/ui-ux-pro-max/data/landing.csv +31 -0
  50. package/.agent/skills/ui-ux-pro-max/data/products.csv +97 -0
  51. package/.agent/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
  52. package/.agent/skills/ui-ux-pro-max/data/stacks/astro.csv +54 -0
  53. package/.agent/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  54. package/.agent/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  55. package/.agent/skills/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
  56. package/.agent/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  57. package/.agent/skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
  58. package/.agent/skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  59. package/.agent/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  60. package/.agent/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
  61. package/.agent/skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  62. package/.agent/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  63. package/.agent/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  64. package/.agent/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  65. package/.agent/skills/ui-ux-pro-max/data/styles.csv +68 -0
  66. package/.agent/skills/ui-ux-pro-max/data/typography.csv +58 -0
  67. package/.agent/skills/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
  68. package/.agent/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  69. package/.agent/skills/ui-ux-pro-max/data/web-interface.csv +31 -0
  70. package/.agent/skills/ui-ux-pro-max/scripts/core.py +253 -0
  71. package/.agent/skills/ui-ux-pro-max/scripts/design_system.py +1067 -0
  72. package/.agent/skills/ui-ux-pro-max/scripts/search.py +114 -0
  73. package/.agent/templates/adr-template.md +32 -0
  74. package/.agent/templates/bug-report.md +37 -0
  75. package/.agent/templates/feature-request.md +32 -0
  76. package/.agent/workflows/README.md +92 -78
  77. package/.agent/workflows/brainstorm.md +154 -100
  78. package/.agent/workflows/create.md +142 -75
  79. package/.agent/workflows/debug.md +157 -98
  80. package/.agent/workflows/deploy.md +195 -144
  81. package/.agent/workflows/enhance.md +157 -65
  82. package/.agent/workflows/orchestrate.md +171 -114
  83. package/.agent/workflows/plan.md +147 -72
  84. package/.agent/workflows/preview.md +140 -83
  85. package/.agent/workflows/quality-gate.md +196 -0
  86. package/.agent/workflows/retrospective.md +197 -0
  87. package/.agent/workflows/review.md +188 -0
  88. package/.agent/workflows/status.md +142 -91
  89. package/.agent/workflows/test.md +168 -95
  90. package/.agent/workflows/ui-ux-pro-max.md +181 -127
  91. package/README.md +215 -78
  92. package/bin/ag-kit.js +344 -10
  93. package/lib/agent-registry.js +214 -0
  94. package/lib/agent-reputation.js +351 -0
  95. package/lib/cli-commands.js +235 -0
  96. package/lib/conflict-detector.js +245 -0
  97. package/lib/engineering-manager.js +354 -0
  98. package/lib/error-budget.js +294 -0
  99. package/lib/hook-system.js +252 -0
  100. package/lib/identity.js +245 -0
  101. package/lib/loading-engine.js +208 -0
  102. package/lib/marketplace.js +298 -0
  103. package/lib/plugin-system.js +604 -0
  104. package/lib/security-scanner.js +309 -0
  105. package/lib/self-healing.js +434 -0
  106. package/lib/session-manager.js +261 -0
  107. package/lib/skill-sandbox.js +244 -0
  108. package/lib/task-governance.js +523 -0
  109. package/lib/task-model.js +317 -0
  110. package/lib/updater.js +201 -0
  111. package/lib/verify.js +240 -0
  112. package/lib/workflow-engine.js +353 -0
  113. package/lib/workflow-persistence.js +160 -0
  114. package/package.json +7 -3
@@ -1,127 +1,181 @@
1
- ---
2
- description: Premium UI/UX design and implementation workflow
3
- ---
4
-
5
- # /ui-ux-pro-max Workflow
6
-
7
- > **Purpose**: Create stunning, professional-grade user interfaces
8
-
9
- ---
10
-
11
- ## Design Philosophy
12
-
13
- ### Core Principles
14
-
15
- 1. **Visual Excellence** Premium look and feel
16
- 2. **User-Centric** — Intuitive navigation
17
- 3. **Accessibility** — WCAG 2.1 AA compliant
18
- 4. **Performance** Smooth 60fps animations
19
-
20
- ---
21
-
22
- ## Workflow Steps
23
-
24
- ### 1. Design System Check
25
-
26
- - Existing color palette?
27
- - Typography scale?
28
- - Spacing system?
29
- - Component library?
30
-
31
- ### 2. Layout Structure
32
-
33
- ```
34
- ┌─────────────────────────────────┐
35
- │ Header/Nav │
36
- ├─────────┬───────────────────────┤
37
- │ │ │
38
- Sidebar │ Main Content │
39
- │ │ │
40
- ├─────────┴───────────────────────┤
41
- │ Footer │
42
- └─────────────────────────────────┘
43
- ```
44
-
45
- ### 3. Visual Enhancements
46
-
47
- #### Colors
48
-
49
- ```css
50
- /* Modern color palette */
51
- --primary: hsl(230, 70%, 55%);
52
- --surface: hsl(230, 20%, 10%);
53
- --glass: rgba(255, 255, 255, 0.05);
54
- ```
55
-
56
- #### Typography
57
-
58
- ```css
59
- /* Professional type scale */
60
- --font-display: "Inter", system-ui, sans-serif;
61
- --text-xs: 0.75rem;
62
- --text-sm: 0.875rem;
63
- --text-base: 1rem;
64
- --text-lg: 1.125rem;
65
- --text-xl: 1.25rem;
66
- ```
67
-
68
- #### Effects
69
-
70
- ```css
71
- /* Modern effects */
72
- backdrop-filter: blur(12px);
73
- box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
74
- border-radius: 12px;
75
- ```
76
-
77
- ### 4. Micro-Interactions
78
-
79
- ```css
80
- /* Smooth transitions */
81
- transition: all 0.2s ease-out;
82
-
83
- /* Hover states */
84
- .button:hover {
85
- transform: translateY(-2px);
86
- box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
87
- }
88
- ```
89
-
90
- ### 5. Responsive Design
91
-
92
- ```css
93
- /* Mobile-first breakpoints */
94
- @media (min-width: 640px) {
95
- /* sm */
96
- }
97
- @media (min-width: 768px) {
98
- /* md */
99
- }
100
- @media (min-width: 1024px) {
101
- /* lg */
102
- }
103
- @media (min-width: 1280px) {
104
- /* xl */
105
- }
106
- ```
107
-
108
- ---
109
-
110
- ## Checklist
111
-
112
- - [ ] Design system verified
113
- - [ ] Layout structured
114
- - [ ] Colors and typography applied
115
- - [ ] Micro-interactions added
116
- - [ ] Responsive design tested
117
- - [ ] Accessibility verified
118
-
119
- ---
120
-
121
- ## Examples
122
-
123
- ```
124
- /ui-ux-pro-max dashboard layout
125
- /ui-ux-pro-max landing page hero
126
- /ui-ux-pro-max settings page redesign
127
- ```
1
+ ---
2
+ description: Premium UI/UX design and implementation workflow.
3
+ version: 2.1.0
4
+ sdlc-phase: build
5
+ skills: [ui-ux-pro-max, frontend-patterns, mobile-design]
6
+ commit-types: [feat, refactor]
7
+ ---
8
+
9
+ # /ui-ux-pro-max — Premium UI/UX Design & Implementation
10
+
11
+ > **Trigger**: `/ui-ux-pro-max [description]`
12
+ > **Lifecycle**: Build — UI/design implementation
13
+
14
+ > [!IMPORTANT]
15
+ > This workflow demands visual excellence. Generic, template-like, or "AI-slop" designs are unacceptable. Every interface must feel premium, intentional, and alive.
16
+
17
+ > [!TIP]
18
+ > This workflow leverages the **ui-ux-pro-max** skill (50+ styles, 21 palettes, 50 font pairings, 20 chart types). Read `.agent/skills/ui-ux-pro-max/SKILL.md` for the full design system catalog.
19
+
20
+ ---
21
+
22
+ ## Critical Rules
23
+
24
+ 1. **Anti-AI-slop** no generic gradients, no default border-radius everywhere, no cookie-cutter layouts
25
+ 2. **Premium aesthetics** — curated color palettes (HSL-tuned), modern typography (Google Fonts), smooth micro-animations
26
+ 3. **WCAG 2.1 AA compliance** — all designs must meet accessibility standards (contrast ratios, keyboard navigation, screen reader support)
27
+ 4. **Performance-first** smooth 60fps animations, optimized images, minimal layout shifts
28
+ 5. **Mobile-first responsive** — design for mobile first, then enhance for larger screens
29
+ 6. **Design system coherence** — use existing design tokens when available; create consistent ones when not
30
+
31
+ ---
32
+
33
+ ## Steps
34
+
35
+ // turbo
36
+ 1. **Design System Audit**
37
+ - Check for existing color palette, typography scale, spacing system
38
+ - Identify component library in use (if any)
39
+ - Note existing design tokens and CSS variables
40
+
41
+ // turbo
42
+ 2. **Requirements Analysis**
43
+ - What is being designed? (page, component, layout)
44
+ - What is the target mood/aesthetic? (minimal, bold, glass, etc.)
45
+ - Reference existing brand guidelines or style preferences
46
+
47
+ 3. **Design Implementation**
48
+ - Build the layout structure (semantic HTML)
49
+ - Apply color palette and typography
50
+ - Add spacing, borders, and visual hierarchy
51
+ - Implement responsive breakpoints (mobile-first)
52
+
53
+ 4. **Micro-Interactions & Polish**
54
+ - Add hover states, focus indicators, and transitions
55
+ - Implement loading states and skeleton screens
56
+ - Add subtle animations for engagement (easing, transforms)
57
+ - Verify 60fps performance on animations
58
+
59
+ 5. **Accessibility Verification**
60
+ - Color contrast ratios (≥4.5:1 for text, ≥3:1 for large text)
61
+ - Keyboard navigation (tab order, focus management)
62
+ - Screen reader compatibility (ARIA labels, semantic HTML)
63
+ - Motion reduction support (`prefers-reduced-motion`)
64
+
65
+ ---
66
+
67
+ ## Design Reference
68
+
69
+ ### Color Approach
70
+
71
+ ```css
72
+ /* Curated palette — NOT default browser colors */
73
+ --primary: hsl(230, 70%, 55%);
74
+ --primary-light: hsl(230, 70%, 70%);
75
+ --surface: hsl(230, 20%, 10%);
76
+ --surface-elevated: hsl(230, 20%, 14%);
77
+ --glass: rgba(255, 255, 255, 0.05);
78
+ ```
79
+
80
+ ### Typography
81
+
82
+ ```css
83
+ /* Professional type scale — NOT system defaults */
84
+ --font-display: "Inter", "Outfit", system-ui, sans-serif;
85
+ --font-mono: "JetBrains Mono", "Fira Code", monospace;
86
+ ```
87
+
88
+ ### Effects
89
+
90
+ ```css
91
+ /* Modern depth and glass */
92
+ backdrop-filter: blur(12px);
93
+ box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
94
+ border: 1px solid rgba(255, 255, 255, 0.06);
95
+ ```
96
+
97
+ ### Responsive Breakpoints
98
+
99
+ ```css
100
+ /* Mobile-first progression */
101
+ @media (min-width: 640px) { /* sm */ }
102
+ @media (min-width: 768px) { /* md */ }
103
+ @media (min-width: 1024px) { /* lg */ }
104
+ @media (min-width: 1280px) { /* xl */ }
105
+ ```
106
+
107
+ ---
108
+
109
+ ## Output Template
110
+
111
+ ```markdown
112
+ ## 🎨 UI/UX: [Component/Page Name]
113
+
114
+ ### Design System
115
+
116
+ - **Palette**: [palette name or custom HSL values]
117
+ - **Typography**: [font pairing]
118
+ - **Style**: [minimal | glass | bold | dark | etc.]
119
+
120
+ ### Implementation
121
+
122
+ | File | Purpose |
123
+ | :--- | :------ |
124
+ | `path/to/component` | [description] |
125
+ | `path/to/styles` | [description] |
126
+
127
+ ### Accessibility
128
+
129
+ - ✅ Contrast ratios: [pass/fail]
130
+ - ✅ Keyboard navigation: [pass/fail]
131
+ - ✅ Screen reader: [pass/fail]
132
+ - ✅ Reduced motion: [supported]
133
+
134
+ ### Responsive
135
+
136
+ - ✅ Mobile (320px+)
137
+ - ✅ Tablet (768px+)
138
+ - ✅ Desktop (1024px+)
139
+
140
+ After design: proceed to `/preview` for visual verification or `/test` for component testing.
141
+ ```
142
+
143
+ ---
144
+
145
+ ## Governance
146
+
147
+ **PROHIBITED:**
148
+ - Generic, template-like designs ("AI-slop")
149
+ - Using default browser colors (plain red, blue, green)
150
+ - Using default system fonts without intentional typography
151
+ - Ignoring accessibility requirements
152
+ - Hardcoding pixel values without responsive design
153
+ - Skipping failed steps · proceeding without resolution
154
+
155
+ **REQUIRED:**
156
+ - Curated, harmonious color palettes
157
+ - Modern typography from established font sources
158
+ - WCAG 2.1 AA compliance verification
159
+ - Mobile-first responsive implementation
160
+ - Micro-animations and hover states for engagement
161
+
162
+ ---
163
+
164
+ ## Completion Criteria
165
+
166
+ - [ ] Design system is audited (existing tokens identified or created)
167
+ - [ ] Layout is implemented with semantic HTML
168
+ - [ ] Colors, typography, and spacing are premium-quality
169
+ - [ ] Micro-interactions and transitions are smooth (60fps)
170
+ - [ ] Accessibility passes WCAG 2.1 AA
171
+ - [ ] Responsive design works across breakpoints
172
+ - [ ] After design: proceed to `/preview` for visual check or `/test` for component tests
173
+
174
+ ---
175
+
176
+ ## Related Resources
177
+
178
+ - **Previous**: `/plan` (design requirements defined)
179
+ - **Next**: `/preview` (visual verification) · `/test` (component testing)
180
+ - **Skill**: `.agent/skills/ui-ux-pro-max/SKILL.md` (50+ styles, 21 palettes, 50 font pairings)
181
+ - **Related Skills**: `.agent/skills/frontend-patterns/SKILL.md` · `.agent/skills/mobile-design/SKILL.md`