@bdayadev/flutter-ultra-mcp 1.9.2 → 1.9.4
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.
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
{
|
|
11
11
|
"name": "flutter",
|
|
12
12
|
"description": "Durable cross-platform Flutter automation via 8 specialized MCP servers, in-app mixin binding, and an optional DevTools panel. Replaces marionette_mcp and the official dart mcp-server for Claude Code.",
|
|
13
|
-
"version": "1.9.
|
|
13
|
+
"version": "1.9.4",
|
|
14
14
|
"author": {
|
|
15
15
|
"name": "Bdaya-Dev",
|
|
16
16
|
"url": "https://github.com/Bdaya-Dev"
|
|
@@ -23,5 +23,5 @@
|
|
|
23
23
|
"tags": ["flutter", "dart", "mcp", "testing", "automation", "patrol", "cross-platform"]
|
|
24
24
|
}
|
|
25
25
|
],
|
|
26
|
-
"version": "1.9.
|
|
26
|
+
"version": "1.9.4"
|
|
27
27
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
|
|
3
3
|
"name": "flutter",
|
|
4
|
-
"version": "1.9.
|
|
4
|
+
"version": "1.9.4",
|
|
5
5
|
"description": "Durable cross-platform Flutter automation via 8 specialized MCP servers, in-app mixin binding, and an optional DevTools panel. Replaces marionette_mcp and the official dart mcp-server for Claude Code.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Bdaya-Dev",
|
package/.mcp.json
CHANGED
|
@@ -27,7 +27,8 @@
|
|
|
27
27
|
"args": ["${CLAUDE_PLUGIN_ROOT}/packages/flutter-ultra-browser/dist/bin.cjs"],
|
|
28
28
|
"env": {
|
|
29
29
|
"PLAYWRIGHT_BROWSERS_PATH": "${CLAUDE_PLUGIN_DATA}/browsers",
|
|
30
|
-
"FLUTTER_ULTRA_STATE_DIR": "${CLAUDE_PLUGIN_DATA}/state"
|
|
30
|
+
"FLUTTER_ULTRA_STATE_DIR": "${CLAUDE_PLUGIN_DATA}/state",
|
|
31
|
+
"NODE_PATH": "${CLAUDE_PLUGIN_DATA}/node_modules"
|
|
31
32
|
}
|
|
32
33
|
},
|
|
33
34
|
"flutter-ultra-native-mobile": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bdayadev/flutter-ultra-mcp",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.4",
|
|
4
4
|
"description": "Flutter Ultra MCP plugin monorepo — 8 MCP servers + ultra_flutter Dart packages + skills for Claude Code.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/Bdaya-Dev/flutter-ultra-mcp",
|
package/skills/setup/SKILL.md
CHANGED
|
@@ -5,7 +5,7 @@ description: One-command setup of the flutter-ultra-mcp plugin in an existing Fl
|
|
|
5
5
|
|
|
6
6
|
# Plugin Setup
|
|
7
7
|
|
|
8
|
-
Expected end state: `UltraFlutterBinding` initialized in the app entry point, `ultra_flutter` in `
|
|
8
|
+
Expected end state: `UltraFlutterBinding` initialized in the app entry point, `ultra_flutter` in `dependencies`, patrol fork overridden if needed, and a smoke launch confirming the VM Service attaches correctly.
|
|
9
9
|
|
|
10
10
|
## Workflow
|
|
11
11
|
|
|
@@ -17,10 +17,10 @@ Expected end state: `UltraFlutterBinding` initialized in the app entry point, `u
|
|
|
17
17
|
- `mcp__plugin_flutter_flutter-ultra-build__list_dart_defines` — discover required dart-defines for launch.
|
|
18
18
|
- `mcp__plugin_flutter_flutter-ultra-build__list_flavors` — check for flavor configuration.
|
|
19
19
|
|
|
20
|
-
### 2. Add `ultra_flutter` to
|
|
20
|
+
### 2. Add `ultra_flutter` to dependencies
|
|
21
21
|
|
|
22
|
-
- `mcp__plugin_flutter_flutter-ultra-build__pub_add` with `package: ultra_flutter
|
|
23
|
-
- If it fails (not on pub.dev), use `mcp__plugin_flutter_flutter-ultra-build__pubspec_overrides_set` to point to the bundled path, add `ultra_flutter: any` under `
|
|
22
|
+
- `mcp__plugin_flutter_flutter-ultra-build__pub_add` with `package: ultra_flutter` (NOT dev — it runs in the app process, guarded by `kDebugMode`).
|
|
23
|
+
- If it fails (not on pub.dev), use `mcp__plugin_flutter_flutter-ultra-build__pubspec_overrides_set` to point to the bundled path, add `ultra_flutter: any` under `dependencies` manually, then `mcp__plugin_flutter_flutter-ultra-build__pub_get`.
|
|
24
24
|
|
|
25
25
|
### 3. Patch the app entry point
|
|
26
26
|
|
|
@@ -130,7 +130,7 @@ User: "Set up flutter-ultra on my app."
|
|
|
130
130
|
1. flutter_doctor -> all checks pass
|
|
131
131
|
2. project_info -> entryPoints: ["lib/main.dart"], hasSentry: false, hasPatrol: false
|
|
132
132
|
3. list_devices -> chrome, windows
|
|
133
|
-
4. pub_add ultra_flutter
|
|
133
|
+
4. pub_add ultra_flutter -> added to dependencies
|
|
134
134
|
5. Edit lib/main.dart -> add UltraFlutterBinding.ensureInitialized()
|
|
135
135
|
6. pub_get -> resolved
|
|
136
136
|
7. analyze -> 0 errors
|