@leejungkiin/awkit 1.5.5 → 1.5.6

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 (108) hide show
  1. package/bin/awk.js +188 -8
  2. package/core/GEMINI.md +15 -7
  3. package/core/work-modes.json +45 -0
  4. package/package.json +1 -1
  5. package/skill-packs/cocos2d/pack.json +8 -0
  6. package/skill-packs/cocos2d/skills/cocos2d-x/LICENSE.txt +8 -0
  7. package/skill-packs/cocos2d/skills/cocos2d-x/SKILL.md +168 -0
  8. package/skill-packs/cocos2d/skills/cocos2d-x/examples/core/action.md +278 -0
  9. package/skill-packs/cocos2d/skills/cocos2d-x/examples/core/animation.md +220 -0
  10. package/skill-packs/cocos2d/skills/cocos2d-x/examples/core/event.md +133 -0
  11. package/skill-packs/cocos2d/skills/cocos2d-x/examples/core/input.md +291 -0
  12. package/skill-packs/cocos2d/skills/cocos2d-x/examples/core/label.md +184 -0
  13. package/skill-packs/cocos2d/skills/cocos2d-x/examples/core/node-scene.md +212 -0
  14. package/skill-packs/cocos2d/skills/cocos2d-x/examples/core/scene.md +228 -0
  15. package/skill-packs/cocos2d/skills/cocos2d-x/examples/core/sprite.md +206 -0
  16. package/skill-packs/cocos2d/skills/cocos2d-x/examples/core/texture.md +186 -0
  17. package/skill-packs/cocos2d/skills/cocos2d-x/examples/getting-started/about-engine.md +53 -0
  18. package/skill-packs/cocos2d/skills/cocos2d-x/examples/getting-started/installation.md +203 -0
  19. package/skill-packs/cocos2d/skills/cocos2d-x/examples/getting-started/quick-start.md +134 -0
  20. package/skill-packs/electron/pack.json +9 -0
  21. package/skill-packs/electron/skills/electron/LICENSE.txt +202 -0
  22. package/skill-packs/electron/skills/electron/SKILL.md +160 -0
  23. package/skill-packs/electron/skills/electron/api/app.md +83 -0
  24. package/skill-packs/electron/skills/electron/api/browser-window.md +84 -0
  25. package/skill-packs/electron/skills/electron/examples/advanced/packaging.md +140 -0
  26. package/skill-packs/electron/skills/electron/examples/api/browser-window.md +182 -0
  27. package/skill-packs/electron/skills/electron/examples/api/menu.md +187 -0
  28. package/skill-packs/electron/skills/electron/examples/getting-started/installation.md +88 -0
  29. package/skill-packs/electron/skills/electron/examples/getting-started/quick-start.md +104 -0
  30. package/skill-packs/electron/skills/electron/examples/processes/ipc-communication.md +140 -0
  31. package/skill-packs/electron/skills/electron/examples/processes/main-process.md +121 -0
  32. package/skill-packs/electron/skills/electron/templates/main-process.md +105 -0
  33. package/skill-packs/electron/skills/electron/templates/preload-script.md +84 -0
  34. package/skill-packs/electron/skills/electron-egg/LICENSE.txt +202 -0
  35. package/skill-packs/electron/skills/electron-egg/SKILL.md +154 -0
  36. package/skill-packs/electron/skills/electron-egg/api/config-api.md +62 -0
  37. package/skill-packs/electron/skills/electron-egg/api/ipc-api.md +55 -0
  38. package/skill-packs/electron/skills/electron-egg/api/main-api.md +54 -0
  39. package/skill-packs/electron/skills/electron-egg/api/renderer-api.md +62 -0
  40. package/skill-packs/electron/skills/electron-egg/api/window-api.md +64 -0
  41. package/skill-packs/electron/skills/electron-egg/examples/features/ipc-communication.md +84 -0
  42. package/skill-packs/electron/skills/electron-egg/examples/features/main-process.md +89 -0
  43. package/skill-packs/electron/skills/electron-egg/examples/features/renderer-process.md +74 -0
  44. package/skill-packs/electron/skills/electron-egg/examples/guide/build.md +77 -0
  45. package/skill-packs/electron/skills/electron-egg/examples/guide/configuration.md +88 -0
  46. package/skill-packs/electron/skills/electron-egg/examples/guide/installation.md +66 -0
  47. package/skill-packs/electron/skills/electron-egg/examples/guide/intro.md +47 -0
  48. package/skill-packs/electron/skills/electron-egg/examples/guide/project-structure.md +73 -0
  49. package/skill-packs/electron/skills/electron-egg/examples/guide/quick-start.md +78 -0
  50. package/skill-packs/electron/skills/electron-egg/templates/configuration.md +63 -0
  51. package/skill-packs/electron/skills/electron-egg/templates/installation.md +42 -0
  52. package/skill-packs/electron/skills/electron-egg/templates/project-setup.md +75 -0
  53. package/skill-packs/flutter/pack.json +9 -0
  54. package/skill-packs/flutter/skills/flutter/LICENSE.txt +202 -0
  55. package/skill-packs/flutter/skills/flutter/SKILL.md +127 -0
  56. package/skill-packs/flutter/skills/flutter-project-creater/LICENSE.txt +202 -0
  57. package/skill-packs/flutter/skills/flutter-project-creater/SKILL.md +106 -0
  58. package/skill-packs/threejs/pack.json +25 -0
  59. package/skill-packs/threejs/skills/README.md +95 -0
  60. package/skill-packs/threejs/skills/threejs-animation/SKILL.md +86 -0
  61. package/skill-packs/threejs/skills/threejs-animation/examples/workflow-mixer-action.md +20 -0
  62. package/skill-packs/threejs/skills/threejs-animation/references/official-sections.md +19 -0
  63. package/skill-packs/threejs/skills/threejs-audio/SKILL.md +112 -0
  64. package/skill-packs/threejs/skills/threejs-audio/examples/workflow-positional-audio.md +15 -0
  65. package/skill-packs/threejs/skills/threejs-audio/references/official-sections.md +16 -0
  66. package/skill-packs/threejs/skills/threejs-camera/SKILL.md +96 -0
  67. package/skill-packs/threejs/skills/threejs-camera/examples/workflow-perspective-resize.md +13 -0
  68. package/skill-packs/threejs/skills/threejs-controls/SKILL.md +101 -0
  69. package/skill-packs/threejs/skills/threejs-controls/examples/workflow-orbit-damping.md +15 -0
  70. package/skill-packs/threejs/skills/threejs-dev-setup/SKILL.md +102 -0
  71. package/skill-packs/threejs/skills/threejs-dev-setup/examples/workflow-scaffold.md +24 -0
  72. package/skill-packs/threejs/skills/threejs-geometries/SKILL.md +108 -0
  73. package/skill-packs/threejs/skills/threejs-geometries/examples/workflow-extrude-shape.md +13 -0
  74. package/skill-packs/threejs/skills/threejs-helpers/SKILL.md +103 -0
  75. package/skill-packs/threejs/skills/threejs-helpers/examples/workflow-light-camera-helpers.md +13 -0
  76. package/skill-packs/threejs/skills/threejs-lights/SKILL.md +103 -0
  77. package/skill-packs/threejs/skills/threejs-lights/examples/workflow-directional-shadow.md +17 -0
  78. package/skill-packs/threejs/skills/threejs-loaders/SKILL.md +89 -0
  79. package/skill-packs/threejs/skills/threejs-loaders/examples/workflow-gltf-draco.md +22 -0
  80. package/skill-packs/threejs/skills/threejs-loaders/references/official-sections.md +27 -0
  81. package/skill-packs/threejs/skills/threejs-materials/SKILL.md +102 -0
  82. package/skill-packs/threejs/skills/threejs-materials/examples/workflow-pbr-transparent.md +15 -0
  83. package/skill-packs/threejs/skills/threejs-math/SKILL.md +102 -0
  84. package/skill-packs/threejs/skills/threejs-math/examples/workflow-ray-aabb.md +11 -0
  85. package/skill-packs/threejs/skills/threejs-node-tsl/SKILL.md +83 -0
  86. package/skill-packs/threejs/skills/threejs-node-tsl/examples/workflow-tsl-entry.md +13 -0
  87. package/skill-packs/threejs/skills/threejs-node-tsl/references/official-links.md +8 -0
  88. package/skill-packs/threejs/skills/threejs-node-tsl/references/tsl-vs-classic.md +23 -0
  89. package/skill-packs/threejs/skills/threejs-objects/SKILL.md +111 -0
  90. package/skill-packs/threejs/skills/threejs-objects/examples/workflow-raycaster-pick.md +17 -0
  91. package/skill-packs/threejs/skills/threejs-postprocessing/SKILL.md +116 -0
  92. package/skill-packs/threejs/skills/threejs-postprocessing/examples/workflow-composer-bloom.md +15 -0
  93. package/skill-packs/threejs/skills/threejs-renderers/SKILL.md +91 -0
  94. package/skill-packs/threejs/skills/threejs-renderers/examples/workflow-renderer-resize.md +21 -0
  95. package/skill-packs/threejs/skills/threejs-renderers/references/official-sections.md +14 -0
  96. package/skill-packs/threejs/skills/threejs-scenes/SKILL.md +90 -0
  97. package/skill-packs/threejs/skills/threejs-scenes/examples/workflow-fog-background.md +13 -0
  98. package/skill-packs/threejs/skills/threejs-textures/SKILL.md +83 -0
  99. package/skill-packs/threejs/skills/threejs-textures/examples/workflow-pmrem-env.md +19 -0
  100. package/skill-packs/threejs/skills/threejs-webxr/SKILL.md +104 -0
  101. package/skill-packs/threejs/skills/threejs-webxr/examples/workflow-xr-button.md +15 -0
  102. package/skills/telegram-notify/SKILL.md +1 -0
  103. package/skills/trello-sync/SKILL.md +7 -0
  104. package/templates/project-identity/android.json +26 -1
  105. package/templates/project-identity/backend-nestjs.json +26 -1
  106. package/templates/project-identity/expo.json +26 -1
  107. package/templates/project-identity/ios.json +26 -1
  108. package/templates/project-identity/web-nextjs.json +26 -1
@@ -0,0 +1,73 @@
1
+ # Project Structure
2
+
3
+ **官方文档**: https://www.kaka996.com/,
4
+
5
+
6
+ ## Instructions
7
+
8
+ This example explains Electron EGG project structure.
9
+
10
+ ### Key Concepts
11
+
12
+ - Directory structure
13
+ - File organization
14
+ - Configuration files
15
+ - Process separation
16
+
17
+ ### Example: Directory Structure
18
+
19
+ ```
20
+ project/
21
+ ├── main/ # Main process
22
+ │ ├── index.js # Main entry
23
+ │ ├── window/ # Window management
24
+ │ ├── menu/ # Menu
25
+ │ └── tray/ # System tray
26
+ ├── renderer/ # Renderer process
27
+ │ ├── src/ # Source code
28
+ │ ├── public/ # Static files
29
+ │ └── index.html # Entry HTML
30
+ ├── config/ # Configuration
31
+ │ ├── config.default.js # Default config
32
+ │ └── config.prod.js # Production config
33
+ ├── build/ # Build scripts
34
+ ├── public/ # Public resources
35
+ └── package.json
36
+ ```
37
+
38
+ ### Example: Main Process Files
39
+
40
+ ```javascript
41
+ // main/index.js
42
+ const { Application } = require('electron-egg')
43
+
44
+ const app = new Application({
45
+ // Configuration
46
+ })
47
+
48
+ app.start()
49
+ ```
50
+
51
+ ### Example: Renderer Process Files
52
+
53
+ ```html
54
+ <!-- renderer/index.html -->
55
+ <!DOCTYPE html>
56
+ <html>
57
+ <head>
58
+ <title>My App</title>
59
+ </head>
60
+ <body>
61
+ <div id="app"></div>
62
+ <script src="./src/index.js"></script>
63
+ </body>
64
+ </html>
65
+ ```
66
+
67
+ ### Key Points
68
+
69
+ - Separate main and renderer processes
70
+ - Organize files by process
71
+ - Configuration in config directory
72
+ - Build scripts in build directory
73
+ - Follow project structure conventions
@@ -0,0 +1,78 @@
1
+ # Quick Start
2
+
3
+ **官方文档**: https://www.kaka996.com/,
4
+
5
+
6
+ ## Instructions
7
+
8
+ This example provides a quick start guide for Electron EGG.
9
+
10
+ ### Key Concepts
11
+
12
+ - Project structure
13
+ - Start development
14
+ - Build application
15
+ - Basic configuration
16
+
17
+ ### Example: Project Structure
18
+
19
+ ```
20
+ electron-egg/
21
+ ├── main/ # Main process
22
+ ├── renderer/ # Renderer process
23
+ ├── public/ # Static resources
24
+ ├── config/ # Configuration files
25
+ ├── build/ # Build scripts
26
+ └── package.json
27
+ ```
28
+
29
+ ### Example: Start Development
30
+
31
+ ```bash
32
+ # Start development server
33
+ npm run dev
34
+
35
+ # Or using yarn
36
+ yarn dev
37
+
38
+ # Or using pnpm
39
+ pnpm dev
40
+ ```
41
+
42
+ ### Example: Build Application
43
+
44
+ ```bash
45
+ # Build for production
46
+ npm run build
47
+
48
+ # Or using yarn
49
+ yarn build
50
+
51
+ # Or using pnpm
52
+ pnpm build
53
+ ```
54
+
55
+ ### Example: Basic Configuration
56
+
57
+ ```javascript
58
+ // config/config.default.js
59
+ module.exports = {
60
+ appInfo: {
61
+ name: 'my-app',
62
+ baseDir: __dirname,
63
+ env: 'local'
64
+ },
65
+ mainWindow: {
66
+ width: 1200,
67
+ height: 800
68
+ }
69
+ }
70
+ ```
71
+
72
+ ### Key Points
73
+
74
+ - Use npm run dev for development
75
+ - Use npm run build for production
76
+ - Configure in config files
77
+ - Follow project structure
78
+ - Support hot reload in development
@@ -0,0 +1,63 @@
1
+ # Configuration Templates
2
+
3
+ ## Basic Configuration
4
+
5
+ ```javascript
6
+ // config/config.default.js
7
+ module.exports = {
8
+ appInfo: {
9
+ name: 'my-app',
10
+ baseDir: __dirname,
11
+ env: 'local'
12
+ }
13
+ }
14
+ ```
15
+
16
+ ## Window Configuration
17
+
18
+ ```javascript
19
+ module.exports = {
20
+ mainWindow: {
21
+ width: 1200,
22
+ height: 800,
23
+ minWidth: 800,
24
+ minHeight: 600,
25
+ title: 'My App',
26
+ frame: true,
27
+ transparent: false
28
+ }
29
+ }
30
+ ```
31
+
32
+ ## Plugin Configuration
33
+
34
+ ```javascript
35
+ module.exports = {
36
+ addons: {
37
+ tray: {
38
+ enable: true
39
+ },
40
+ security: {
41
+ enable: true
42
+ },
43
+ autoUpdater: {
44
+ enable: false
45
+ }
46
+ }
47
+ }
48
+ ```
49
+
50
+ ## Environment-Specific Configuration
51
+
52
+ ```javascript
53
+ // config/config.prod.js
54
+ module.exports = {
55
+ appInfo: {
56
+ env: 'prod'
57
+ },
58
+ mainWindow: {
59
+ width: 1400,
60
+ height: 900
61
+ }
62
+ }
63
+ ```
@@ -0,0 +1,42 @@
1
+ # Installation Templates
2
+
3
+ ## npm Installation
4
+
5
+ ```bash
6
+ npm install electron-egg
7
+ ```
8
+
9
+ ## Project Initialization
10
+
11
+ ```bash
12
+ # Clone demo repository
13
+ git clone https://gitee.com/dromara/electron-egg.git
14
+
15
+ # Install dependencies
16
+ cd electron-egg
17
+ npm install
18
+ ```
19
+
20
+ ## Environment Setup
21
+
22
+ ```bash
23
+ # Check Node.js version
24
+ node --version # Should be >= 14.x
25
+
26
+ # Install dependencies
27
+ npm install
28
+ ```
29
+
30
+ ## Complete Setup
31
+
32
+ ```bash
33
+ # 1. Clone repository
34
+ git clone https://gitee.com/dromara/electron-egg.git
35
+
36
+ # 2. Install dependencies
37
+ cd electron-egg
38
+ npm install
39
+
40
+ # 3. Start development
41
+ npm run dev
42
+ ```
@@ -0,0 +1,75 @@
1
+ # Project Setup Templates
2
+
3
+ ## Basic Project Structure
4
+
5
+ ```
6
+ project/
7
+ ├── main/ # Main process
8
+ │ ├── index.js
9
+ │ └── window/
10
+ ├── renderer/ # Renderer process
11
+ │ ├── src/
12
+ │ └── index.html
13
+ ├── config/ # Configuration
14
+ │ └── config.default.js
15
+ ├── build/ # Build scripts
16
+ └── package.json
17
+ ```
18
+
19
+ ## Main Process Entry
20
+
21
+ ```javascript
22
+ // main/index.js
23
+ const { Application } = require('electron-egg')
24
+
25
+ const app = new Application({
26
+ // Configuration
27
+ })
28
+
29
+ app.start()
30
+ ```
31
+
32
+ ## Renderer Process Entry
33
+
34
+ ```html
35
+ <!-- renderer/index.html -->
36
+ <!DOCTYPE html>
37
+ <html>
38
+ <head>
39
+ <title>My App</title>
40
+ </head>
41
+ <body>
42
+ <div id="app"></div>
43
+ <script src="./src/index.js"></script>
44
+ </body>
45
+ </html>
46
+ ```
47
+
48
+ ## Configuration File
49
+
50
+ ```javascript
51
+ // config/config.default.js
52
+ module.exports = {
53
+ appInfo: {
54
+ name: 'my-app',
55
+ baseDir: __dirname,
56
+ env: 'local'
57
+ },
58
+ mainWindow: {
59
+ width: 1200,
60
+ height: 800
61
+ }
62
+ }
63
+ ```
64
+
65
+ ## package.json Scripts
66
+
67
+ ```json
68
+ {
69
+ "scripts": {
70
+ "dev": "electron-egg dev",
71
+ "build": "electron-egg build",
72
+ "start": "electron-egg start"
73
+ }
74
+ }
75
+ ```
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "flutter",
3
+ "auto_install": false,
4
+ "description": "Cross-platform mobile/UI development using Flutter",
5
+ "skills": [
6
+ "flutter",
7
+ "flutter-project-creater"
8
+ ]
9
+ }
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1,127 @@
1
+ ---
2
+ name: flutter
3
+ description: "Provides comprehensive guidance for Flutter development including widgets, state management, navigation, platform channels, and mobile app development. Use when the user asks about Flutter, needs to create Flutter applications, implement Flutter widgets, or work with Flutter features."
4
+ license: Complete terms in LICENSE.txt
5
+ ---
6
+
7
+ ## When to use this skill
8
+
9
+ Use this skill whenever the user wants to:
10
+ - Build cross-platform mobile, web, or desktop applications with Flutter
11
+ - Create and compose Flutter widgets (StatelessWidget, StatefulWidget)
12
+ - Implement state management (setState, Provider, Riverpod, Bloc)
13
+ - Set up navigation and routing in Flutter apps
14
+ - Configure themes, assets, and platform-specific settings
15
+ - Use platform channels for native interop
16
+ - Optimize Flutter app performance (const widgets, keys, build methods)
17
+ - Debug and hot-reload Flutter applications
18
+
19
+ ## How to use this skill
20
+
21
+ ### Workflow
22
+
23
+ 1. **Identify the request area** (widget creation, state management, navigation, platform integration, etc.)
24
+ 2. **Apply Flutter/Dart best practices** following official guidelines
25
+ 3. **Generate Dart code** using Flutter widget conventions
26
+ 4. **Verify** the widget tree is correct and state management is properly scoped
27
+
28
+ ### 1. Project Setup
29
+
30
+ ```bash
31
+ # Create a new Flutter project
32
+ flutter create my_app --org com.example --platforms android,ios
33
+
34
+ # Run the app with hot reload
35
+ flutter run
36
+ ```
37
+
38
+ ### 2. StatelessWidget Example
39
+
40
+ ```dart
41
+ import 'package:flutter/material.dart';
42
+
43
+ class UserCard extends StatelessWidget {
44
+ final String name;
45
+ final String email;
46
+
47
+ const UserCard({super.key, required this.name, required this.email});
48
+
49
+ @override
50
+ Widget build(BuildContext context) {
51
+ return Card(
52
+ child: ListTile(
53
+ leading: const Icon(Icons.person),
54
+ title: Text(name),
55
+ subtitle: Text(email),
56
+ ),
57
+ );
58
+ }
59
+ }
60
+ ```
61
+
62
+ ### 3. StatefulWidget with State Management
63
+
64
+ ```dart
65
+ import 'package:flutter/material.dart';
66
+
67
+ class CounterPage extends StatefulWidget {
68
+ const CounterPage({super.key});
69
+
70
+ @override
71
+ State<CounterPage> createState() => _CounterPageState();
72
+ }
73
+
74
+ class _CounterPageState extends State<CounterPage> {
75
+ int _count = 0;
76
+
77
+ void _increment() {
78
+ setState(() => _count++);
79
+ }
80
+
81
+ @override
82
+ Widget build(BuildContext context) {
83
+ return Scaffold(
84
+ appBar: AppBar(title: const Text('Counter')),
85
+ body: Center(child: Text('Count: $_count', style: Theme.of(context).textTheme.headlineMedium)),
86
+ floatingActionButton: FloatingActionButton(
87
+ onPressed: _increment,
88
+ child: const Icon(Icons.add),
89
+ ),
90
+ );
91
+ }
92
+ }
93
+ ```
94
+
95
+ ### 4. Navigation
96
+
97
+ ```dart
98
+ // Named routes
99
+ MaterialApp(
100
+ routes: {
101
+ '/': (context) => const HomePage(),
102
+ '/details': (context) => const DetailsPage(),
103
+ },
104
+ );
105
+
106
+ // Programmatic navigation
107
+ Navigator.pushNamed(context, '/details');
108
+ ```
109
+
110
+ ## Best Practices
111
+
112
+ - Use `const` constructors wherever possible to optimize rebuilds
113
+ - Split large widgets into smaller, reusable components
114
+ - Use `Key` on list items for correct reconciliation
115
+ - Choose a consistent state management approach (Provider/Riverpod for most apps)
116
+ - Test on both Android and iOS; handle platform differences explicitly
117
+ - Follow the Flutter performance best practices (avoid expensive builds in `build()`)
118
+
119
+ ## Resources
120
+
121
+ - Official documentation: https://docs.flutter.dev/
122
+ - Widget catalog: https://docs.flutter.dev/ui/widgets
123
+ - Pub.dev packages: https://pub.dev/
124
+
125
+ ## Keywords
126
+
127
+ flutter, Dart, cross-platform, Widget, StatelessWidget, StatefulWidget, Provider, Riverpod, navigation, hot reload, mobile development, Material Design, Cupertino