Files
ui-ux-pro-max-skill/cli/package.json
Viet Tran d5fbbfdc9b feat: v2.0.0 - Design System Generator with 100 reasoning rules
## Major Features
- Add --design-system flag for AI-powered design recommendations
- 100 industry-specific reasoning rules in ui-reasoning.csv
- Multi-domain parallel search (product, style, color, landing, typography)
- Anti-patterns to avoid for each industry

## New Files
- data/ui-reasoning.csv - 100 UI category rules with style priority, effects, anti-patterns
- scripts/design_system.py - Reasoning engine with BM25 ranking

## Workflow Updates
- All agent workflows updated with new design system generation step
- Step 2 now requires --design-system for comprehensive recommendations
- Updated example workflow with beauty spa case study

## CLI Updates
- Version bumped to 2.0.0
- Added Qoder and Roo Code support
- Synced all agent folders to cli/assets/

## README Updates
- Added version badges and PayPal donation button
- New "What's New in v2.0" section with architecture diagram
- Updated CLI installation instructions

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 10:46:02 +07:00

49 lines
903 B
JSON

{
"name": "uipro-cli",
"version": "2.0.0",
"description": "CLI to install UI/UX Pro Max skill for AI coding assistants",
"type": "module",
"bin": {
"uipro": "./dist/index.js"
},
"files": [
"dist",
"assets"
],
"scripts": {
"build": "bun build src/index.ts --outdir dist --target node",
"dev": "bun run src/index.ts",
"prepublishOnly": "bun run build"
},
"keywords": [
"ui",
"ux",
"design",
"claude",
"cursor",
"windsurf",
"copilot",
"kiro",
"trae",
"roocode",
"codex",
"qoder",
"ai",
"skill"
],
"author": "",
"license": "MIT",
"dependencies": {
"commander": "^12.1.0",
"chalk": "^5.3.0",
"ora": "^8.1.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/bun": "^1.1.14",
"@types/node": "^22.10.1",
"@types/prompts": "^2.4.9",
"typescript": "^5.7.2"
}
}