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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudeck",
3
- "version": "1.3.0",
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",
@@ -145,6 +145,7 @@ export async function runAgent({
145
145
  abortController,
146
146
  maxTurns,
147
147
  executable: execPath,
148
+ settingSources: ["user", "project", "local"],
148
149
  };
149
150
 
150
151
  if (!useBypass && !usePlan) {
@@ -158,6 +158,7 @@ export async function runOrchestrator({
158
158
  abortController,
159
159
  maxTurns: 3, // Planner should just think, not use many tools
160
160
  executable: execPath,
161
+ settingSources: ["user", "project", "local"],
161
162
  };
162
163
 
163
164
  if (!useBypass && !usePlan) {
@@ -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