@lotagate/cli 0.1.6 → 0.1.7
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 +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -111,7 +111,7 @@ lotagate goal run "Audit the project configuration" --max-turns 20
|
|
|
111
111
|
lotagate agent stdio
|
|
112
112
|
~~~
|
|
113
113
|
|
|
114
|
-
lotagate exec --json and lotagate exec --jsonl provide structured output for automation. lotagate agent stdio exposes the versioned JSONL protocol; it validates requests, bounds in-flight work, supports cancellation, and emits safe structured errors instead of raw provider failures.
|
|
114
|
+
lotagate exec --json and lotagate exec --jsonl provide structured output for automation. lotagate agent stdio exposes the versioned JSONL protocol; it validates requests, bounds in-flight work, supports cancellation, and emits safe structured errors instead of raw provider failures. The Desktop bridge is available through `lotagate agent desktop`; its version-1 protocol adds image uploads with `attachment.begin`, ordered `attachment.chunk`, `attachment.complete`, and `turn.start` attachment references. Image bytes are chunked before they cross JSONL's bounded line size, validated and normalized by the CLI, then sent through the existing image-capable chat path. Existing Desktop turns without attachments and all standalone CLI surfaces keep their current behavior.
|
|
115
115
|
|
|
116
116
|
Run lotagate help for the complete direct-command reference. The executable command catalog is the source of truth for command arguments and flags.
|
|
117
117
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lotagate/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Enterprise-grade terminal client for LotaGate AI agents.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -69,12 +69,12 @@
|
|
|
69
69
|
"tiktoken": "^1.0.22"
|
|
70
70
|
},
|
|
71
71
|
"optionalDependencies": {
|
|
72
|
-
"@lotagate/cli-native-linux-arm64-gnu": "0.1.
|
|
73
|
-
"@lotagate/cli-native-linux-x64-gnu": "0.1.
|
|
74
|
-
"@lotagate/cli-native-macos-arm64": "0.1.
|
|
75
|
-
"@lotagate/cli-native-macos-x64": "0.1.
|
|
76
|
-
"@lotagate/cli-native-windows-arm64": "0.1.
|
|
77
|
-
"@lotagate/cli-native-windows-x64": "0.1.
|
|
72
|
+
"@lotagate/cli-native-linux-arm64-gnu": "0.1.7",
|
|
73
|
+
"@lotagate/cli-native-linux-x64-gnu": "0.1.7",
|
|
74
|
+
"@lotagate/cli-native-macos-arm64": "0.1.7",
|
|
75
|
+
"@lotagate/cli-native-macos-x64": "0.1.7",
|
|
76
|
+
"@lotagate/cli-native-windows-arm64": "0.1.7",
|
|
77
|
+
"@lotagate/cli-native-windows-x64": "0.1.7"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
80
|
"@eslint/js": "9.39.5",
|