Skip to content

Commit a7f7de4

Browse files
author
GitLab CI
committed
release: v0.8.5 — serve command, 10-platform testing, bridge fixes
1 parent 7347a3b commit a7f7de4

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

packaging/npm/dart/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_skill_npm
22
description: Give your AI Agent eyes and hands inside your Flutter app.
3-
version: 0.8.4
3+
version: 0.8.5
44
publish_to: 'none'
55
homepage: https://github.com/ai-dashboad/flutter-skill
66
repository: https://github.com/ai-dashboad/flutter-skill

packaging/npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "flutter-skill",
33
"mcpName": "io.github.ai-dashboad/flutter-skill",
4-
"version": "0.8.4",
4+
"version": "0.8.5",
55
"description": "MCP Server for app automation - Give your AI Agent eyes and hands inside any app (Flutter, React, Web, Native)",
66
"main": "index.js",
77
"bin": {

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_skill
22
description: Give your AI Agent eyes and hands inside your Flutter app.
3-
version: 0.8.4
3+
version: 0.8.5
44
homepage: https://github.com/ai-dashboad/flutter-skill
55
repository: https://github.com/ai-dashboad/flutter-skill
66
# publish_to: 'none' # Remove this when ready to publish to pub.dev

test/e2e/full_mcp_test.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ const URL = args.url || null;
2424
const VM_SERVICE = args['vm-service'] || null;
2525
const PORT = parseInt(args.port || '18118');
2626

27-
const DART = '/Users/cw/development/flutter/bin/dart';
28-
const SERVER = '/Users/cw/development/flutter-skill/bin/flutter_skill.dart';
27+
const DART = '/tmp/fs-test4';
28+
const SERVER = '';
2929

3030
// ── Platform classification ────────────────────────────────────────────────
3131
const FLUTTER_PLATFORMS = new Set(['flutter-ios', 'flutter-web']);
@@ -301,7 +301,7 @@ async function main() {
301301
console.log(` Full MCP Test — ${PLATFORM} (${TOOLS.length} tool calls)`);
302302
console.log('════════════════════════════════════════════════════════════════\n');
303303

304-
const serverArgs = ['run', SERVER, 'server'];
304+
const serverArgs = ['server'];
305305
// For web-sdk platform, start bridge listener so browser SDK can connect
306306
if (PLATFORM === 'web-sdk') serverArgs.push('--bridge-port=18118');
307307
const proc = spawn(DART, serverArgs, {

0 commit comments

Comments
 (0)