start-vibing 4.0.2 → 4.1.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/package.json +1 -1
- package/template/.claude/CLAUDE.md +86 -20
- package/template/.claude/agents/sd-audit.md +197 -0
- package/template/.claude/agents/sd-fix-verify-semantic.md +112 -0
- package/template/.claude/agents/sd-fix-verify-technical.md +36 -0
- package/template/.claude/agents/sd-fix.md +194 -0
- package/template/.claude/agents/sd-research.md +61 -0
- package/template/.claude/agents/sd-synthesis.md +74 -0
- package/template/.claude/commands/super-design.md +15 -0
- package/template/.claude/hooks/super-design-session-start.sh +4 -0
- package/template/.claude/settings.json +14 -0
- package/template/.claude/skills/codebase-knowledge/SKILL.md +145 -0
- package/template/.claude/skills/codebase-knowledge/TEMPLATE.md +35 -0
- package/template/.claude/skills/codebase-knowledge/domains/claude-system.md +93 -0
- package/template/.claude/skills/composition-patterns/SKILL.md +89 -0
- package/template/.claude/skills/docs-tracker/SKILL.md +239 -0
- package/template/.claude/skills/mcp-builder/SKILL.md +236 -0
- package/template/.claude/skills/quality-gate/scripts/check-all.sh +83 -0
- package/template/.claude/skills/react-best-practices/SKILL.md +146 -0
- package/template/.claude/skills/security-scan/reference/owasp-top-10.md +257 -0
- package/template/.claude/skills/security-scan/scripts/scan.py +190 -0
- package/template/.claude/skills/super-design/README.md +37 -0
- package/template/.claude/skills/super-design/SKILL.md +105 -0
- package/template/.claude/skills/super-design/hooks/guard-paths.py +35 -0
- package/template/.claude/skills/super-design/hooks/post-edit-lint.py +57 -0
- package/template/.claude/skills/super-design/references/audit-methodology.md +513 -0
- package/template/.claude/skills/super-design/references/change-detection-playbook.md +1432 -0
- package/template/.claude/skills/super-design/references/design-theory.md +706 -0
- package/template/.claude/skills/super-design/references/fix-agent-playbook.md +118 -0
- package/template/.claude/skills/super-design/references/market-research-playbook.md +773 -0
- package/template/.claude/skills/super-design/references/playwright-mcp-reference.md +1057 -0
- package/template/.claude/skills/super-design/references/skills-subagents-reference.md +784 -0
- package/template/.claude/skills/super-design/references/superpowers-and-distribution.md +136 -0
- package/template/.claude/skills/super-design/scripts/detect-changes.sh +61 -0
- package/template/.claude/skills/super-design/scripts/diff-tokens.sh +13 -0
- package/template/.claude/skills/super-design/scripts/discover-routes.sh +45 -0
- package/template/.claude/skills/super-design/scripts/extract-tokens.mjs +41 -0
- package/template/.claude/skills/super-design/scripts/hash-pages.sh +42 -0
- package/template/.claude/skills/super-design/scripts/validate-state.sh +15 -0
- package/template/.claude/skills/super-design/scripts/verify-audit.sh +19 -0
- package/template/.claude/skills/super-design/templates/audit-state.schema.json +57 -0
- package/template/.claude/skills/super-design/templates/findings.schema.json +57 -0
- package/template/.claude/skills/super-design/templates/fix-history.md.tpl +26 -0
- package/template/.claude/skills/super-design/templates/overview.md.tpl +52 -0
- package/template/.claude/skills/test-coverage/reference/playwright-patterns.md +260 -0
- package/template/.claude/skills/test-coverage/scripts/coverage-check.sh +52 -0
- package/template/.claude/skills/typeui-ant/SKILL.md +133 -0
- package/template/.claude/skills/typeui-application/SKILL.md +128 -0
- package/template/.claude/skills/typeui-artistic/SKILL.md +133 -0
- package/template/.claude/skills/typeui-bento/SKILL.md +127 -0
- package/template/.claude/skills/typeui-bold/SKILL.md +127 -0
- package/template/.claude/skills/typeui-clean/SKILL.md +128 -0
- package/template/.claude/skills/typeui-dashboard/SKILL.md +133 -0
- package/template/.claude/skills/typeui-doodle/SKILL.md +142 -0
- package/template/.claude/skills/typeui-dramatic/SKILL.md +127 -0
- package/template/.claude/skills/typeui-enterprise/SKILL.md +132 -0
- package/template/.claude/skills/typeui-neobrutalism/SKILL.md +127 -0
- package/template/.claude/skills/typeui-paper/SKILL.md +127 -0
- package/template/.claude/skills/ui-ux-audit/QUICK-START.md +450 -0
- package/template/.claude/skills/ui-ux-audit/README.md +470 -0
- package/template/.claude/skills/ui-ux-audit/templates/audit-report.md +591 -0
- package/template/.claude/skills/ui-ux-audit/templates/competitor-analysis.md +363 -0
- package/template/.claude/skills/ui-ux-audit/templates/component-spec.md +491 -0
- package/template/.claude/skills/ui-ux-audit/templates/improvement-recommendation.md +450 -0
- package/template/.claude/skills/web-design-guidelines/SKILL.md +39 -0
- package/template/.claude/skills/webapp-testing/SKILL.md +96 -0
- package/template/.claude/skills/workflow-state/workflow-state.json +77 -0
|
@@ -0,0 +1,450 @@
|
|
|
1
|
+
# UI/UX Audit - Quick Start Guide
|
|
2
|
+
|
|
3
|
+
**For:** Research, UI/UX Reviewer, and Implementer Agents
|
|
4
|
+
**Last Updated:** 2025-12-19
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## Directory Structure
|
|
9
|
+
|
|
10
|
+
```
|
|
11
|
+
.claude/skills/ui-ux-audit/
|
|
12
|
+
├── README.md # Complete overview & design system
|
|
13
|
+
├── SKILL.md # Skill workflow & checklists
|
|
14
|
+
├── QUICK-START.md # This file
|
|
15
|
+
├── cache/
|
|
16
|
+
│ ├── component-inventory.md # All 95+ components
|
|
17
|
+
│ └── current-state.md # Current UI/UX analysis
|
|
18
|
+
├── research/ # Competitor research (to be filled)
|
|
19
|
+
├── audits/ # Audit reports (to be filled)
|
|
20
|
+
└── templates/
|
|
21
|
+
├── competitor-analysis.md
|
|
22
|
+
├── component-spec.md
|
|
23
|
+
├── improvement-recommendation.md
|
|
24
|
+
└── audit-report.md
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## For Research Agent
|
|
30
|
+
|
|
31
|
+
### Your Mission
|
|
32
|
+
|
|
33
|
+
Research competitors and document UI/UX patterns.
|
|
34
|
+
|
|
35
|
+
### Steps
|
|
36
|
+
|
|
37
|
+
1. **Read Templates:**
|
|
38
|
+
- Open `templates/competitor-analysis.md`
|
|
39
|
+
- This is your structure
|
|
40
|
+
|
|
41
|
+
2. **Research Focus:**
|
|
42
|
+
- Marketplace listing UX
|
|
43
|
+
- Filter/search patterns
|
|
44
|
+
- Trust indicators
|
|
45
|
+
- Escrow flow UX
|
|
46
|
+
- Mobile navigation
|
|
47
|
+
|
|
48
|
+
3. **Competitors to Analyze:**
|
|
49
|
+
- PlayerAuctions
|
|
50
|
+
- G2G
|
|
51
|
+
- EpicNPC
|
|
52
|
+
- SocialTradia
|
|
53
|
+
- FameSwap
|
|
54
|
+
|
|
55
|
+
**Search queries:**
|
|
56
|
+
- "digital account marketplace UI"
|
|
57
|
+
- "social media account trading platform"
|
|
58
|
+
- "escrow marketplace design"
|
|
59
|
+
- "mobile marketplace navigation"
|
|
60
|
+
|
|
61
|
+
4. **Save Research:**
|
|
62
|
+
- File: `research/[topic]-ux.md`
|
|
63
|
+
- Example: `research/marketplace-listing-ux.md`
|
|
64
|
+
- Use template structure
|
|
65
|
+
- Include screenshots/links
|
|
66
|
+
|
|
67
|
+
5. **Update Index:**
|
|
68
|
+
- Add to README.md "Research Index"
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
72
|
+
## For UI/UX Reviewer Agent
|
|
73
|
+
|
|
74
|
+
### Your Mission
|
|
75
|
+
|
|
76
|
+
Audit existing UI/UX for accessibility, responsiveness, and usability.
|
|
77
|
+
|
|
78
|
+
### Steps
|
|
79
|
+
|
|
80
|
+
1. **Read Templates:**
|
|
81
|
+
- Open `templates/audit-report.md`
|
|
82
|
+
- This is your structure
|
|
83
|
+
|
|
84
|
+
2. **Audit Focus:**
|
|
85
|
+
- WCAG 2.1 compliance
|
|
86
|
+
- Color contrast (4.5:1 minimum)
|
|
87
|
+
- Touch targets (44x44px minimum)
|
|
88
|
+
- Keyboard navigation
|
|
89
|
+
- Screen reader compatibility
|
|
90
|
+
- Responsive design (375px - 1920px)
|
|
91
|
+
|
|
92
|
+
3. **Tools to Use:**
|
|
93
|
+
- Chrome DevTools
|
|
94
|
+
- Lighthouse
|
|
95
|
+
- WAVE (browser extension)
|
|
96
|
+
- axe DevTools
|
|
97
|
+
- Contrast checker
|
|
98
|
+
|
|
99
|
+
4. **Save Audits:**
|
|
100
|
+
- File: `audits/[feature]-audit.md`
|
|
101
|
+
- Example: `audits/marketplace-listing-audit.md`
|
|
102
|
+
- Use template structure
|
|
103
|
+
- Include screenshots
|
|
104
|
+
|
|
105
|
+
5. **Update Index:**
|
|
106
|
+
- Add to README.md "Audit Index"
|
|
107
|
+
|
|
108
|
+
---
|
|
109
|
+
|
|
110
|
+
## For Implementer Agents
|
|
111
|
+
|
|
112
|
+
### Before Implementing UI
|
|
113
|
+
|
|
114
|
+
**ALWAYS:**
|
|
115
|
+
|
|
116
|
+
1. **Check Component Inventory:**
|
|
117
|
+
|
|
118
|
+
```
|
|
119
|
+
Read: cache/component-inventory.md
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
- Does the component already exist?
|
|
123
|
+
- Can you reuse an existing component?
|
|
124
|
+
|
|
125
|
+
2. **Review Design System:**
|
|
126
|
+
|
|
127
|
+
```
|
|
128
|
+
Read: README.md (Design Tokens section)
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
- What colors should I use?
|
|
132
|
+
- What spacing/shadows/animations?
|
|
133
|
+
|
|
134
|
+
3. **Check Current State:**
|
|
135
|
+
|
|
136
|
+
```
|
|
137
|
+
Read: cache/current-state.md
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
- Are there known issues in this area?
|
|
141
|
+
- What patterns should I follow?
|
|
142
|
+
|
|
143
|
+
4. **Review Research:**
|
|
144
|
+
```
|
|
145
|
+
Check: research/ directory
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
- Has this feature been researched?
|
|
149
|
+
- What patterns do competitors use?
|
|
150
|
+
|
|
151
|
+
### When Creating New Components
|
|
152
|
+
|
|
153
|
+
1. **Use Template:**
|
|
154
|
+
|
|
155
|
+
```
|
|
156
|
+
Copy: templates/component-spec.md
|
|
157
|
+
Fill out all sections
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
2. **Follow Patterns:**
|
|
161
|
+
- File naming: `ComponentName.tsx`
|
|
162
|
+
- Props naming: `ComponentNameProps`
|
|
163
|
+
- Use `cn()` for className merging
|
|
164
|
+
|
|
165
|
+
3. **Create Skeleton:**
|
|
166
|
+
- Every component needs a loading skeleton
|
|
167
|
+
- File: `ComponentNameSkeleton.tsx`
|
|
168
|
+
- Match final component dimensions
|
|
169
|
+
|
|
170
|
+
4. **Check Accessibility:**
|
|
171
|
+
- Contrast: 4.5:1 minimum
|
|
172
|
+
- Touch targets: 44x44px
|
|
173
|
+
- Keyboard navigation
|
|
174
|
+
- ARIA labels
|
|
175
|
+
- Screen reader testing
|
|
176
|
+
|
|
177
|
+
5. **Test Responsiveness:**
|
|
178
|
+
- Mobile (375px)
|
|
179
|
+
- Tablet (768px)
|
|
180
|
+
- Desktop (1280px)
|
|
181
|
+
- FullHD (1920px)
|
|
182
|
+
- No horizontal scroll
|
|
183
|
+
|
|
184
|
+
---
|
|
185
|
+
|
|
186
|
+
## Design System Quick Reference
|
|
187
|
+
|
|
188
|
+
### Colors (CSS Variables)
|
|
189
|
+
|
|
190
|
+
```tsx
|
|
191
|
+
// Use Tailwind classes
|
|
192
|
+
bg-primary // Violet
|
|
193
|
+
bg-secondary // Gray
|
|
194
|
+
bg-destructive // Red
|
|
195
|
+
bg-success // Green
|
|
196
|
+
bg-warning // Yellow
|
|
197
|
+
bg-error // Red
|
|
198
|
+
bg-info // Blue
|
|
199
|
+
|
|
200
|
+
// Or HSL variables
|
|
201
|
+
hsl(var(--primary))
|
|
202
|
+
hsl(var(--secondary))
|
|
203
|
+
```
|
|
204
|
+
|
|
205
|
+
### Typography
|
|
206
|
+
|
|
207
|
+
```tsx
|
|
208
|
+
// Font families
|
|
209
|
+
font-sans // Inter (default)
|
|
210
|
+
font-display // Plus Jakarta Sans (headings)
|
|
211
|
+
font-mono // JetBrains Mono (code)
|
|
212
|
+
|
|
213
|
+
// Sizes (Tailwind default)
|
|
214
|
+
text-sm, text-base, text-lg, text-xl, text-2xl...
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
### Spacing
|
|
218
|
+
|
|
219
|
+
```tsx
|
|
220
|
+
// Use Tailwind 4px scale
|
|
221
|
+
p - 1; // 4px
|
|
222
|
+
p - 2; // 8px
|
|
223
|
+
p - 4; // 16px
|
|
224
|
+
p - 6; // 24px
|
|
225
|
+
p - 8; // 32px
|
|
226
|
+
```
|
|
227
|
+
|
|
228
|
+
### Border Radius
|
|
229
|
+
|
|
230
|
+
```tsx
|
|
231
|
+
rounded-lg // 0.75rem (default)
|
|
232
|
+
rounded-xl // 12px
|
|
233
|
+
rounded-2xl // 16px
|
|
234
|
+
```
|
|
235
|
+
|
|
236
|
+
### Shadows
|
|
237
|
+
|
|
238
|
+
```tsx
|
|
239
|
+
shadow - soft; // Subtle
|
|
240
|
+
shadow - medium; // Standard
|
|
241
|
+
shadow - large; // Emphasis
|
|
242
|
+
shadow - glow - primary; // Special
|
|
243
|
+
```
|
|
244
|
+
|
|
245
|
+
### Animations
|
|
246
|
+
|
|
247
|
+
```tsx
|
|
248
|
+
animate-fade-in
|
|
249
|
+
animate-slide-up
|
|
250
|
+
animate-shimmer
|
|
251
|
+
animate-pulse-soft
|
|
252
|
+
```
|
|
253
|
+
|
|
254
|
+
---
|
|
255
|
+
|
|
256
|
+
## Common Patterns
|
|
257
|
+
|
|
258
|
+
### Button
|
|
259
|
+
|
|
260
|
+
```tsx
|
|
261
|
+
import { Button } from '@/components/ui/button';
|
|
262
|
+
|
|
263
|
+
<Button variant="default">Primary</Button>
|
|
264
|
+
<Button variant="secondary">Secondary</Button>
|
|
265
|
+
<Button variant="outline">Outline</Button>
|
|
266
|
+
<Button variant="ghost">Ghost</Button>
|
|
267
|
+
```
|
|
268
|
+
|
|
269
|
+
### Modal
|
|
270
|
+
|
|
271
|
+
```tsx
|
|
272
|
+
import { Dialog, DialogContent, DialogHeader } from '@/components/ui/dialog';
|
|
273
|
+
|
|
274
|
+
<Dialog open={open} onOpenChange={setOpen}>
|
|
275
|
+
<DialogContent>
|
|
276
|
+
<DialogHeader>
|
|
277
|
+
<DialogTitle>Title</DialogTitle>
|
|
278
|
+
</DialogHeader>
|
|
279
|
+
{/* Content */}
|
|
280
|
+
</DialogContent>
|
|
281
|
+
</Dialog>;
|
|
282
|
+
```
|
|
283
|
+
|
|
284
|
+
### Form
|
|
285
|
+
|
|
286
|
+
```tsx
|
|
287
|
+
import { useForm } from 'react-hook-form';
|
|
288
|
+
import { Form, FormField, FormItem, FormLabel } from '@/components/ui/form';
|
|
289
|
+
|
|
290
|
+
const form = useForm();
|
|
291
|
+
|
|
292
|
+
<Form {...form}>
|
|
293
|
+
<FormField
|
|
294
|
+
control={form.control}
|
|
295
|
+
name="field"
|
|
296
|
+
render={({ field }) => (
|
|
297
|
+
<FormItem>
|
|
298
|
+
<FormLabel>Label</FormLabel>
|
|
299
|
+
<Input {...field} />
|
|
300
|
+
</FormItem>
|
|
301
|
+
)}
|
|
302
|
+
/>
|
|
303
|
+
</Form>;
|
|
304
|
+
```
|
|
305
|
+
|
|
306
|
+
### Loading State
|
|
307
|
+
|
|
308
|
+
```tsx
|
|
309
|
+
import { Skeleton } from '@/components/ui/skeleton';
|
|
310
|
+
|
|
311
|
+
{
|
|
312
|
+
loading ? <Skeleton className="h-10 w-full" /> : <div>Content</div>;
|
|
313
|
+
}
|
|
314
|
+
```
|
|
315
|
+
|
|
316
|
+
### Toast
|
|
317
|
+
|
|
318
|
+
```tsx
|
|
319
|
+
import { toast } from 'sonner';
|
|
320
|
+
|
|
321
|
+
toast.success('Success message');
|
|
322
|
+
toast.error('Error message');
|
|
323
|
+
toast.info('Info message');
|
|
324
|
+
```
|
|
325
|
+
|
|
326
|
+
---
|
|
327
|
+
|
|
328
|
+
## Accessibility Checklist
|
|
329
|
+
|
|
330
|
+
**Before Submitting:**
|
|
331
|
+
|
|
332
|
+
- [ ] Text contrast: 4.5:1 minimum (use contrast checker)
|
|
333
|
+
- [ ] Touch targets: 44x44px minimum
|
|
334
|
+
- [ ] Keyboard navigation: Tab through all elements
|
|
335
|
+
- [ ] Focus visible: Clear outline on focused elements
|
|
336
|
+
- [ ] ARIA labels: All interactive elements labeled
|
|
337
|
+
- [ ] Alt text: All images have descriptive alt
|
|
338
|
+
- [ ] Screen reader: Test with NVDA/VoiceOver
|
|
339
|
+
|
|
340
|
+
---
|
|
341
|
+
|
|
342
|
+
## Responsiveness Checklist
|
|
343
|
+
|
|
344
|
+
**Test Viewports:**
|
|
345
|
+
|
|
346
|
+
- [ ] Mobile (375px): Single column, touch-friendly
|
|
347
|
+
- [ ] Tablet (768px): Optimized layout
|
|
348
|
+
- [ ] Desktop (1280px): Full features
|
|
349
|
+
- [ ] FullHD (1920px): No overflow
|
|
350
|
+
|
|
351
|
+
**No Horizontal Scroll:**
|
|
352
|
+
|
|
353
|
+
- [ ] Check all viewports
|
|
354
|
+
- [ ] Use `overflow-hidden` on containers
|
|
355
|
+
- [ ] Use `min-w-0` on flex children
|
|
356
|
+
|
|
357
|
+
---
|
|
358
|
+
|
|
359
|
+
## File Locations
|
|
360
|
+
|
|
361
|
+
### Read Before Implementing
|
|
362
|
+
|
|
363
|
+
| File | What You'll Find |
|
|
364
|
+
| ------------------------------ | --------------------------- |
|
|
365
|
+
| `cache/component-inventory.md` | All 95+ existing components |
|
|
366
|
+
| `cache/current-state.md` | Current UI/UX analysis |
|
|
367
|
+
| `README.md` | Design system tokens |
|
|
368
|
+
| `SKILL.md` | Workflow & checklists |
|
|
369
|
+
|
|
370
|
+
### Write When Done
|
|
371
|
+
|
|
372
|
+
| File | What to Write |
|
|
373
|
+
| ---------------------------- | ------------------------ |
|
|
374
|
+
| `research/[topic]-ux.md` | Competitor research |
|
|
375
|
+
| `audits/[feature]-audit.md` | Audit reports |
|
|
376
|
+
| Component docs (if creating) | Component specifications |
|
|
377
|
+
|
|
378
|
+
---
|
|
379
|
+
|
|
380
|
+
## Getting Help
|
|
381
|
+
|
|
382
|
+
### Questions About...
|
|
383
|
+
|
|
384
|
+
**Design System:**
|
|
385
|
+
|
|
386
|
+
- Read: `README.md` (Design Tokens section)
|
|
387
|
+
- Check: `cache/current-state.md` (Design System section)
|
|
388
|
+
|
|
389
|
+
**Existing Components:**
|
|
390
|
+
|
|
391
|
+
- Read: `cache/component-inventory.md`
|
|
392
|
+
- Check: `components/ui/` directory
|
|
393
|
+
|
|
394
|
+
**Accessibility:**
|
|
395
|
+
|
|
396
|
+
- Read: `SKILL.md` (Accessibility Checklist)
|
|
397
|
+
- Check: `README.md` (Quality Standards section)
|
|
398
|
+
|
|
399
|
+
**Responsiveness:**
|
|
400
|
+
|
|
401
|
+
- Read: `SKILL.md` (Responsiveness Checklist)
|
|
402
|
+
- Check: `cache/current-state.md` (Responsive Strategy)
|
|
403
|
+
|
|
404
|
+
---
|
|
405
|
+
|
|
406
|
+
## Quick Commands
|
|
407
|
+
|
|
408
|
+
### Analyze Components
|
|
409
|
+
|
|
410
|
+
```bash
|
|
411
|
+
# Count components
|
|
412
|
+
ls components/ui/*.tsx | wc -l
|
|
413
|
+
|
|
414
|
+
# Find component
|
|
415
|
+
grep -r "ComponentName" components/
|
|
416
|
+
```
|
|
417
|
+
|
|
418
|
+
### Check Design System
|
|
419
|
+
|
|
420
|
+
```bash
|
|
421
|
+
# View CSS variables
|
|
422
|
+
cat app/globals.css | grep "^[[:space:]]*--"
|
|
423
|
+
|
|
424
|
+
# View Tailwind config
|
|
425
|
+
cat tailwind.config.ts
|
|
426
|
+
```
|
|
427
|
+
|
|
428
|
+
### Verify Structure
|
|
429
|
+
|
|
430
|
+
```bash
|
|
431
|
+
# Check ui-ux-audit structure
|
|
432
|
+
ls -R .claude/skills/ui-ux-audit/
|
|
433
|
+
```
|
|
434
|
+
|
|
435
|
+
---
|
|
436
|
+
|
|
437
|
+
## Status Codes
|
|
438
|
+
|
|
439
|
+
When updating files, use these status markers:
|
|
440
|
+
|
|
441
|
+
- **[NEW]** - Newly added
|
|
442
|
+
- **[UPDATED]** - Modified
|
|
443
|
+
- **[DEPRECATED]** - No longer recommended
|
|
444
|
+
- **[CRITICAL]** - Important rule/requirement
|
|
445
|
+
- **[PENDING]** - Needs attention
|
|
446
|
+
|
|
447
|
+
---
|
|
448
|
+
|
|
449
|
+
**Quick Start Version:** 1.0.0
|
|
450
|
+
**Last Updated:** 2025-12-19
|