@openagents-org/agent-launcher 0.2.124 → 0.2.125
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/src/adapters/claude.js +1 -1
package/package.json
CHANGED
package/src/adapters/claude.js
CHANGED
|
@@ -390,7 +390,7 @@ class ClaudeAdapter extends BaseAdapter {
|
|
|
390
390
|
const cmd = [claudeBin, '-p', prompt, '--output-format', 'stream-json', '--verbose'];
|
|
391
391
|
|
|
392
392
|
cmd.push('--append-system-prompt', systemPrompt);
|
|
393
|
-
cmd.push('--disallowedTools', 'AskUserQuestion');
|
|
393
|
+
cmd.push('--disallowedTools', 'AskUserQuestion', 'TodoWrite');
|
|
394
394
|
|
|
395
395
|
// Resume existing conversation (skipped on retry after stale session)
|
|
396
396
|
const sessionId = this._channelSessions[channelName];
|