flutter-skill-mcp 0.4.4 → 0.4.5
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 +11 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,17 +13,17 @@
|
|
|
13
13
|
|
|
14
14
|
### 1. Install
|
|
15
15
|
|
|
16
|
-
**⚡
|
|
16
|
+
**⚡ One-Click Install (Recommended)**
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
19
|
# macOS/Linux
|
|
20
20
|
curl -fsSL https://raw.githubusercontent.com/ai-dashboad/flutter-skill/main/install.sh | bash
|
|
21
21
|
|
|
22
|
-
# Windows PowerShell (
|
|
22
|
+
# Windows PowerShell (Run as Administrator)
|
|
23
23
|
iwr https://raw.githubusercontent.com/ai-dashboad/flutter-skill/main/install.ps1 -useb | iex
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
-
|
|
26
|
+
**Or Manual Install:**
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
29
|
# npm (recommended - includes native binary for instant startup)
|
|
@@ -37,7 +37,7 @@ brew install flutter-skill
|
|
|
37
37
|
scoop bucket add flutter-skill https://github.com/ai-dashboad/scoop-flutter-skill
|
|
38
38
|
scoop install flutter-skill
|
|
39
39
|
|
|
40
|
-
# Dart (
|
|
40
|
+
# Dart (requires Flutter SDK)
|
|
41
41
|
dart pub global activate flutter_skill
|
|
42
42
|
|
|
43
43
|
# IDE Extensions
|
|
@@ -45,12 +45,12 @@ dart pub global activate flutter_skill
|
|
|
45
45
|
# - IntelliJ/Android Studio: Search "Flutter Skill" in Plugins
|
|
46
46
|
```
|
|
47
47
|
|
|
48
|
-
|
|
49
|
-
- ✅
|
|
50
|
-
- ✅
|
|
51
|
-
- ✅
|
|
52
|
-
- ✅
|
|
53
|
-
- ✅
|
|
48
|
+
**What does one-click install do?**
|
|
49
|
+
- ✅ Auto-detects best installation method (npm > Homebrew/Scoop > source)
|
|
50
|
+
- ✅ Auto-installs tool priority rules to `~/.claude/prompts/`
|
|
51
|
+
- ✅ Auto-configures PATH environment variable
|
|
52
|
+
- ✅ Resolves all dependencies and version issues
|
|
53
|
+
- ✅ Cross-platform support (macOS, Linux, Windows)
|
|
54
54
|
|
|
55
55
|
### 2. Configure AI Agent
|
|
56
56
|
|
|
@@ -262,7 +262,7 @@ flutter-skill launch /path/to/project
|
|
|
262
262
|
1. Add dependency:
|
|
263
263
|
```yaml
|
|
264
264
|
dependencies:
|
|
265
|
-
flutter_skill: ^0.4.
|
|
265
|
+
flutter_skill: ^0.4.5
|
|
266
266
|
```
|
|
267
267
|
|
|
268
268
|
2. Initialize in main.dart:
|