flutter-pro-max-cli 2.3.2 → 2.3.3
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/assets/scripts/core.py
CHANGED
|
@@ -23,7 +23,7 @@ def _get_data_dir() -> Path:
|
|
|
23
23
|
script_dir.parent.parent / "data",
|
|
24
24
|
# When running from root/scripts/
|
|
25
25
|
script_dir.parent / ".shared" / "data",
|
|
26
|
-
# When running from .
|
|
26
|
+
# When running from .agents/workflows/scripts/ (nested 3 levels deep)
|
|
27
27
|
script_dir.parent.parent.parent / ".shared" / "data",
|
|
28
28
|
# When running from .claude/skills/flutter-pro-max/scripts/ (reference mode)
|
|
29
29
|
script_dir.parent.parent.parent.parent / ".shared" / "data",
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"displayName": "Antigravity / Generic Agent",
|
|
4
4
|
"installType": "full",
|
|
5
5
|
"folderStructure": {
|
|
6
|
-
"root": ".
|
|
6
|
+
"root": ".agents",
|
|
7
7
|
"skillPath": "skills/flutter-pro-max",
|
|
8
8
|
"filename": "SKILL.md"
|
|
9
9
|
},
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"description": "Flutter development guide with widgets, packages, patterns, architecture, performance, and UI/UX best practices.",
|
|
21
21
|
"skillOrWorkflow": "Skill",
|
|
22
22
|
"rulesFile": {
|
|
23
|
-
"path": ".
|
|
23
|
+
"path": ".agents/rules/flutter-pro-max.md",
|
|
24
24
|
"mode": "create"
|
|
25
25
|
}
|
|
26
26
|
}
|
package/dist/types/index.js
CHANGED
|
@@ -4,7 +4,7 @@ export const AI_FOLDERS = {
|
|
|
4
4
|
claude: ['.claude', '.shared'],
|
|
5
5
|
cursor: ['.cursor', '.shared'],
|
|
6
6
|
windsurf: ['.windsurf', '.shared'],
|
|
7
|
-
antigravity: ['.
|
|
7
|
+
antigravity: ['.agents', '.shared'],
|
|
8
8
|
copilot: ['.github', '.shared'],
|
|
9
9
|
kiro: ['.kiro', '.shared'],
|
|
10
10
|
codex: ['.codex', '.shared'],
|
package/dist/utils/detect.js
CHANGED
|
@@ -11,7 +11,7 @@ export function detectAIType(cwd = process.cwd()) {
|
|
|
11
11
|
if (existsSync(join(cwd, '.windsurf'))) {
|
|
12
12
|
detected.push('windsurf');
|
|
13
13
|
}
|
|
14
|
-
if (existsSync(join(cwd, '.
|
|
14
|
+
if (existsSync(join(cwd, '.agents'))) {
|
|
15
15
|
detected.push('antigravity');
|
|
16
16
|
}
|
|
17
17
|
if (existsSync(join(cwd, '.github'))) {
|
|
@@ -63,7 +63,7 @@ export function getAITypeDescription(aiType) {
|
|
|
63
63
|
case 'windsurf':
|
|
64
64
|
return 'Windsurf (.windsurf/workflows/)';
|
|
65
65
|
case 'antigravity':
|
|
66
|
-
return 'Antigravity / Generic Agent (.
|
|
66
|
+
return 'Antigravity / Generic Agent (.agents/skills/)';
|
|
67
67
|
case 'copilot':
|
|
68
68
|
return 'GitHub Copilot (.github/skills/)';
|
|
69
69
|
case 'kiro':
|