ui-ux-consultant-cli 1.1.0 → 1.1.2-beta.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 (3) hide show
  1. package/README.md +4 -0
  2. package/dist/index.js +10 -0
  3. package/package.json +20 -2
package/README.md CHANGED
@@ -1,7 +1,11 @@
1
1
  # UI/UX Consultant Skill
2
2
 
3
3
  [![npm](https://img.shields.io/npm/v/ui-ux-consultant-cli?style=flat-square&logo=npm)](https://www.npmjs.com/package/ui-ux-consultant-cli)
4
+ [![npm downloads](https://img.shields.io/npm/dm/ui-ux-consultant-cli?style=flat-square)](https://www.npmjs.com/package/ui-ux-consultant-cli)
4
5
  [![License](https://img.shields.io/github/license/yatin-rai/ui-ux-consultant-skill?style=flat-square)](LICENSE)
6
+ [![Works with Claude Code](https://img.shields.io/badge/Works%20with-Claude%20Code-orange?style=flat-square&logo=anthropic)](https://claude.ai/code)
7
+ [![Works with Cursor](https://img.shields.io/badge/Works%20with-Cursor-blue?style=flat-square)](https://cursor.sh)
8
+ [![Works with Windsurf](https://img.shields.io/badge/Works%20with-Windsurf-purple?style=flat-square)](https://codeium.com/windsurf)
5
9
 
6
10
  A zero-install, multi-framework UI/UX design consultant embedded in Claude. Covers 16 frameworks with opinionated code patterns, accessibility checklists, and a curated design catalog.
7
11
 
package/dist/index.js CHANGED
@@ -125,6 +125,11 @@ program
125
125
  .option('--yes', 'Skip confirmation prompt', false)
126
126
  .option('--dry-run', 'Preview update path without writing any files', false)
127
127
  .action(async (opts) => {
128
+ if (!PLATFORM_PATHS[opts.ai]) {
129
+ console.error(chalk_1.default.red(`Unknown platform: ${opts.ai}`));
130
+ console.log(`Supported: ${Object.keys(PLATFORM_PATHS).join(', ')}, all`);
131
+ process.exit(1);
132
+ }
128
133
  const target = getInstallTarget(opts.ai, opts.global, process.cwd());
129
134
  if (opts.dryRun) {
130
135
  console.log(chalk_1.default.yellow(`[dry-run] Would update: ${target}`));
@@ -153,6 +158,11 @@ program
153
158
  .option('--global', 'Remove from global install', false)
154
159
  .option('--yes', 'Skip confirmation prompt', false)
155
160
  .action(async (opts) => {
161
+ if (!PLATFORM_PATHS[opts.ai]) {
162
+ console.error(chalk_1.default.red(`Unknown platform: ${opts.ai}`));
163
+ console.log(`Supported: ${Object.keys(PLATFORM_PATHS).join(', ')}, all`);
164
+ process.exit(1);
165
+ }
156
166
  const target = getInstallTarget(opts.ai, opts.global, process.cwd());
157
167
  if (!await fs.pathExists(target)) {
158
168
  console.log(chalk_1.default.yellow(`Nothing to remove at: ${target}`));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ui-ux-consultant-cli",
3
- "version": "1.1.0",
3
+ "version": "1.1.2-beta.1",
4
4
  "description": "CLI installer for the UI/UX Consultant Claude skill",
5
5
  "bin": {
6
6
  "uiux": "dist/index.js"
@@ -35,12 +35,30 @@
35
35
  },
36
36
  "keywords": [
37
37
  "claude",
38
+ "claude-code",
39
+ "claude-skill",
38
40
  "cursor",
41
+ "windsurf",
42
+ "copilot",
43
+ "ai-skill",
44
+ "llm",
39
45
  "skill",
40
46
  "ui-ux",
47
+ "ui",
48
+ "ux",
49
+ "design",
50
+ "design-system",
41
51
  "angular",
42
52
  "react",
43
- "design-system"
53
+ "vue",
54
+ "nextjs",
55
+ "svelte",
56
+ "flutter",
57
+ "swiftui",
58
+ "tailwind",
59
+ "frontend",
60
+ "accessibility",
61
+ "component-library"
44
62
  ],
45
63
  "author": "Yatin Rai <raiyatin55@gmail.com>",
46
64
  "license": "MIT",