Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ uipro init --ai cursor # Cursor
uipro init --ai windsurf # Windsurf
uipro init --ai antigravity # Antigravity
uipro init --ai copilot # GitHub Copilot
uipro init --ai copilot-cli # GitHub Copilot CLI
uipro init --ai kiro # Kiro
uipro init --ai codex # Codex CLI
uipro init --ai qoder # Qoder
Expand Down Expand Up @@ -333,7 +334,7 @@ winget install Python.Python.3.12

### Skill Mode (Auto-activate)

**Supported:** Claude Code, Cursor, Windsurf, Antigravity, Codex CLI, Continue, Gemini CLI, OpenCode, Qoder, CodeBuddy, Droid (Factory), KiloCode, Warp, Augment
**Supported:** Claude Code, Cursor, Windsurf, Antigravity, Codex CLI, Continue, Gemini CLI, GitHub Copilot CLI, OpenCode, Qoder, CodeBuddy, Droid (Factory), KiloCode, Warp, Augment

The skill activates automatically when you request UI/UX work. Just chat naturally:

Expand Down
18 changes: 18 additions & 0 deletions cli/assets/templates/platforms/copilot-cli.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"platform": "copilot-cli",
"displayName": "GitHub Copilot CLI",
"installType": "full",
"folderStructure": {
"root": ".github",
"skillPath": "skills/ui-ux-pro-max",
"filename": "SKILL.md"
},
"scriptPath": "skills/ui-ux-pro-max/scripts/search.py",
"frontmatter": null,
"sections": {
"quickReference": false
},
"title": "ui-ux-pro-max",
"description": "Comprehensive design guide for web and mobile applications. Contains 67 styles, 161 color palettes, 57 font pairings, 99 UX guidelines, and 25 chart types across 16 technology stacks. Searchable database with priority-based recommendations.",
"skillOrWorkflow": "Skill"
}
5 changes: 3 additions & 2 deletions cli/src/types/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export type AIType = 'claude' | 'cursor' | 'windsurf' | 'antigravity' | 'copilot' | 'kiro' | 'roocode' | 'codex' | 'qoder' | 'gemini' | 'trae' | 'opencode' | 'continue' | 'codebuddy' | 'droid' | 'kilocode' | 'warp' | 'augment' | 'all';
export type AIType = 'claude' | 'cursor' | 'windsurf' | 'antigravity' | 'copilot' | 'copilot-cli' | 'kiro' | 'roocode' | 'codex' | 'qoder' | 'gemini' | 'trae' | 'opencode' | 'continue' | 'codebuddy' | 'droid' | 'kilocode' | 'warp' | 'augment' | 'all';

export type InstallType = 'full' | 'reference';

Expand Down Expand Up @@ -41,7 +41,7 @@ export interface PlatformConfig {
skillOrWorkflow: string;
}

export const AI_TYPES: AIType[] = ['claude', 'cursor', 'windsurf', 'antigravity', 'copilot', 'roocode', 'kiro', 'codex', 'qoder', 'gemini', 'trae', 'opencode', 'continue', 'codebuddy', 'droid', 'kilocode', 'warp', 'augment', 'all'];
export const AI_TYPES: AIType[] = ['claude', 'cursor', 'windsurf', 'antigravity', 'copilot', 'copilot-cli', 'roocode', 'kiro', 'codex', 'qoder', 'gemini', 'trae', 'opencode', 'continue', 'codebuddy', 'droid', 'kilocode', 'warp', 'augment', 'all'];

// Legacy folder mapping for backward compatibility with ZIP-based installs.
// Note: .shared is included for platforms that used ZIP installs. Post-ZIP platforms
Expand All @@ -52,6 +52,7 @@ export const AI_FOLDERS: Record<Exclude<AIType, 'all'>, string[]> = {
windsurf: ['.windsurf', '.shared'],
antigravity: ['.agents', '.shared'],
copilot: ['.github', '.shared'],
'copilot-cli': ['.github'],
kiro: ['.kiro', '.shared'],
codex: ['.codex'],
roocode: ['.roo', '.shared'],
Expand Down
5 changes: 5 additions & 0 deletions cli/src/utils/detect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ export function detectAIType(cwd: string = process.cwd()): DetectionResult {
if (existsSync(join(cwd, '.github'))) {
detected.push('copilot');
}
if (existsSync(join(cwd, '.github', 'copilot-instructions.md'))) {
detected.push('copilot-cli');
}
if (existsSync(join(cwd, '.kiro'))) {
detected.push('kiro');
}
Expand Down Expand Up @@ -88,6 +91,8 @@ export function getAITypeDescription(aiType: AIType): string {
return 'Antigravity (.agents/skills/)';
case 'copilot':
return 'GitHub Copilot (.github/prompts/)';
case 'copilot-cli':
return 'GitHub Copilot CLI (.github/skills/)';
case 'kiro':
return 'Kiro (.kiro/steering/)';
case 'codex':
Expand Down
1 change: 1 addition & 0 deletions cli/src/utils/template.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const AI_TO_PLATFORM: Record<string, string> = {
windsurf: 'windsurf',
antigravity: 'agent',
copilot: 'copilot',
'copilot-cli': 'copilot-cli',
kiro: 'kiro',
opencode: 'opencode',
roocode: 'roocode',
Expand Down
1 change: 1 addition & 0 deletions skill.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"cursor",
"windsurf",
"copilot",
"copilot-cli",
"kiro",
"roocode",
"kilocode",
Expand Down
18 changes: 18 additions & 0 deletions src/ui-ux-pro-max/templates/platforms/copilot-cli.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"platform": "copilot-cli",
"displayName": "GitHub Copilot CLI",
"installType": "full",
"folderStructure": {
"root": ".github",
"skillPath": "skills/ui-ux-pro-max",
"filename": "SKILL.md"
},
"scriptPath": "skills/ui-ux-pro-max/scripts/search.py",
"frontmatter": null,
"sections": {
"quickReference": false
},
"title": "ui-ux-pro-max",
"description": "Comprehensive design guide for web and mobile applications. Contains 67 styles, 161 color palettes, 57 font pairings, 99 UX guidelines, and 25 chart types across 16 technology stacks. Searchable database with priority-based recommendations.",
"skillOrWorkflow": "Skill"
}