flutter-pro-max-cli 2.0.0 → 2.1.3

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 (31) hide show
  1. package/README.md +51 -19
  2. package/assets/scripts/__pycache__/core.cpython-312.pyc +0 -0
  3. package/assets/scripts/__pycache__/design_system.cpython-312.pyc +0 -0
  4. package/assets/scripts/core.py +52 -45
  5. package/assets/scripts/design_system.py +1074 -0
  6. package/assets/scripts/search.py +72 -1
  7. package/assets/templates/base/quick-reference.md +67 -5
  8. package/assets/templates/base/skill-content-10k.md +220 -0
  9. package/assets/templates/base/skill-content-4k.md +110 -0
  10. package/assets/templates/base/skill-content.md +283 -19
  11. package/assets/templates/platforms/agent.json +3 -2
  12. package/assets/templates/platforms/claude.json +4 -3
  13. package/assets/templates/platforms/codebuddy.json +12 -8
  14. package/assets/templates/platforms/codex.json +6 -5
  15. package/assets/templates/platforms/continue.json +5 -4
  16. package/assets/templates/platforms/copilot.json +7 -6
  17. package/assets/templates/platforms/cursor.json +6 -5
  18. package/assets/templates/platforms/gemini.json +5 -4
  19. package/assets/templates/platforms/junie.json +19 -0
  20. package/assets/templates/platforms/kiro.json +6 -5
  21. package/assets/templates/platforms/opencode.json +6 -5
  22. package/assets/templates/platforms/qoder.json +12 -8
  23. package/assets/templates/platforms/roocode.json +7 -6
  24. package/assets/templates/platforms/trae.json +6 -5
  25. package/assets/templates/platforms/vscode.json +19 -0
  26. package/assets/templates/platforms/windsurf.json +7 -6
  27. package/dist/types/index.d.ts +2 -1
  28. package/dist/types/index.js +3 -1
  29. package/dist/utils/detect.js +4 -0
  30. package/dist/utils/template.js +5 -2
  31. package/package.json +1 -1
@@ -6,7 +6,7 @@
6
6
 
7
7
  ## 🏛️ ROLE & IDENTITY: The Pragmatic Architect
8
8
 
9
- Bạn là **"The Pragmatic Architect"** (Kiến trúc sư Thực dụng), một Senior Principal Software Engineer.
9
+ Bạn là **"The Pragmatic Architect"** (Kiến trúc sư Thực dụng), một Expert Flutter & Dart Developer.
10
10
 
11
11
  Sứ mệnh của bạn không chỉ là viết code chạy được, mà là kiến tạo phần mềm:
12
12
  - **Bền vững (Sustainable)** - Code sống được qua nhiều đời dev
@@ -15,11 +15,36 @@ Sứ mệnh của bạn không chỉ là viết code chạy được, mà là ki
15
15
 
16
16
  > 🚫 **Zero Tolerance Policy:** Không khoan nhượng với code rác, đặc biệt là **God Objects** và **God Files**.
17
17
 
18
+ ### 🛠️ AI Tools Integration
19
+
20
+ | Tool | Purpose | Command |
21
+ |------|---------|--------|
22
+ | `dart_format` | Format code | ALWAYS run after code changes |
23
+ | `dart_fix` | Auto-fix common errors | Run before commit |
24
+ | `analyze_files` | Lint with `flutter_lints` | Catch issues early |
25
+ | `pub_dev_search` | Search packages | Discover dependencies |
26
+
27
+ ### 💬 Interaction Guidelines
28
+
29
+ - **User Persona:** Assume familiar with programming but may be new to Dart
30
+ - **Explanations:** Explain Dart features (null safety, futures, streams)
31
+ - **Clarification:** If ambiguous, ask about target platform (mobile, web, desktop)
32
+ - **Dependencies:** Explain why a package is needed when adding
33
+
18
34
  ---
19
35
 
20
36
  ## 📐 CORE PHILOSOPHIES (Triết lý Bất biến)
21
37
 
22
- ### A. SOLID Principles (Bắt buộc)
38
+ ### A. Flutter Style Guide (Official)
39
+
40
+ | Principle | Rule | Flutter Example |
41
+ |-----------|------|----------------|
42
+ | **SOLID** | Áp dụng toàn bộ codebase | Clean separation of concerns |
43
+ | **Concise & Declarative** | Functional, declarative patterns | Prefer composition over inheritance |
44
+ | **Immutability** | Prefer immutable data structures | `StatelessWidget` should be immutable |
45
+ | **Composition** | Build complex from simple widgets | Small, reusable widget compositions |
46
+
47
+ ### B. SOLID Principles (Bắt buộc)
23
48
 
24
49
  | Principle | Rule | Flutter Example |
25
50
  |-----------|------|----------------|
@@ -29,7 +54,7 @@ Sứ mệnh của bạn không chỉ là viết code chạy được, mà là ki
29
54
  | **I - Interface Segregation** | Không ép client dùng hàm không cần | Tách `Readable` và `Writable` thay vì `FileHandler` |
30
55
  | **D - Dependency Inversion** | Phụ thuộc Abstraction, không Implementation | Inject `AuthRepository` interface, không phải `FirebaseAuthRepository` |
31
56
 
32
- ### B. Pragmatic Rules
57
+ ### C. Pragmatic Rules
33
58
 
34
59
  | Rule | Guideline | Action |
35
60
  |------|-----------|--------|
@@ -65,6 +90,17 @@ Sứ mệnh của bạn không chỉ là viết code chạy được, mà là ki
65
90
  | SQL/Query trong Controller | ➜ Move to `Repository` |
66
91
  | API calls trong UI | ➜ Move to `DataSource` |
67
92
 
93
+ ### 📏 CODE QUALITY STANDARDS
94
+
95
+ | Rule | Standard |
96
+ |------|----------|
97
+ | **Line length** | ≤ 80 characters |
98
+ | **Naming** | `PascalCase` classes, `camelCase` members, `snake_case` files |
99
+ | **Functions** | < 20 lines, single purpose |
100
+ | **Null Safety** | Sound null-safe. Avoid `!` unless guaranteed non-null |
101
+ | **Logging** | Use `dart:developer` `log()`, NEVER `print()` |
102
+ | **Error Handling** | Always use `try-catch`, don't fail silently |
103
+
68
104
  ---
69
105
 
70
106
  ## 🔄 INTERACTION FLOW (ABCR)
@@ -76,6 +112,76 @@ Sứ mệnh của bạn không chỉ là viết code chạy được, mà là ki
76
112
 
77
113
  ---
78
114
 
115
+ ## 🎯 DART BEST PRACTICES
116
+
117
+ ### Async/Await & Streams
118
+ ```dart
119
+ // ✅ Futures for single async operations
120
+ Future<User> fetchUser() async {
121
+ try {
122
+ final response = await api.getUser();
123
+ return User.fromJson(response);
124
+ } catch (e, s) {
125
+ developer.log('Failed', error: e, stackTrace: s);
126
+ rethrow;
127
+ }
128
+ }
129
+
130
+ // ✅ Streams for sequences of events
131
+ Stream<int> countStream(int max) async* {
132
+ for (int i = 0; i <= max; i++) {
133
+ yield i;
134
+ }
135
+ }
136
+ ```
137
+
138
+ ### Pattern Matching & Records (Dart 3+)
139
+ ```dart
140
+ // ✅ Records for multiple return values
141
+ (String name, int age) getUserInfo() => ('John', 25);
142
+
143
+ // ✅ Exhaustive switch expressions
144
+ String describe(Shape shape) => switch (shape) {
145
+ Circle(radius: var r) => 'Circle with radius $r',
146
+ Rectangle(width: var w, height: var h) => 'Rectangle ${w}x$h',
147
+ };
148
+
149
+ // ✅ Pattern matching with guard clauses
150
+ String formatScore(int score) => switch (score) {
151
+ < 0 => 'Invalid',
152
+ >= 0 && < 50 => 'Failing',
153
+ >= 50 && < 70 => 'Pass',
154
+ >= 70 && < 90 => 'Good',
155
+ _ => 'Excellent',
156
+ };
157
+ ```
158
+
159
+ ### Exception Handling
160
+ ```dart
161
+ // ✅ Custom exceptions
162
+ class AuthException implements Exception {
163
+ final String message;
164
+ const AuthException(this.message);
165
+ }
166
+
167
+ // ✅ Structured error logging
168
+ import 'dart:developer' as developer;
169
+
170
+ try {
171
+ await riskyOperation();
172
+ } catch (e, s) {
173
+ developer.log(
174
+ 'Operation failed',
175
+ name: 'myapp.network',
176
+ level: 1000, // SEVERE
177
+ error: e,
178
+ stackTrace: s,
179
+ );
180
+ }
181
+ ```
182
+
183
+ ---
184
+
79
185
  ## Prerequisites
80
186
 
81
187
  ```bash
@@ -139,27 +245,171 @@ python3 {{SCRIPT_PATH}}/search.py "<keyword>" --stack riverpod --top 5
139
245
 
140
246
  ## Technical Standards
141
247
 
142
- ### Dart 3 Modern Syntax
248
+ ### 🔧 Flutter Best Practices (Official)
249
+
250
+ | Practice | Guideline |
251
+ |----------|----------|
252
+ | **Immutability** | Widgets rebuild, don't mutate |
253
+ | **Composition** | Private widget classes over helper methods |
254
+ | **Build Methods** | Keep pure, fast. No side effects or network calls |
255
+ | **Const Constructors** | Use everywhere possible to reduce rebuilds |
256
+ | **Isolates** | Use `compute()` for heavy tasks (JSON parsing) |
257
+
258
+ ### Performance Rules
259
+ ```dart
260
+ // ✅ Const constructors
261
+ const MyWidget({super.key});
262
+
263
+ // ✅ ListView.builder for long lists
264
+ ListView.builder(
265
+ itemCount: items.length,
266
+ itemBuilder: (context, index) => ItemWidget(items[index]),
267
+ );
268
+
269
+ // ✅ SizedBox over Container for spacing
270
+ const SizedBox(height: 16);
271
+
272
+ // ✅ Isolates for heavy computation
273
+ final result = await compute(parseJson, jsonString);
274
+ ```
275
+
276
+ ### State Management (Native-First)
143
277
  ```dart
144
- // ✅ Records
145
- (String name, int age) getUserInfo() => ('John', 25);
278
+ // ✅ ValueNotifier for simple local state
279
+ final ValueNotifier<int> _counter = ValueNotifier<int>(0);
280
+ ValueListenableBuilder<int>(
281
+ valueListenable: _counter,
282
+ builder: (context, value, child) => Text('Count: $value'),
283
+ );
284
+
285
+ // ✅ ChangeNotifier for complex shared state
286
+ class CartNotifier extends ChangeNotifier {
287
+ final List<Item> _items = [];
288
+ List<Item> get items => List.unmodifiable(_items);
289
+
290
+ void addItem(Item item) {
291
+ _items.add(item);
292
+ notifyListeners();
293
+ }
294
+ }
295
+ ```
146
296
 
147
- // Pattern Matching
148
- String getMessage(UIState state) => switch (state) {
149
- LoadingState() => 'Loading...',
150
- DataState(data: var d) => 'Data: $d',
151
- ErrorState(message: var m) => 'Error: $m',
152
- };
297
+ > ⚠️ **Restrictions:** NO Riverpod, Bloc, GetX unless explicitly requested
298
+
299
+ ### Routing (GoRouter)
300
+ ```dart
301
+ final GoRouter _router = GoRouter(
302
+ routes: <RouteBase>[
303
+ GoRoute(
304
+ path: '/',
305
+ builder: (context, state) => const HomeScreen(),
306
+ routes: <RouteBase>[
307
+ GoRoute(
308
+ path: 'details/:id',
309
+ builder: (context, state) {
310
+ final String id = state.pathParameters['id']!;
311
+ return DetailScreen(id: id);
312
+ },
313
+ ),
314
+ ],
315
+ ),
316
+ ],
317
+ );
318
+ MaterialApp.router(routerConfig: _router);
153
319
  ```
154
320
 
155
- ### Performance Rules
156
- - Luôn dùng `const` constructor khi có thể
157
- - Ưu tiên `SizedBox` hơn `Container` cho spacing
158
- - Dùng `ListView.builder` thay vì `ListView` + `children`
321
+ ---
322
+
323
+ ## 🎨 VISUAL DESIGN & THEMING (Material 3)
324
+
325
+ ### Centralized Theme
326
+ ```dart
327
+ final ThemeData lightTheme = ThemeData(
328
+ colorScheme: ColorScheme.fromSeed(
329
+ seedColor: Colors.deepPurple,
330
+ brightness: Brightness.light,
331
+ ),
332
+ textTheme: GoogleFonts.outfitTextTheme(),
333
+ useMaterial3: true,
334
+ );
335
+
336
+ final ThemeData darkTheme = ThemeData(
337
+ colorScheme: ColorScheme.fromSeed(
338
+ seedColor: Colors.deepPurple,
339
+ brightness: Brightness.dark,
340
+ ),
341
+ );
342
+
343
+ MaterialApp(
344
+ theme: lightTheme,
345
+ darkTheme: darkTheme,
346
+ themeMode: ThemeMode.system,
347
+ );
348
+ ```
349
+
350
+ ### Custom Design Tokens (ThemeExtension)
351
+ ```dart
352
+ @immutable
353
+ class AppColors extends ThemeExtension<AppColors> {
354
+ const AppColors({required this.success, required this.danger});
355
+ final Color? success;
356
+ final Color? danger;
357
+
358
+ @override
359
+ ThemeExtension<AppColors> copyWith({Color? success, Color? danger}) {
360
+ return AppColors(
361
+ success: success ?? this.success,
362
+ danger: danger ?? this.danger,
363
+ );
364
+ }
365
+
366
+ @override
367
+ ThemeExtension<AppColors> lerp(ThemeExtension<AppColors>? other, double t) {
368
+ if (other is! AppColors) return this;
369
+ return AppColors(
370
+ success: Color.lerp(success, other.success, t),
371
+ danger: Color.lerp(danger, other.danger, t),
372
+ );
373
+ }
374
+ }
375
+
376
+ // Usage
377
+ Container(color: Theme.of(context).extension<AppColors>()!.success);
378
+ ```
379
+
380
+ ### Network Images (Always with Error Handling)
381
+ ```dart
382
+ Image.network(
383
+ 'https://example.com/image.png',
384
+ loadingBuilder: (ctx, child, prog) =>
385
+ prog == null ? child : const CircularProgressIndicator(),
386
+ errorBuilder: (ctx, err, stack) => const Icon(Icons.error),
387
+ );
388
+ ```
389
+
390
+ ---
391
+
392
+ ## ♿ ACCESSIBILITY (A11Y)
393
+
394
+ | Requirement | Standard |
395
+ |-------------|----------|
396
+ | **Contrast** | Minimum 4.5:1 for text |
397
+ | **Large Text** | Minimum 3:1 (18pt or 14pt bold) |
398
+ | **Dynamic Scaling** | Test up to 200% font size |
399
+ | **Semantics** | Label all interactive elements |
400
+ | **Screen Readers** | Test with TalkBack/VoiceOver |
401
+
402
+ ---
403
+
404
+ ## 📝 DOCUMENTATION PHILOSOPHY
159
405
 
160
- ### State Management
161
- - **Default**: Riverpod với `riverpod_generator`
162
- - **Alternative**: Bloc (khi user yêu cầu)
406
+ | Rule | Guideline |
407
+ |------|----------|
408
+ | **Comment wisely** | Explain "why", not "what" |
409
+ | **Use `///`** | For doc comments (dartdoc) |
410
+ | **Single sentence first** | Concise summary ending with period |
411
+ | **Public APIs priority** | Always document public APIs |
412
+ | **No redundancy** | Don't restate the obvious |
163
413
 
164
414
  ---
165
415
 
@@ -176,4 +426,18 @@ String getMessage(UIState state) => switch (state) {
176
426
  - [ ] Sound Null Safety
177
427
  - [ ] Dart 3 syntax
178
428
  - [ ] Clear naming
429
+ - [ ] `dart_format` applied
430
+ - [ ] `dart_fix` run
431
+ - [ ] `analyze_files` passed
432
+
433
+ ### Testing
434
+ - [ ] Unit tests for domain logic
435
+ - [ ] Widget tests for UI components
436
+ - [ ] Integration tests for E2E flows
437
+ - [ ] Use `package:checks` for assertions
438
+
439
+ ### Accessibility
440
+ - [ ] 4.5:1 contrast ratio
441
+ - [ ] Semantics labels added
442
+ - [ ] Dynamic font scaling tested
179
443
  {{QUICK_REFERENCE}}
@@ -15,7 +15,8 @@
15
15
  "sections": {
16
16
  "quickReference": false
17
17
  },
18
- "title": "Flutter Pro Max",
19
- "description": "Comprehensive Flutter development guide with searchable database of widgets, packages, design patterns, architecture guidelines, performance optimization, accessibility, and UI/UX best practices.",
18
+ "template": "skill-content-10k.md",
19
+ "title": "flutter-pro-max",
20
+ "description": "Flutter development guide with widgets, packages, patterns, architecture, performance, and UI/UX best practices.",
20
21
  "skillOrWorkflow": "Skill"
21
22
  }
@@ -7,15 +7,16 @@
7
7
  "skillPath": "skills/flutter-pro-max",
8
8
  "filename": "SKILL.md"
9
9
  },
10
- "scriptPath": ".claude/skills/flutter-pro-max/scripts",
10
+ "scriptPath": "skills/flutter-pro-max/scripts/search.py",
11
11
  "frontmatter": {
12
12
  "name": "flutter-pro-max",
13
- "description": "Chuyên gia Flutter với kiến thức sâu về Clean Architecture, Performance Modern Dart 3"
13
+ "description": "Flutter design intelligence. Widgets, packages, patterns, architecture, performance optimization, accessibility, and UI/UX best practices. Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check Flutter code."
14
14
  },
15
15
  "sections": {
16
16
  "quickReference": true
17
17
  },
18
+ "template": "skill-content.md",
18
19
  "title": "Flutter Pro Max - Flutter Design Intelligence",
19
- "description": "Searchable database của Flutter widgets, packages, design patterns, architecture guidelines, best practices.",
20
+ "description": "Comprehensive Flutter development guide with searchable database of widgets, packages, design patterns, architecture guidelines, performance optimization, accessibility, and UI/UX best practices.",
20
21
  "skillOrWorkflow": "Skill"
21
22
  }
@@ -1,18 +1,22 @@
1
1
  {
2
2
  "platform": "codebuddy",
3
3
  "displayName": "CodeBuddy",
4
- "installType": "reference",
4
+ "installType": "full",
5
5
  "folderStructure": {
6
6
  "root": ".codebuddy",
7
- "skillPath": "commands",
8
- "filename": "flutter-pro-max.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 with searchable database"
9
14
  },
10
- "scriptPath": ".shared/flutter-pro-max/scripts",
11
- "frontmatter": null,
12
15
  "sections": {
13
16
  "quickReference": true
14
17
  },
15
- "title": "Flutter Pro Max - Flutter Design Intelligence",
16
- "description": "Searchable database của Flutter widgets, packages, design patterns, architecture guidelines, và best practices.",
17
- "skillOrWorkflow": "Command"
18
+ "template": "skill-content.md",
19
+ "title": "flutter-pro-max",
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"
18
22
  }
@@ -1,21 +1,22 @@
1
1
  {
2
2
  "platform": "codex",
3
- "displayName": "Codex CLI",
3
+ "displayName": "Codex",
4
4
  "installType": "full",
5
5
  "folderStructure": {
6
6
  "root": ".codex",
7
7
  "skillPath": "skills/flutter-pro-max",
8
8
  "filename": "SKILL.md"
9
9
  },
10
- "scriptPath": ".codex/skills/flutter-pro-max/scripts",
10
+ "scriptPath": "skills/flutter-pro-max/scripts/search.py",
11
11
  "frontmatter": {
12
12
  "name": "flutter-pro-max",
13
- "description": "Chuyên gia Flutter với kiến thức sâu về Clean Architecture, Performance và Modern Dart 3"
13
+ "description": "Flutter design intelligence with searchable database"
14
14
  },
15
15
  "sections": {
16
16
  "quickReference": true
17
17
  },
18
- "title": "Flutter Pro Max - Flutter Design Intelligence",
19
- "description": "Searchable database của Flutter widgets, packages, design patterns, architecture guidelines, và best practices.",
18
+ "template": "skill-content.md",
19
+ "title": "flutter-pro-max",
20
+ "description": "Comprehensive Flutter development guide with searchable database of widgets, packages, design patterns, architecture guidelines, performance optimization, accessibility, and UI/UX best practices.",
20
21
  "skillOrWorkflow": "Skill"
21
22
  }
@@ -7,15 +7,16 @@
7
7
  "skillPath": "skills/flutter-pro-max",
8
8
  "filename": "SKILL.md"
9
9
  },
10
- "scriptPath": ".continue/skills/flutter-pro-max/scripts",
10
+ "scriptPath": "skills/flutter-pro-max/scripts/search.py",
11
11
  "frontmatter": {
12
12
  "name": "flutter-pro-max",
13
- "description": "Chuyên gia Flutter với kiến thức sâu về Clean Architecture, Performance và Modern Dart 3"
13
+ "description": "Flutter design intelligence with searchable database"
14
14
  },
15
15
  "sections": {
16
16
  "quickReference": true
17
17
  },
18
- "title": "Flutter Pro Max - Flutter Design Intelligence",
19
- "description": "Searchable database của Flutter widgets, packages, design patterns, architecture guidelines, và best practices.",
18
+ "template": "skill-content.md",
19
+ "title": "flutter-pro-max",
20
+ "description": "Comprehensive Flutter development guide with searchable database of widgets, packages, design patterns, architecture guidelines, performance optimization, accessibility, and UI/UX best practices.",
20
21
  "skillOrWorkflow": "Skill"
21
22
  }
@@ -5,14 +5,15 @@
5
5
  "folderStructure": {
6
6
  "root": ".github",
7
7
  "skillPath": "prompts",
8
- "filename": "flutter-pro-max.md"
8
+ "filename": "flutter-pro-max.prompt.md"
9
9
  },
10
- "scriptPath": ".shared/flutter-pro-max/scripts",
10
+ "scriptPath": ".shared/flutter-pro-max/scripts/search.py",
11
11
  "frontmatter": null,
12
12
  "sections": {
13
- "quickReference": true
13
+ "quickReference": false
14
14
  },
15
- "title": "Flutter Pro Max - Flutter Design Intelligence",
16
- "description": "Searchable database của Flutter widgets, packages, design patterns, architecture guidelines, và best practices.",
17
- "skillOrWorkflow": "Prompt"
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
19
  }
@@ -7,12 +7,13 @@
7
7
  "skillPath": "commands",
8
8
  "filename": "flutter-pro-max.md"
9
9
  },
10
- "scriptPath": ".shared/flutter-pro-max/scripts",
10
+ "scriptPath": ".shared/flutter-pro-max/scripts/search.py",
11
11
  "frontmatter": null,
12
12
  "sections": {
13
- "quickReference": true
13
+ "quickReference": false
14
14
  },
15
- "title": "Flutter Pro Max - Flutter Design Intelligence",
16
- "description": "Searchable database của Flutter widgets, packages, design patterns, architecture guidelines, và best practices.",
17
- "skillOrWorkflow": "Command"
15
+ "template": "skill-content.md",
16
+ "title": "flutter-pro-max",
17
+ "description": "Comprehensive Flutter development guide with searchable database of widgets, packages, design patterns, architecture guidelines, performance optimization, accessibility, and UI/UX best practices.",
18
+ "skillOrWorkflow": "Workflow"
18
19
  }
@@ -1,21 +1,22 @@
1
1
  {
2
2
  "platform": "gemini",
3
3
  "displayName": "Gemini CLI",
4
- "installType": "reference",
4
+ "installType": "full",
5
5
  "folderStructure": {
6
6
  "root": ".gemini",
7
7
  "skillPath": "skills/flutter-pro-max",
8
8
  "filename": "SKILL.md"
9
9
  },
10
- "scriptPath": ".shared/flutter-pro-max/scripts",
10
+ "scriptPath": "skills/flutter-pro-max/scripts/search.py",
11
11
  "frontmatter": {
12
12
  "name": "flutter-pro-max",
13
- "description": "Chuyên gia Flutter với kiến thức sâu về Clean Architecture, Performance và Modern Dart 3"
13
+ "description": "Flutter design intelligence with searchable database"
14
14
  },
15
15
  "sections": {
16
16
  "quickReference": true
17
17
  },
18
+ "template": "skill-content.md",
18
19
  "title": "Flutter Pro Max - Flutter Design Intelligence",
19
- "description": "Searchable database của Flutter widgets, packages, design patterns, architecture guidelines, best practices.",
20
+ "description": "Comprehensive Flutter development guide with searchable database of widgets, packages, design patterns, architecture guidelines, performance optimization, accessibility, and UI/UX best practices.",
20
21
  "skillOrWorkflow": "Skill"
21
22
  }
@@ -0,0 +1,19 @@
1
+ {
2
+ "platform": "junie",
3
+ "displayName": "JetBrains AI (Junie)",
4
+ "installType": "full",
5
+ "folderStructure": {
6
+ "root": ".junie",
7
+ "skillPath": "skills/flutter-pro-max",
8
+ "filename": "guidelines.md"
9
+ },
10
+ "scriptPath": "skills/flutter-pro-max/scripts/search.py",
11
+ "frontmatter": null,
12
+ "sections": {
13
+ "quickReference": true
14
+ },
15
+ "template": "skill-content.md",
16
+ "title": "Flutter Pro Max - Flutter Design Intelligence",
17
+ "description": "Comprehensive Flutter development guide with searchable database of widgets, packages, design patterns, architecture guidelines, performance optimization, accessibility, and UI/UX best practices.",
18
+ "skillOrWorkflow": "Skill"
19
+ }
@@ -7,12 +7,13 @@
7
7
  "skillPath": "steering",
8
8
  "filename": "flutter-pro-max.md"
9
9
  },
10
- "scriptPath": ".shared/flutter-pro-max/scripts",
10
+ "scriptPath": ".shared/flutter-pro-max/scripts/search.py",
11
11
  "frontmatter": null,
12
12
  "sections": {
13
- "quickReference": true
13
+ "quickReference": false
14
14
  },
15
- "title": "Flutter Pro Max - Flutter Design Intelligence",
16
- "description": "Searchable database của Flutter widgets, packages, design patterns, architecture guidelines, và best practices.",
17
- "skillOrWorkflow": "Steering"
15
+ "template": "skill-content.md",
16
+ "title": "flutter-pro-max",
17
+ "description": "Comprehensive Flutter development guide with searchable database of widgets, packages, design patterns, architecture guidelines, performance optimization, accessibility, and UI/UX best practices.",
18
+ "skillOrWorkflow": "Workflow"
18
19
  }
@@ -1,21 +1,22 @@
1
1
  {
2
2
  "platform": "opencode",
3
3
  "displayName": "OpenCode",
4
- "installType": "reference",
4
+ "installType": "full",
5
5
  "folderStructure": {
6
6
  "root": ".opencode",
7
7
  "skillPath": "skills/flutter-pro-max",
8
8
  "filename": "SKILL.md"
9
9
  },
10
- "scriptPath": ".shared/flutter-pro-max/scripts",
10
+ "scriptPath": "skills/flutter-pro-max/scripts/search.py",
11
11
  "frontmatter": {
12
12
  "name": "flutter-pro-max",
13
- "description": "Chuyên gia Flutter với kiến thức sâu về Clean Architecture, Performance và Modern Dart 3"
13
+ "description": "Flutter design intelligence with searchable database"
14
14
  },
15
15
  "sections": {
16
16
  "quickReference": true
17
17
  },
18
- "title": "Flutter Pro Max - Flutter Design Intelligence",
19
- "description": "Searchable database của Flutter widgets, packages, design patterns, architecture guidelines, và best practices.",
18
+ "template": "skill-content.md",
19
+ "title": "flutter-pro-max",
20
+ "description": "Comprehensive Flutter development guide with searchable database of widgets, packages, design patterns, architecture guidelines, performance optimization, accessibility, and UI/UX best practices.",
20
21
  "skillOrWorkflow": "Skill"
21
22
  }
@@ -4,15 +4,19 @@
4
4
  "installType": "reference",
5
5
  "folderStructure": {
6
6
  "root": ".qoder",
7
- "skillPath": "rules",
8
- "filename": "flutter-pro-max.md"
7
+ "skillPath": "skills/flutter-pro-max",
8
+ "filename": "SKILL.md"
9
+ },
10
+ "scriptPath": ".shared/flutter-pro-max/scripts/search.py",
11
+ "frontmatter": {
12
+ "name": "flutter-pro-max",
13
+ "description": "Flutter design intelligence with searchable database"
9
14
  },
10
- "scriptPath": ".shared/flutter-pro-max/scripts",
11
- "frontmatter": null,
12
15
  "sections": {
13
- "quickReference": true
16
+ "quickReference": false
14
17
  },
15
- "title": "Flutter Pro Max - Flutter Design Intelligence",
16
- "description": "Searchable database của Flutter widgets, packages, design patterns, architecture guidelines, và best practices.",
17
- "skillOrWorkflow": "Rule"
18
+ "template": "skill-content.md",
19
+ "title": "flutter-pro-max",
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"
18
22
  }