@thiennc/flutter-skills 0.3.0 → 0.4.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 +28 -40
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# Flutter Skills
|
|
2
2
|
|
|
3
|
-
[](skills/)
|
|
4
4
|
[](https://github.com/thiennc-tesoglobal/flutter-skills/actions/workflows/validate-repository.yml)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
36 package-neutral Agent Skills for building, reviewing, testing, and shipping Flutter and Dart projects.
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
The skills help coding agents choose the right workflow, preserve the project's existing architecture and packages, and verify changes with evidence.
|
|
10
10
|
|
|
11
11
|
## Install
|
|
12
12
|
|
|
@@ -16,45 +16,48 @@ Choose skills interactively:
|
|
|
16
16
|
npx @thiennc/flutter-skills
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
Install a focused skill for Codex:
|
|
20
20
|
|
|
21
21
|
```sh
|
|
22
|
-
npx @thiennc/flutter-skills
|
|
23
|
-
--agent codex \
|
|
24
|
-
--skill flutter-app-workflow
|
|
22
|
+
npx @thiennc/flutter-skills --agent codex --skill flutter-app-workflow
|
|
25
23
|
```
|
|
26
24
|
|
|
27
|
-
|
|
25
|
+
Project installation is the default. Add `--global` to install for all projects.
|
|
26
|
+
|
|
27
|
+
You can also install directly from GitHub:
|
|
28
28
|
|
|
29
29
|
```sh
|
|
30
|
-
npx
|
|
31
|
-
--agent codex \
|
|
32
|
-
--skill flutter-ui-design
|
|
30
|
+
npx skills add thiennc-tesoglobal/flutter-skills
|
|
33
31
|
```
|
|
34
32
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
The direct GitHub installer remains available: `npx skills add thiennc-tesoglobal/flutter-skills`.
|
|
38
|
-
|
|
39
|
-
> In a regular terminal, the installer asks which skills and agents to use. Inside Codex, it may detect Codex and install non-interactively; pass `--skill` explicitly when you do not want all 34 skills.
|
|
33
|
+
## Plugins
|
|
40
34
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
Install the native Codex plugin when you want the complete catalog managed as one plugin:
|
|
35
|
+
Codex:
|
|
44
36
|
|
|
45
37
|
```sh
|
|
46
38
|
codex plugin marketplace add thiennc-tesoglobal/flutter-skills
|
|
47
39
|
codex plugin add flutter-skills@flutter-skills
|
|
48
40
|
```
|
|
49
41
|
|
|
50
|
-
|
|
42
|
+
Claude Code:
|
|
51
43
|
|
|
52
44
|
```sh
|
|
53
45
|
/plugin marketplace add thiennc-tesoglobal/flutter-skills
|
|
54
46
|
/plugin install flutter-core-skills@flutter-skills
|
|
55
47
|
```
|
|
56
48
|
|
|
57
|
-
|
|
49
|
+
Claude bundles: `all-flutter-skills`, `flutter-core-skills`, `flutter-ui-skills`, and `flutter-engineering-skills`.
|
|
50
|
+
|
|
51
|
+
## Use
|
|
52
|
+
|
|
53
|
+
Name a skill when the task is specific:
|
|
54
|
+
|
|
55
|
+
```text
|
|
56
|
+
Use $flutter-openapi-client to read this Swagger contract and generate
|
|
57
|
+
only the Customer APIs using the project's existing networking stack.
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
For broader work, start with `$flutter-app-workflow`. Agents load only the selected skill and relevant references, not the full catalog.
|
|
58
61
|
|
|
59
62
|
## Catalog
|
|
60
63
|
|
|
@@ -64,30 +67,15 @@ Available bundles: `all-flutter-skills`, `flutter-core-skills`, `flutter-ui-skil
|
|
|
64
67
|
| Dart | `dart-language`, `dart-concurrency` |
|
|
65
68
|
| Architecture | `flutter-architecture`, `flutter-state-management` |
|
|
66
69
|
| UI | `flutter-ui-design`, `flutter-figma-workflow`, `flutter-visual-effects`, `flutter-ui-patterns`, `flutter-responsive-layout`, `flutter-animation`, `flutter-navigation` |
|
|
67
|
-
| Data & AI | `flutter-networking`, `flutter-persistence`, `flutter-ai-integration` |
|
|
70
|
+
| Data & AI | `flutter-networking`, `flutter-openapi-client`, `flutter-persistence`, `flutter-ai-integration` |
|
|
68
71
|
| Identity & product | `flutter-authentication`, `flutter-in-app-purchases`, `flutter-product-analytics` |
|
|
69
72
|
| Quality | `flutter-code-review`, `flutter-security`, `flutter-testing`, `flutter-runtime-debugging`, `flutter-performance`, `flutter-observability`, `flutter-accessibility`, `flutter-localization` |
|
|
70
|
-
| Platform & packages | `flutter-background-execution`, `flutter-platform-integration`, `flutter-package-development`, `flutter-notifications` |
|
|
71
|
-
|
|
72
|
-
## Use
|
|
73
|
-
|
|
74
|
-
Codex and compatible agents first see skill names and descriptions, then load only the relevant `SKILL.md` and references.
|
|
75
|
-
|
|
76
|
-
```text
|
|
77
|
-
Use $flutter-app-workflow to build a polished offline-first todo app,
|
|
78
|
-
preserve the existing architecture, add tests, and verify it on Android.
|
|
79
|
-
```
|
|
80
|
-
|
|
81
|
-
For a focused task, name the specialist directly or let the agent route from the request. Installing every skill does not load every skill into the task context.
|
|
73
|
+
| Platform & packages | `flutter-background-execution`, `flutter-platform-integration`, `flutter-package-development`, `flutter-notifications`, `flutter-webview` |
|
|
82
74
|
|
|
83
75
|
## Quality
|
|
84
76
|
|
|
85
|
-
The catalog contains **
|
|
86
|
-
|
|
87
|
-
Representative baseline-versus-skill benchmark results and the reproducible profile are published in [benchmarks](benchmarks/README.md). They are a transparent sample, not a claim that one model or a small case set proves every workflow.
|
|
88
|
-
|
|
89
|
-
See [CONTRIBUTING.md](CONTRIBUTING.md) for validation and contribution instructions, and [docs/SOURCES.md](docs/SOURCES.md) for the source policy.
|
|
77
|
+
The catalog contains **36 skills**, **158 behavior-focused evaluation cases**, and **54 cross-catalog routing cases**. See [benchmarks](benchmarks/README.md) for measured examples and [CONTRIBUTING.md](CONTRIBUTING.md) for validation and contribution rules.
|
|
90
78
|
|
|
91
79
|
## License
|
|
92
80
|
|
|
93
|
-
BSD 3-Clause. Flutter and Dart are trademarks of Google LLC. This
|
|
81
|
+
BSD 3-Clause. Flutter and Dart are trademarks of Google LLC. This project is independent and is not endorsed by Google or the Flutter team.
|