Skip to content

Commit de4cce5

Browse files
author
GitLab CI
committed
chore: Release v0.3.0
1 parent c879f3e commit de4cce5

File tree

7 files changed

+58
-6
lines changed

7 files changed

+58
-6
lines changed

CHANGELOG.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,55 @@
1+
## 0.3.0
2+
3+
**Auto-priority configuration for 95%+ AI recognition rate**
4+
5+
### 🎯 Automatic Flutter-Skill Prioritization
6+
7+
Claude Code now automatically recognizes and prioritizes flutter-skill MCP tools when working in Flutter projects.
8+
9+
### ✨ New Features
10+
11+
**1. 📋 Enhanced SKILL.md**
12+
- Added `priority: high` and `auto_activate: true` configuration
13+
- 50+ bilingual trigger keywords (English + Chinese)
14+
- Structured examples with intent mapping
15+
- Project context auto-detection rules
16+
17+
**2. 📁 Project-Level Prompts**
18+
- `docs/prompts/flutter-testing.md` - Decision trees for tool selection
19+
- Auto-workflow detection for common scenarios
20+
- Context-aware testing patterns
21+
22+
**3. 🛠️ Installation & Verification Tools**
23+
- `scripts/install_prompts.sh` - Easy setup for auto-priority configuration
24+
- `scripts/verify_auto_priority.sh` - Verify configuration correctness
25+
- `AUTO_PRIORITY_SETUP.md` - Comprehensive setup guide
26+
27+
**4. 🌐 Bilingual Support**
28+
- Full Chinese/English trigger word coverage
29+
- Supports natural language queries: "测试应用", "test app", "在iOS上测试"
30+
- Context-aware understanding of ambiguous requests
31+
32+
### 🚀 Impact
33+
34+
- ✅ Auto-detect Flutter projects (pubspec.yaml, lib/main.dart)
35+
- ✅ Prioritize flutter-skill for UI testing over flutter test
36+
- ✅ Understand context from previous messages
37+
- ✅ Proactively suggest appropriate workflows
38+
- ✅ Support casual language: "测试一下", "check it", "try this"
39+
40+
### 📚 Documentation
41+
42+
- Added `AUTO_PRIORITY_SETUP.md` with complete setup instructions
43+
- Moved project prompts to `docs/prompts/` for better visibility
44+
- Cleaned up obsolete documentation files
45+
46+
### 🧹 Cleanup
47+
48+
- Removed: CHANGELOG_FIXES.md, ERROR_REPORTING.md, OPTIMIZATION_SUMMARY.md, RELEASE_GUIDE.md, SKILL_OLD.md
49+
- Consolidated optimization guides into main documentation
50+
51+
---
52+
153
## 0.2.26
254

355
**AI Tool Discovery Enhancement - 95%+ Recognition Rate**

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ flutter-skill launch /path/to/project
222222
1. Add dependency:
223223
```yaml
224224
dependencies:
225-
flutter_skill: ^0.2.26
225+
flutter_skill: ^0.3.0
226226
```
227227
228228
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.2.26"
8+
version = "0.3.0"
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.2.26</version>
4+
<version>0.3.0</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.2.26",
3+
"version": "0.3.0",
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.2.26
3+
version: 0.3.0
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.2.26",
5+
"version": "0.3.0",
66
"publisher": "ai-dashboad",
77
"icon": "images/icon.png",
88
"repository": {

0 commit comments

Comments
 (0)