claudeck 1.3.0 → 1.3.1
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 +1 -1
- package/server/agent-loop.js +1 -0
- package/server/orchestrator.js +1 -0
- package/server/ws-handler.js +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claudeck",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A browser-based UI for Claude Code — chat, run workflows, manage MCP servers, track costs, and orchestrate autonomous agents from a local web interface. Installable as a PWA.",
|
|
6
6
|
"main": "server.js",
|
package/server/agent-loop.js
CHANGED
package/server/orchestrator.js
CHANGED
package/server/ws-handler.js
CHANGED
|
@@ -421,6 +421,7 @@ export async function handleWorkflow(msg, { ws, sessionIds, activeQueries, pendi
|
|
|
421
421
|
abortController,
|
|
422
422
|
maxTurns: 30,
|
|
423
423
|
executable: execPath,
|
|
424
|
+
settingSources: ["user", "project", "local"],
|
|
424
425
|
};
|
|
425
426
|
|
|
426
427
|
if (!useBypass && !usePlan) {
|
|
@@ -730,6 +731,7 @@ export async function handleChat(msg, { ws, sessionIds, activeQueries, pendingAp
|
|
|
730
731
|
abortController,
|
|
731
732
|
executable: execPath,
|
|
732
733
|
stderr: (text) => stderrChunks.push(text),
|
|
734
|
+
settingSources: ["user", "project", "local"],
|
|
733
735
|
};
|
|
734
736
|
if (effectiveMaxTurns) opts.maxTurns = effectiveMaxTurns;
|
|
735
737
|
|