omnidesign 1.0.1 → 1.0.2

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 (3) hide show
  1. package/README.md +121 -488
  2. package/bin/cli.js +352 -151
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,576 +1,209 @@
1
1
  # 🎨 OmniDesign
2
2
 
3
3
  <p align="center">
4
- <img src="logo.jpg" alt="OmniDesign Logo" width="180">
4
+ <img src="logo.jpg" alt="OmniDesign Logo" width="160">
5
5
  </p>
6
6
 
7
7
  <p align="center">
8
- <strong>The Universal Design System for AI Coding Assistants</strong>
8
+ <strong>Universal Design Skills System for AI Coding Assistants</strong>
9
9
  </p>
10
10
 
11
11
  <p align="center">
12
- <a href="https://www.npmjs.com/package/omnidesign"><img src="https://img.shields.io/npm/v/omnidesign?style=flat-square&color=blue" alt="npm version"></a>
13
- <a href="https://www.npmjs.com/package/omnidesign"><img src="https://img.shields.io/npm/dm/omnidesign?style=flat-square&color=green" alt="npm downloads"></a>
14
- <a href="LICENSE"><img src="https://img.shields.io/npm/l/omnidesign?style=flat-square" alt="License"></a>
15
- <a href="https://www.typescriptlang.org/"><img src="https://img.shields.io/badge/TypeScript-5.0+-blue?style=flat-square&logo=typescript" alt="TypeScript"></a>
16
- <a href="https://bun.sh/"><img src="https://img.shields.io/badge/Bun-1.0+-fbbf24?style=flat-square&logo=bun&logoColor=black" alt="Bun"></a>
12
+ One package. 10 IDEs. 25 themes. 100+ design tokens.
17
13
  </p>
18
14
 
19
15
  <p align="center">
20
- <a href="#quick-start"><strong>Quick Start</strong></a>
21
- <a href="#supported-ides"><strong>Supported IDEs</strong></a>
22
- <a href="#themes"><strong>25 Themes</strong></a>
23
- <a href="#components"><strong>AI Components</strong></a>
16
+ <a href="https://www.npmjs.com/package/omnidesign"><img src="https://img.shields.io/npm/v/omnidesign?style=flat-square&color=blue" alt="npm"></a>
17
+ <a href="https://bun.sh"><img src="https://img.shields.io/badge/bun-runtime-fbf0df?logo=bun" alt="Bun"></a>
18
+ <a href="LICENSE"><img src="https://img.shields.io/npm/l/omnidesign?style=flat-square" alt="license"></a>
24
19
  </p>
25
20
 
26
21
  ---
27
22
 
28
- ## What is OmniDesign?
23
+ ## Quick Start
29
24
 
30
- **OmniDesign** is a comprehensive design system that works across **all major AI coding assistants**. One package, universal compatibility.
31
-
32
- ### 🎯 One Command Install
33
-
34
- ```bash
35
- npx omnidesign
36
- ```
37
-
38
- That's it! OmniDesign auto-detects your IDE and installs the appropriate skill.
39
-
40
- ---
41
-
42
- ## 🚀 Quick Start
43
-
44
- ### Option 1: Auto-Install (Recommended)
45
-
46
- ```bash
47
- # In your project directory
48
- npx omnidesign
49
-
50
- # Or install globally
51
- npx omnidesign --global
52
- ```
53
-
54
- ### Option 2: Manual Install
55
-
56
- ```bash
57
- # Install for specific IDE
58
- npx omnidesign install --ide claude
59
- npx omnidesign install --ide cursor
60
- npx omnidesign install --ide opencode
61
- npx omnidesign install --ide vscode
62
- npx omnidesign install --ide aider
63
- npx omnidesign install --ide continue
64
- npx omnidesign install --ide zed
65
- npx omnidesign install --ide amp
66
- npx omnidesign install --ide kilo
67
- npx omnidesign install --ide antigravity
68
- ```
69
-
70
- ### Option 3: NPM Install
71
-
72
- ```bash
73
- # Install as dependency
74
- npm install omnidesign
75
-
76
- # Or use without installing
77
- npx omnidesign@latest
78
- ```
79
-
80
- ---
81
-
82
- ## 💻 Supported IDEs
83
-
84
- | IDE | Status | Install Command |
85
- |-----|--------|-----------------|
86
- | **Claude Code** | ✅ Full Support | `npx omnidesign` |
87
- | **Cursor** | ✅ Full Support | `npx omnidesign` |
88
- | **OpenCode** | ✅ Full Support | `npx omnidesign` |
89
- | **VS Code** | ✅ Full Support | `npx omnidesign` |
90
- | **Aider** | ✅ Full Support | `npx omnidesign` |
91
- | **Continue.dev** | ✅ Full Support | `npx omnidesign` |
92
- | **Zed** | ✅ Full Support | `npx omnidesign` |
93
- | **Amp Code** | ✅ Full Support | `npx omnidesign` |
94
- | **Kilo Code** | ✅ Full Support | `npx omnidesign` |
95
- | **Antigravity** | ✅ Full Support | `npx omnidesign` |
96
- | **Claude Desktop** | ✅ Via MCP | Manual config |
97
- | **GitHub Copilot** | ⚠️ Partial | VS Code extension |
98
- | **JetBrains** | ⚠️ Partial | Plugin available |
99
-
100
- ### How It Works
101
-
102
- OmniDesign detects your IDE by looking for:
103
- - `.claude/` directory → **Claude Code**
104
- - `.cursor/` directory → **Cursor**
105
- - `.opencode/` directory → **OpenCode**
106
- - `.vscode/` directory → **VS Code**
107
- - `.zed/` directory → **Zed**
108
- - `.amp/` directory → **Amp Code**
109
- - `.kilo/` directory → **Kilo Code**
110
- - `.antigravity/` directory → **Antigravity**
111
- - `.aider.conf.yml` → **Aider**
112
- - `.continue/` directory → **Continue.dev**
113
-
114
- ---
115
-
116
- ## 🎨 25 Beautiful Themes
117
-
118
- ### Professional
119
- <div align="center">
120
-
121
- | Theme | Vibe | Preview |
122
- |-------|------|---------|
123
- | `corporate` | Enterprise blue | <span style="color:#0052CC">●</span> |
124
- | `navy` | Deep navy + gold | <span style="color:#1e3a5f">●</span> |
125
- | `slate` | Modern gray + teal | <span style="color:#475569">●</span> |
126
- | `forest` | Sustainability green | <span style="color:#166534">●</span> |
127
- | `ruby` | Luxury burgundy | <span style="color:#9f1239">●</span> |
128
- | `graphite` | Minimalist mono | <span style="color:#374151">●</span> |
129
-
130
- </div>
131
-
132
- ### Creative
133
- <div align="center">
134
-
135
- | Theme | Vibe | Preview |
136
- |-------|------|---------|
137
- | `sunset` | Warm gradients | <span style="color:#f97316">●</span> |
138
- | `ocean` | Deep sea blue | <span style="color:#0ea5e9">●</span> |
139
- | `berry` | Raspberry pink | <span style="color:#db2777">●</span> |
140
- | `mint` | Fresh pastel | <span style="color:#22c55e">●</span> |
141
- | `coral` | Friendly peach | <span style="color:#fb7185">●</span> |
142
- | `lavender` | Soft purple | <span style="color:#a855f7">●</span> |
143
-
144
- </div>
145
-
146
- ### Dark Mode
147
- <div align="center">
148
-
149
- | Theme | Vibe | Preview |
150
- |-------|------|---------|
151
- | `midnight` | True black | <span style="color:#0f172a">●</span> |
152
- | `noir` | High contrast | <span style="color:#000000">●</span> |
153
- | `cyberpunk` | Neon synthwave | <span style="color:#d946ef">●</span> |
154
- | `obsidian` | Dark gray | <span style="color:#1f2937">●</span> |
155
- | `deep-space` | Cosmic void | <span style="color:#2e1065">●</span> |
156
- | `brutalist` | Stark contrast | <span style="color:#171717">●</span> |
157
-
158
- </div>
159
-
160
- ### Light Mode
161
- <div align="center">
162
-
163
- | Theme | Vibe | Preview |
164
- |-------|------|---------|
165
- | `daylight` | Bright blue | <span style="color:#3b82f6">●</span> |
166
- | `paper` | Warm off-white | <span style="color:#faf7f5">●</span> |
167
- | `cream` | Soft cream | <span style="color:#fef3c7">●</span> |
168
- | `snow` | Pure white | <span style="color:#ffffff">●</span> |
169
- | `spring` | Mint + pink | <span style="color:#86efac">●</span> |
170
- | `solar` | Yellow warmth | <span style="color:#facc15">●</span> |
171
-
172
- </div>
173
-
174
- ### Using Themes
175
-
176
- ```css
177
- /* Apply theme */
178
- [data-theme="cyberpunk"] {
179
- /* All tokens update automatically */
180
- }
181
- ```
182
-
183
- ```typescript
184
- // Switch themes dynamically
185
- document.documentElement.setAttribute('data-theme', 'sunset');
186
- ```
187
-
188
- ---
189
-
190
- ## 🤖 AI Industry Components
191
-
192
- ### 1. Chat Interface
193
- Full ChatGPT/Claude-style chat UI:
194
- - Message bubbles with markdown
195
- - Code syntax highlighting
196
- - Streaming indicators
197
- - Copy/regenerate actions
198
-
199
- ### 2. Prompt Input
200
- Smart prompt component:
201
- - Autocomplete suggestions
202
- - Token counter
203
- - Modifier chips (--ar, --v, --style)
204
-
205
- ### 3. Agent Cards
206
- AI model/agent displays:
207
- - Status indicators
208
- - Capability tags
209
- - One-click selection
210
-
211
- ### 4. Thinking Indicators
212
- 5 animation styles:
213
- - Bouncing dots
214
- - Wave bars
215
- - Pulse rings
216
- - Shimmer skeletons
217
- - Progress steps
218
-
219
- ### 5. Code Blocks
220
- Syntax-highlighted code:
221
- - Copy to clipboard
222
- - Download file
223
- - Diff view
224
- - Terminal styling
225
-
226
- ### 6. File Upload
227
- Drag-and-drop upload:
228
- - Image previews
229
- - Progress bars
230
- - AI context preview
231
-
232
- ---
233
-
234
- ## 🎯 Design Tokens
235
-
236
- ### 100+ Tokens Available
237
-
238
- **Colors:**
239
- ```css
240
- var(--color-text-default) /* Primary text */
241
- var(--color-text-muted) /* Secondary text */
242
- var(--color-surface-raised) /* Cards */
243
- var(--color-interactive-primary) /* Buttons */
244
- var(--color-status-success) /* Success states */
245
- ```
246
-
247
- **Spacing:**
248
- ```css
249
- var(--spacing-4) /* 4px */
250
- var(--spacing-8) /* 8px */
251
- var(--spacing-16) /* 16px */
252
- var(--spacing-32) /* 32px */
253
- ```
254
-
255
- **Typography:**
256
- ```css
257
- var(--font-sans) /* Geist Sans, Inter */
258
- var(--font-mono) /* JetBrains Mono */
259
- var(--font-display) /* Space Grotesk */
260
- ```
261
-
262
- ---
263
-
264
- ## 🔤 40+ Font Families
265
-
266
- ### Sans-Serif
267
- - Geist Sans (Vercel's modern geometric)
268
- - Inter (Highly legible)
269
- - Poppins, Plus Jakarta Sans, Satoshi, Manrope, Outfit
270
-
271
- ### Serif
272
- - Merriweather, DM Serif Display, Lora, Source Serif 4, Literata
273
-
274
- ### Monospace
275
- - Geist Mono, JetBrains Mono, Fira Code, Cascadia Code, SF Mono, IBM Plex Mono
276
-
277
- ### Nerd Fonts (Code + Icons)
278
- - JetBrainsMono Nerd Font
279
- - FiraCode Nerd Font
280
- - Hack Nerd Font
281
- - CaskaydiaCove Nerd Font
282
-
283
- ### Display
284
- - Space Grotesk, Clash Display, Syne, Bungee, Archivo Black
285
-
286
- ---
287
-
288
- ## 📦 Installation Methods
289
-
290
- ### Method 1: npx (Recommended)
25
+ ### Install for Your IDE
291
26
 
292
27
  ```bash
293
- # Auto-detect and install
294
28
  npx omnidesign
295
-
296
- # Install for specific IDE
297
- npx omnidesign install --ide cursor
298
-
299
- # Install globally
300
- npx omnidesign install --global
301
- ```
302
-
303
- ### Method 2: npm
304
-
305
- ```bash
306
- # Install as dev dependency
307
- npm install --save-dev omnidesign
308
-
309
- # Or install globally
310
- npm install -g omnidesign
311
-
312
- # Then run
313
- omnidesign install
314
29
  ```
315
30
 
316
- ### Method 3: bun
31
+ Auto-detects and installs globally. That's it.
317
32
 
33
+ **Manual install:**
318
34
  ```bash
319
- bunx omnidesign
35
+ npx omnidesign install --ide claude # Claude Code
36
+ npx omnidesign install --ide cursor # Cursor
37
+ npx omnidesign install --ide opencode # OpenCode
38
+ npx omnidesign install --ide vscode # VS Code
39
+ npx omnidesign install --ide zed # Zed
40
+ npx omnidesign install --ide amp # Amp Code
41
+ npx omnidesign install --ide kilo # Kilo Code
42
+ npx omnidesign install --ide antigravity # Antigravity
43
+ npx omnidesign install --ide aider # Aider
44
+ npx omnidesign install --ide continue # Continue.dev
320
45
  ```
321
46
 
322
- ---
323
-
324
- ## 🛠️ CLI Commands
47
+ ### Install for Your Agent
325
48
 
326
- ```bash
327
- # Install skill for detected IDE
328
- npx omnidesign install
329
-
330
- # Install for specific IDE
331
- npx omnidesign install --ide <ide>
49
+ Copy-paste to your AI assistant:
332
50
 
333
- # List supported IDEs and status
334
- npx omnidesign list
51
+ > Install OmniDesign skill: `npx omnidesign install --ide <your-ide> --global`
335
52
 
336
- # Uninstall skill
337
- npx omnidesign uninstall --ide <ide>
338
-
339
- # Show help
340
- npx omnidesign --help
341
- ```
53
+ Once installed, your agent has access to 25 themes, design tokens, and AI component patterns.
342
54
 
343
55
  ---
344
56
 
345
- ## 📁 Project Structure
57
+ ## What's Included
346
58
 
347
59
  ```
348
60
  omnidesign/
349
- ├── 🎨 logo.jpg # Brand identity
350
- ├── 📖 README.md # This file
351
- ├── 📦 package.json # NPM manifest
352
- ├── 🔧 bin/ # CLI tools
353
- ├── cli.js # Main CLI
354
- │ ├── install.js # Install script
355
- │ └── detect-ide.js # IDE detection
356
- ├── 🎨 tokens/ # Design tokens
357
- │ ├── primitives/ # Base values
358
- │ ├── semantic/ # Contextual tokens
359
- │ ├── themes/ # 25 theme files
360
- │ └── typography/ # Font collection
361
- ├── 🧩 components/ # React/Vue components
362
- │ ├── core/ # Button, Card, Input
363
- │ ├── ai/ # Chat, Prompt, AgentCard
364
- │ └── layout/ # Grid, Stack
365
- ├── 📚 recipes/ # Implementation guides
366
- │ └── components/ # Component patterns
367
- ├── 🎯 skills/ # IDE-specific skills
368
- │ ├── claude/ # Claude Code skill
369
- │ ├── cursor/ # Cursor skill
370
- │ ├── opencode/ # OpenCode skill
371
- │ ├── vscode/ # VS Code extension
372
- │ ├── aider/ # Aider conventions
373
- │ ├── continue/ # Continue.dev config
374
- │ ├── zed/ # Zed config
375
- │ ├── amp/ # Amp Code skill
376
- │ ├── kilo/ # Kilo Code skill
377
- │ └── antigravity/ # Antigravity skill
378
- └── 📦 packages/ # Built outputs
379
- ├── tokens-css/
380
- ├── tokens-ts/
381
- └── react/
61
+ ├── SKILL.md # Entry point for your AI
62
+ ├── tokens/ # Design tokens
63
+ ├── themes/ # 25 theme files
64
+ ├── primitives/ # Base colors, spacing
65
+ └── semantic/ # Contextual tokens
66
+ └── recipes/ # Component patterns
67
+ ├── components/ # AI chat, prompts, forms
68
+ └── motion/ # Animation patterns
382
69
  ```
383
70
 
384
71
  ---
385
72
 
386
- ## 🔗 IDE-Specific Instructions
387
-
388
- ### Claude Code
389
-
390
- ```bash
391
- npx omnidesign
392
- ```
393
-
394
- Creates:
395
- - `.claude/skills/omnidesign.md`
396
- - `.claude/marketplace.json`
397
-
398
- Use: Type `/omnidesign` or ask "Use OmniDesign theme cyberpunk"
399
-
400
- ### Cursor
401
-
402
- ```bash
403
- npx omnidesign
404
- ```
405
-
406
- Creates:
407
- - `.cursor/skills/omnidesign.md`
408
-
409
- Use: OmniDesign prompts appear in AI chat
410
-
411
- ### OpenCode
412
-
413
- ```bash
414
- npx omnidesign
415
- ```
416
-
417
- Creates:
418
- - `.opencode/skills/omnidesign.md`
419
- - Updates `.opencode/config.json`
420
-
421
- Use: Skill loads automatically
422
-
423
- ### VS Code
424
-
425
- ```bash
426
- npx omnidesign
427
- ```
428
-
429
- Creates:
430
- - `.vscode/settings.json` with OmniDesign config
431
-
432
- Or install from VS Code Marketplace: **"OmniDesign"**
433
-
434
- ### Zed
435
-
436
- ```bash
437
- npx omnidesign
438
- ```
439
-
440
- Creates:
441
- - `.zed/omnidesign.json`
73
+ ## Themes
442
74
 
443
- Add to Zed settings to enable the assistant.
75
+ 25 production-ready themes. Each includes complete color tokens (primary, surface, text, borders, status), shadows, and interactive states. Preview shows primary accent, background surface, and text colors.
444
76
 
445
- ### Amp Code
446
-
447
- ```bash
448
- npx omnidesign
449
- ```
450
-
451
- Creates:
452
- - `.amp/omnidesign.md`
453
-
454
- Amp Code will load the skill automatically.
455
-
456
- ### Kilo Code
457
-
458
- ```bash
459
- npx omnidesign
460
- ```
461
-
462
- Creates:
463
- - `.kilo/omnidesign.md`
464
-
465
- Kilo Code will use the skill for design guidance.
466
-
467
- ### Antigravity
468
-
469
- ```bash
470
- npx omnidesign
471
- ```
77
+ ### Professional
472
78
 
473
- Creates:
474
- - `.antigravity/skills/omnidesign.md`
79
+ | Theme | Palette |
80
+ |-------|---------|
81
+ | corporate | ![corporate](assets/palettes/corporate.svg) |
82
+ | navy | ![navy](assets/palettes/navy.svg) |
83
+ | slate | ![slate](assets/palettes/slate.svg) |
84
+ | forest | ![forest](assets/palettes/forest.svg) |
85
+ | ruby | ![ruby](assets/palettes/ruby.svg) |
86
+ | graphite | ![graphite](assets/palettes/graphite.svg) |
475
87
 
476
- Antigravity will apply the design system conventions.
88
+ ### Creative
477
89
 
478
- ### Aider
90
+ | Theme | Palette |
91
+ |-------|---------|
92
+ | sunset | ![sunset](assets/palettes/sunset.svg) |
93
+ | ocean | ![ocean](assets/palettes/ocean.svg) |
94
+ | berry | ![berry](assets/palettes/berry.svg) |
95
+ | mint | ![mint](assets/palettes/mint.svg) |
96
+ | coral | ![coral](assets/palettes/coral.svg) |
97
+ | lavender | ![lavender](assets/palettes/lavender.svg) |
479
98
 
480
- ```bash
481
- npx omnidesign
482
- ```
99
+ ### Dark Mode
483
100
 
484
- Creates:
485
- - `CONVENTIONS.md` with design guidelines
101
+ | Theme | Palette |
102
+ |-------|---------|
103
+ | midnight | ![midnight](assets/palettes/midnight.svg) |
104
+ | noir | ![noir](assets/palettes/noir.svg) |
105
+ | cyberpunk | ![cyberpunk](assets/palettes/cyberpunk.svg) |
106
+ | obsidian | ![obsidian](assets/palettes/obsidian.svg) |
107
+ | deep-space | ![deep-space](assets/palettes/deep-space.svg) |
108
+ | brutalist | ![brutalist](assets/palettes/brutalist.svg) |
486
109
 
487
- Use: Aider reads conventions automatically
110
+ ### Light Mode
488
111
 
489
- ### Continue.dev
112
+ | Theme | Palette |
113
+ |-------|---------|
114
+ | daylight | ![daylight](assets/palettes/daylight.svg) |
115
+ | paper | ![paper](assets/palettes/paper.svg) |
116
+ | cream | ![cream](assets/palettes/cream.svg) |
117
+ | snow | ![snow](assets/palettes/snow.svg) |
118
+ | spring | ![spring](assets/palettes/spring.svg) |
119
+ | solar | ![solar](assets/palettes/solar.svg) |
490
120
 
491
- ```bash
492
- npx omnidesign
493
- ```
121
+ ### Specialty
494
122
 
495
- Creates:
496
- - `.continue/omnidesign.yaml`
123
+ | Theme | Palette |
124
+ |-------|---------|
125
+ | starry-night | ![starry-night](assets/palettes/starry-night.svg) |
497
126
 
498
- Add to `.continue/config.yaml`:
499
- ```yaml
500
- context:
501
- - provider: file
502
- params:
503
- file: .continue/omnidesign.yaml
504
- ```
127
+ **Usage:** `"Use the cyberpunk theme"` or `"Apply ocean theme"`
505
128
 
506
129
  ---
507
130
 
508
- ## 🎓 Usage Examples
131
+ ## Usage
509
132
 
510
133
  ### Apply a Theme
511
134
 
512
135
  ```
513
136
  User: "Use the cyberpunk theme"
514
- AI: [Applies cyberpunk color tokens automatically]
137
+ AI: [Applies cyberpunk color tokens to components]
515
138
  ```
516
139
 
517
- ### Create a Component
140
+ ### Create Components
518
141
 
519
142
  ```
520
- User: "Create a button component"
521
- AI: [Generates button using --color-interactive-primary, --spacing-md, etc.]
143
+ User: "Create a login form"
144
+ AI: [Generates form using --color-interactive-primary, --spacing-md, --shadow-card]
522
145
  ```
523
146
 
524
- ### Build AI Chat UI
147
+ ### Access Design Tokens
525
148
 
526
- ```
527
- User: "Build a chat interface"
528
- AI: [Uses AI Chat component patterns with streaming indicators]
529
- ```
149
+ **Colors:**
150
+ - `color.text.default` Primary text
151
+ - `color.surface.raised` Cards, elevated surfaces
152
+ - `color.interactive.primary` — Buttons, links
153
+ - `color.status.success/error/warning` — Status states
530
154
 
531
- ---
155
+ **Spacing:**
156
+ - `spacing.4` (4px), `spacing.8` (8px), `spacing.16` (16px)
157
+ - `spacing.24` (24px), `spacing.32` (32px), `spacing.48` (48px)
532
158
 
533
- ## 📚 Documentation
159
+ **Typography:**
160
+ - `font.sans` — Geist Sans, Inter
161
+ - `font.mono` — JetBrains Mono, Geist Mono
162
+ - `font.display` — Space Grotesk
534
163
 
535
- - **Full Docs**: https://omnidesign.dev
536
- - **Quick Reference**: [QUICKREF.md](./QUICKREF.md)
537
- - **Getting Started**: [GETTING_STARTED.md](./GETTING_STARTED.md)
538
- - **Contributing**: [CONTRIBUTING.md](./CONTRIBUTING.md)
164
+ **Shadows:**
165
+ - `shadow.card` Cards, buttons
166
+ - `shadow.dropdown` Dropdowns, popovers
167
+ - `shadow.modal` — Modals, dialogs
539
168
 
540
169
  ---
541
170
 
542
- ## 🤝 Contributing
543
-
544
- We welcome contributions! See [CONTRIBUTING.md](./CONTRIBUTING.md) for:
171
+ ## Supported IDEs
545
172
 
546
- - Adding new themes
547
- - Creating component recipes
548
- - IDE integrations
549
- - Documentation improvements
173
+ | IDE | Install Command | Config Location |
174
+ |-----|-----------------|-----------------|
175
+ | Claude Code | `npx omnidesign` | `~/.claude/skills/omnidesign/` |
176
+ | Cursor | `npx omnidesign` | `~/.cursor/skills/omnidesign/` |
177
+ | OpenCode | `npx omnidesign` | `~/.config/opencode/skills/omnidesign/` |
178
+ | VS Code | `npx omnidesign` | `~/.vscode/settings.json` |
179
+ | Zed | `npx omnidesign` | `~/.zed/omnidesign/` |
180
+ | Amp Code | `npx omnidesign` | `~/.config/agents/skills/omnidesign/` |
181
+ | Kilo Code | `npx omnidesign` | `~/.kilocode/skills/omnidesign/` |
182
+ | Antigravity | `npx omnidesign` | `~/.gemini/antigravity/skills/omnidesign/` |
183
+ | Aider | `npx omnidesign` | `./CONVENTIONS.md` |
184
+ | Continue.dev | `npx omnidesign` | `~/.continue/omnidesign/` |
550
185
 
551
186
  ---
552
187
 
553
- ## 📄 License
188
+ ## CLI Commands
554
189
 
555
- MIT License - see [LICENSE](./LICENSE)
190
+ ```bash
191
+ npx omnidesign # Auto-detect and install
192
+ npx omnidesign list # List installed IDEs
193
+ npx omnidesign install --ide <ide> --global # Install globally
194
+ npx omnidesign uninstall --ide <ide> --global # Uninstall
195
+ ```
556
196
 
557
197
  ---
558
198
 
559
- ## 🙏 Acknowledgments
199
+ ## License
560
200
 
561
- - Design tokens following [DTCG specification](https://design-tokens.github.io/)
562
- - Font collection from Google Fonts and Nerd Fonts
563
- - AI components inspired by ChatGPT, Claude, and Midjourney
564
- - Universal skill pattern inspired by Vercel Skills
201
+ MIT © [codewithkenzo](https://github.com/codewithkenzo)
565
202
 
566
203
  ---
567
204
 
568
205
  <p align="center">
569
- <strong>Built with 💙 for the AI coding community</strong>
570
- </p>
571
-
572
- <p align="center">
573
- <a href="https://twitter.com/omnidesign">Twitter</a> •
206
+ <a href="https://x.com/codewithkenzo">X @codewithkenzo</a>
574
207
  <a href="https://discord.gg/omnidesign">Discord</a> •
575
208
  <a href="https://omnidesign.dev">Website</a>
576
209
  </p>