@soleri/cli 8.0.0 → 8.1.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soleri/cli",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.1.0",
|
|
4
4
|
"description": "Developer CLI for creating and managing Soleri AI agents.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@clack/prompts": "^1.0.0",
|
|
44
|
-
"@soleri/core": "^
|
|
44
|
+
"@soleri/core": "^8.0.0",
|
|
45
45
|
"@soleri/forge": "^5.0.0",
|
|
46
46
|
"commander": "^13.0.0"
|
|
47
47
|
},
|
|
@@ -65,11 +65,3 @@ export function detectAgent(dir?: string): AgentContext | null {
|
|
|
65
65
|
return null;
|
|
66
66
|
}
|
|
67
67
|
}
|
|
68
|
-
|
|
69
|
-
/**
|
|
70
|
-
* Detect a file-tree agent specifically (agent.yaml only).
|
|
71
|
-
*/
|
|
72
|
-
export function detectFileTreeAgent(dir?: string): AgentContext | null {
|
|
73
|
-
const ctx = detectAgent(dir);
|
|
74
|
-
return ctx?.format === 'filetree' ? ctx : null;
|
|
75
|
-
}
|