flutter-pro-max-cli 2.1.5 → 2.3.0

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/README.md CHANGED
@@ -83,8 +83,8 @@ This CLI bridges the gap between the Flutter Pro Max knowledge base and your dev
83
83
  | **Antigravity (Google)** | `antigravity` | Full | Compact (~5KB) | **12,000 chars** |
84
84
  | **Cursor** | `cursor` | Reference | Full (~13KB) | No Limit |
85
85
  | **Windsurf** | `windsurf` | Reference | Full (~13KB) | No Limit |
86
- | **GitHub Copilot** | `copilot` | Reference | Mini (~2KB) | **~4,000 chars** |
87
- | **VS Code** | `vscode` | Reference | Mini (~2KB) | Unknown |
86
+ | **GitHub Copilot** | `copilot` | Full | Full (~15KB) | No Limit |
87
+ | **VS Code** | `vscode` | Full | Full (~15KB) | No Limit |
88
88
  | **Kiro** | `kiro` | Reference | Full (~13KB) | No Limit |
89
89
  | **RooCode** | `roocode` | Reference | Full (~13KB) | No Limit |
90
90
  | **Qodo/Qoder** | `qoder` | Reference | Full (~13KB) | No Limit |
@@ -193,6 +193,11 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
193
193
 
194
194
  ## 📝 Changelog
195
195
 
196
+ ### v2.3.0 (2026-02-06)
197
+ - **VS Code 1.109 Support**: GitHub Copilot và VS Code sử dụng `.github/skills/` format
198
+ - **Breaking Change**: Copilot/VS Code chuyển từ prompts/instructions sang Skills
199
+ - **Full Install**: Copilot và VS Code nay sử dụng full template (~15KB) thay vì mini
200
+
196
201
  ### v2.2.0 (2026-02-02)
197
202
  - **Flutter AI Rules**: Cập nhật theo [Flutter Official AI Rules](https://docs.flutter.dev/ai/ai-rules)
198
203
  - **Platform Limits**: Tạo templates phù hợp với giới hạn từng platform
@@ -1,19 +1,22 @@
1
1
  {
2
2
  "platform": "copilot",
3
3
  "displayName": "GitHub Copilot",
4
- "installType": "reference",
4
+ "installType": "full",
5
5
  "folderStructure": {
6
6
  "root": ".github",
7
- "skillPath": "prompts",
8
- "filename": "flutter-pro-max.prompt.md"
7
+ "skillPath": "skills/flutter-pro-max",
8
+ "filename": "SKILL.md"
9
+ },
10
+ "scriptPath": "skills/flutter-pro-max/scripts/search.py",
11
+ "frontmatter": {
12
+ "name": "flutter-pro-max",
13
+ "description": "Flutter design intelligence. Widgets, packages, patterns, architecture, performance optimization, accessibility, and UI/UX best practices."
9
14
  },
10
- "scriptPath": ".shared/flutter-pro-max/scripts/search.py",
11
- "frontmatter": null,
12
15
  "sections": {
13
16
  "quickReference": true
14
17
  },
15
- "template": "skill-content-4k.md",
16
- "title": "flutter-pro-max",
17
- "description": "Flutter development guide with widgets, packages, patterns, architecture, performance, and UI/UX best practices.",
18
- "skillOrWorkflow": "Workflow"
18
+ "template": "skill-content.md",
19
+ "title": "Flutter Pro Max - Flutter Design Intelligence",
20
+ "description": "Comprehensive Flutter development guide with searchable database of widgets, packages, design patterns, architecture guidelines, performance optimization, accessibility, and UI/UX best practices.",
21
+ "skillOrWorkflow": "Skill"
19
22
  }
@@ -1,19 +1,22 @@
1
1
  {
2
2
  "platform": "vscode",
3
3
  "displayName": "VS Code",
4
- "installType": "reference",
4
+ "installType": "full",
5
5
  "folderStructure": {
6
- "root": ".vscode",
7
- "skillPath": "instructions",
8
- "filename": "flutter-pro-max.instructions.md"
6
+ "root": ".github",
7
+ "skillPath": "skills/flutter-pro-max",
8
+ "filename": "SKILL.md"
9
+ },
10
+ "scriptPath": "skills/flutter-pro-max/scripts/search.py",
11
+ "frontmatter": {
12
+ "name": "flutter-pro-max",
13
+ "description": "Flutter design intelligence. Widgets, packages, patterns, architecture, performance optimization, accessibility, and UI/UX best practices."
9
14
  },
10
- "scriptPath": ".shared/flutter-pro-max/scripts/search.py",
11
- "frontmatter": null,
12
15
  "sections": {
13
16
  "quickReference": true
14
17
  },
15
- "template": "skill-content-4k.md",
16
- "title": "Flutter Pro Max",
17
- "description": "Flutter development guide with widgets, packages, patterns, architecture, performance, and UI/UX best practices.",
18
- "skillOrWorkflow": "Workflow"
18
+ "template": "skill-content.md",
19
+ "title": "Flutter Pro Max - Flutter Design Intelligence",
20
+ "description": "Comprehensive Flutter development guide with searchable database of widgets, packages, design patterns, architecture guidelines, performance optimization, accessibility, and UI/UX best practices.",
21
+ "skillOrWorkflow": "Skill"
19
22
  }
@@ -16,5 +16,5 @@ export const AI_FOLDERS = {
16
16
  opencode: ['.opencode', '.shared'],
17
17
  continue: ['.continue', '.shared'],
18
18
  junie: ['.junie', '.shared'],
19
- vscode: ['.vscode', '.shared'],
19
+ vscode: ['.github', '.shared'],
20
20
  };
@@ -65,7 +65,7 @@ export function getAITypeDescription(aiType) {
65
65
  case 'antigravity':
66
66
  return 'Antigravity / Generic Agent (.agent/skills/)';
67
67
  case 'copilot':
68
- return 'GitHub Copilot (.github/prompts/)';
68
+ return 'GitHub Copilot (.github/skills/)';
69
69
  case 'kiro':
70
70
  return 'Kiro (.kiro/steering/)';
71
71
  case 'codex':
@@ -87,7 +87,7 @@ export function getAITypeDescription(aiType) {
87
87
  case 'junie':
88
88
  return 'JetBrains AI / Junie (.junie/skills/)';
89
89
  case 'vscode':
90
- return 'VS Code (.vscode/instructions/)';
90
+ return 'VS Code (.github/skills/)';
91
91
  case 'all':
92
92
  return 'All AI assistants';
93
93
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flutter-pro-max-cli",
3
- "version": "2.1.5",
3
+ "version": "2.3.0",
4
4
  "description": "CLI to install Flutter Pro Max skill for AI coding assistants",
5
5
  "type": "module",
6
6
  "bin": {