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.
- package/.agent/README.md +4 -4
- package/.agent/agents/README.md +16 -12
- package/.agent/agents/architect.md +1 -0
- package/.agent/agents/backend-specialist.md +11 -0
- package/.agent/agents/code-reviewer.md +1 -0
- package/.agent/agents/database-architect.md +11 -0
- package/.agent/agents/devops-engineer.md +11 -0
- package/.agent/agents/e2e-runner.md +1 -0
- package/.agent/agents/explorer-agent.md +11 -0
- package/.agent/agents/frontend-specialist.md +11 -0
- package/.agent/agents/mobile-developer.md +11 -0
- package/.agent/agents/performance-optimizer.md +11 -0
- package/.agent/agents/planner.md +1 -0
- package/.agent/agents/refactor-cleaner.md +1 -0
- package/.agent/agents/reliability-engineer.md +11 -0
- package/.agent/agents/security-reviewer.md +1 -0
- package/.agent/agents/sprint-orchestrator.md +10 -0
- package/.agent/agents/tdd-guide.md +1 -0
- package/.agent/commands/code-review.md +1 -0
- package/.agent/commands/debug.md +1 -0
- package/.agent/commands/deploy.md +1 -0
- package/.agent/commands/help.md +252 -31
- package/.agent/commands/plan.md +1 -0
- package/.agent/commands/status.md +1 -0
- package/.agent/commands/tdd.md +1 -0
- package/.agent/contexts/brainstorm.md +26 -0
- package/.agent/contexts/debug.md +28 -0
- package/.agent/contexts/implement.md +29 -0
- package/.agent/contexts/review.md +27 -0
- package/.agent/contexts/ship.md +28 -0
- package/.agent/engine/identity.json +13 -0
- package/.agent/engine/loading-rules.json +23 -1
- package/.agent/engine/marketplace-index.json +29 -0
- package/.agent/engine/reliability-config.json +14 -0
- package/.agent/engine/sdlc-map.json +44 -0
- package/.agent/engine/workflow-state.json +28 -2
- package/.agent/hooks/hooks.json +27 -25
- package/.agent/manifest.json +12 -4
- package/.agent/rules.md +2 -1
- package/.agent/skills/README.md +10 -5
- package/.agent/skills/i18n-localization/SKILL.md +191 -0
- package/.agent/skills/mcp-integration/SKILL.md +224 -0
- package/.agent/skills/parallel-agents/SKILL.md +1 -1
- package/.agent/skills/shell-conventions/SKILL.md +92 -0
- package/.agent/skills/ui-ux-pro-max/SKILL.md +557 -0
- package/.agent/skills/ui-ux-pro-max/data/charts.csv +26 -0
- package/.agent/skills/ui-ux-pro-max/data/colors.csv +97 -0
- package/.agent/skills/ui-ux-pro-max/data/icons.csv +101 -0
- package/.agent/skills/ui-ux-pro-max/data/landing.csv +31 -0
- package/.agent/skills/ui-ux-pro-max/data/products.csv +97 -0
- package/.agent/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
- package/.agent/skills/ui-ux-pro-max/data/stacks/astro.csv +54 -0
- package/.agent/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
- package/.agent/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
- package/.agent/skills/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
- package/.agent/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
- package/.agent/skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
- package/.agent/skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
- package/.agent/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
- package/.agent/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
- package/.agent/skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
- package/.agent/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
- package/.agent/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
- package/.agent/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
- package/.agent/skills/ui-ux-pro-max/data/styles.csv +68 -0
- package/.agent/skills/ui-ux-pro-max/data/typography.csv +58 -0
- package/.agent/skills/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
- package/.agent/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
- package/.agent/skills/ui-ux-pro-max/data/web-interface.csv +31 -0
- package/.agent/skills/ui-ux-pro-max/scripts/core.py +253 -0
- package/.agent/skills/ui-ux-pro-max/scripts/design_system.py +1067 -0
- package/.agent/skills/ui-ux-pro-max/scripts/search.py +114 -0
- package/.agent/templates/adr-template.md +32 -0
- package/.agent/templates/bug-report.md +37 -0
- package/.agent/templates/feature-request.md +32 -0
- package/.agent/workflows/README.md +92 -78
- package/.agent/workflows/brainstorm.md +154 -100
- package/.agent/workflows/create.md +142 -75
- package/.agent/workflows/debug.md +157 -98
- package/.agent/workflows/deploy.md +195 -144
- package/.agent/workflows/enhance.md +157 -65
- package/.agent/workflows/orchestrate.md +171 -114
- package/.agent/workflows/plan.md +147 -72
- package/.agent/workflows/preview.md +140 -83
- package/.agent/workflows/quality-gate.md +196 -0
- package/.agent/workflows/retrospective.md +197 -0
- package/.agent/workflows/review.md +188 -0
- package/.agent/workflows/status.md +142 -91
- package/.agent/workflows/test.md +168 -95
- package/.agent/workflows/ui-ux-pro-max.md +181 -127
- package/README.md +215 -78
- package/bin/ag-kit.js +344 -10
- package/lib/agent-registry.js +214 -0
- package/lib/agent-reputation.js +351 -0
- package/lib/cli-commands.js +235 -0
- package/lib/conflict-detector.js +245 -0
- package/lib/engineering-manager.js +354 -0
- package/lib/error-budget.js +294 -0
- package/lib/hook-system.js +252 -0
- package/lib/identity.js +245 -0
- package/lib/loading-engine.js +208 -0
- package/lib/marketplace.js +298 -0
- package/lib/plugin-system.js +604 -0
- package/lib/security-scanner.js +309 -0
- package/lib/self-healing.js +434 -0
- package/lib/session-manager.js +261 -0
- package/lib/skill-sandbox.js +244 -0
- package/lib/task-governance.js +523 -0
- package/lib/task-model.js +317 -0
- package/lib/updater.js +201 -0
- package/lib/verify.js +240 -0
- package/lib/workflow-engine.js +353 -0
- package/lib/workflow-persistence.js +160 -0
- package/package.json +7 -3
|
@@ -1,127 +1,181 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: Premium UI/UX design and implementation workflow
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
---
|
|
21
|
-
|
|
22
|
-
##
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
-
|
|
28
|
-
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
/*
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
/*
|
|
102
|
-
}
|
|
103
|
-
@media (min-width:
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
- [
|
|
117
|
-
- [ ]
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
/
|
|
125
|
-
/
|
|
126
|
-
|
|
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`
|