@yolo-labs/yolo-cli 0.24.0 → 0.25.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.
|
@@ -49,7 +49,11 @@ export function parsePermissionShape(raw) {
|
|
|
49
49
|
return null; // arg = McpScope (membership checked server-side)
|
|
50
50
|
return { raw, namespace: 'mcp', arg };
|
|
51
51
|
case 'llm':
|
|
52
|
-
|
|
52
|
+
// llm.invoke — provider-agnostic (the router picks the model). A legacy
|
|
53
|
+
// `llm.invoke:<provider>` still parses; the provider is advisory only. Head
|
|
54
|
+
// must be EXACTLY `llm.invoke`: bare is valid, but `llm.invoke:` and extra
|
|
55
|
+
// segments `llm.invoke.foo` are rejected.
|
|
56
|
+
if (head !== 'llm.invoke' || arg === '')
|
|
53
57
|
return null;
|
|
54
58
|
return { raw, namespace: 'llm', action, arg };
|
|
55
59
|
case 'media':
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yolo-labs/yolo-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.25.0",
|
|
4
4
|
"description": "YOLO Studio substrate CLI — owns yolo plan/workspace/artifact substrate-tooling commands. Distinct from yolo-code (the agent CLI) and yolo-router (the LLM gateway client).",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|