Skip to content

Commit db31462

Browse files
author
GitLab CI
committed
chore: Release v0.4.5
Add MCP auto-fix and diagnostics
1 parent 9dbf9e0 commit db31462

File tree

7 files changed

+30
-6
lines changed

7 files changed

+30
-6
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## 0.4.5
2+
3+
**Add MCP auto-fix and diagnostics**
4+
5+
### Features
6+
- ✨ New `diagnose_project` MCP tool for comprehensive project diagnostics
7+
- 🔧 Auto-fix capability in `connect_app` and `scan_and_connect` tools
8+
- 📁 Optional `project_path` parameter for automatic configuration
9+
- 🛠️ Diagnostic shell script (`scripts/diagnose.sh`) for manual troubleshooting
10+
11+
### Improvements
12+
- 📊 Enhanced error logging with complete diagnostic output
13+
- 🔍 Automatic detection and repair of missing `flutter_skill` dependency
14+
- ⚙️ Automatic detection and repair of missing `FlutterSkillBinding` initialization
15+
- ✅ Backward compatible (all tools work without `project_path` parameter)
16+
17+
### Documentation
18+
- 📖 New AUTO_FIX_IMPROVEMENTS.md guide
19+
- ✅ New test_auto_fix.md testing checklist
20+
- 🔧 Updated TROUBLESHOOTING.md with auto-fix workflows
21+
- 🌍 README.md translated to English
22+
23+
---
24+
125
## 0.4.4
226

327
**Fix dart analyze errors**

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ flutter-skill launch /path/to/project
262262
1. Add dependency:
263263
```yaml
264264
dependencies:
265-
flutter_skill: ^0.4.4
265+
flutter_skill: ^0.4.5
266266
```
267267
268268
2. Initialize in main.dart:

intellij-plugin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
group = "com.aidashboad"
8-
version = "0.4.4"
8+
version = "0.4.5"
99

1010
repositories {
1111
mavenCentral()

intellij-plugin/src/main/resources/META-INF/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<idea-plugin>
22
<id>com.aidashboad.flutterskill</id>
33
<name>Flutter Skill - AI App Automation</name>
4-
<version>0.4.4</version>
4+
<version>0.4.5</version>
55
<vendor email="support@ai-dashboad.com" url="https://github.com/ai-dashboad/flutter-skill">ai-dashboad</vendor>
66

77
<description><![CDATA[

npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "flutter-skill-mcp",
3-
"version": "0.4.4",
3+
"version": "0.4.5",
44
"description": "MCP Server for Flutter app automation - Give your AI Agent eyes and hands inside your Flutter app",
55
"main": "index.js",
66
"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.4.4
3+
version: 0.4.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

vscode-extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "flutter-skill",
33
"displayName": "Flutter Skill - AI App Automation",
44
"description": "Give your AI Agent eyes and hands inside your Flutter app. Bridge between AI coding assistants (Claude Code, Cursor, Windsurf) and running Flutter applications with 25+ MCP tools for UI inspection, gestures, screenshots, and more.",
5-
"version": "0.4.4",
5+
"version": "0.4.5",
66
"publisher": "ai-dashboad",
77
"icon": "images/icon.png",
88
"repository": {

0 commit comments

Comments
 (0)