agentgui 1.0.668 → 1.0.669
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/lib/claude-runner.js +1 -1
- package/package.json +4 -2
package/lib/claude-runner.js
CHANGED
|
@@ -623,7 +623,7 @@ registry.register({
|
|
|
623
623
|
closeStdin: false, // keep stdin open for JSON-RPC steering commands
|
|
624
624
|
useJsonRpcStdin: false,
|
|
625
625
|
supportedFeatures: ['streaming', 'resume', 'system-prompt', 'permissions-skip', 'steering'],
|
|
626
|
-
spawnEnv: { MAX_THINKING_TOKENS: '0', AGENTGUI_SUBPROCESS: '1', CLAUDECODE: undefined
|
|
626
|
+
spawnEnv: { MAX_THINKING_TOKENS: '0', AGENTGUI_SUBPROCESS: '1', CLAUDECODE: undefined },
|
|
627
627
|
|
|
628
628
|
buildArgs(prompt, config) {
|
|
629
629
|
const {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentgui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.669",
|
|
4
4
|
"description": "Multi-agent ACP client with real-time communication",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "server.js",
|
|
@@ -35,7 +35,6 @@
|
|
|
35
35
|
"google-auth-library": "^10.5.0",
|
|
36
36
|
"gpt-tokenizer": "^3.4.0",
|
|
37
37
|
"msgpackr": "^1.11.8",
|
|
38
|
-
"node-pty": "^1.0.0",
|
|
39
38
|
"onnxruntime-node": "1.21.0",
|
|
40
39
|
"opencode-ai": "^1.2.15",
|
|
41
40
|
"pm2": "^5.4.3",
|
|
@@ -43,6 +42,9 @@
|
|
|
43
42
|
"webtalk": "^1.0.31",
|
|
44
43
|
"ws": "^8.14.2"
|
|
45
44
|
},
|
|
45
|
+
"optionalDependencies": {
|
|
46
|
+
"node-pty": "^1.0.0"
|
|
47
|
+
},
|
|
46
48
|
"overrides": {
|
|
47
49
|
"onnxruntime-web": "npm:empty-npm-package@1.0.0",
|
|
48
50
|
"sharp": "npm:empty-npm-package@1.0.0",
|