clementine-agent 1.0.49 → 1.0.50
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/dist/agent/assistant.js +6 -0
- package/package.json +1 -1
package/dist/agent/assistant.js
CHANGED
|
@@ -1529,6 +1529,12 @@ You have a cost budget per message — not a hard turn limit. Work until the tas
|
|
|
1529
1529
|
if (!disallowed.includes(t))
|
|
1530
1530
|
disallowed.push(t);
|
|
1531
1531
|
}
|
|
1532
|
+
// ToolSearch returns misleading "MCP server still connecting" text for
|
|
1533
|
+
// Claude Desktop connectors (Drive/Gmail/etc.) during cold boot, which
|
|
1534
|
+
// sonnet interprets as "tool unavailable" and bails instead of just
|
|
1535
|
+
// calling the tool directly. Removing it forces direct tool calls.
|
|
1536
|
+
if (!disallowed.includes('ToolSearch'))
|
|
1537
|
+
disallowed.push('ToolSearch');
|
|
1532
1538
|
// Cron/heartbeat get turn limits. Interactive chat has no turn cap —
|
|
1533
1539
|
// cost budget (maxBudgetUsd) is the primary guardrail.
|
|
1534
1540
|
const effectiveMaxTurns = maxTurns
|