Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/pinky_daemon/tmux_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -2927,6 +2927,10 @@ def _build_claude_cmd(self) -> str:
if cli_effort and cli_effort != "auto":
parts.extend(["--effort", cli_effort])

# CC 2.1.200 removed AskUserQuestion's auto-continue fallback; headless
# agents now hang indefinitely if the model calls it (#850, #876).
parts.extend(["--disallowedTools", "AskUserQuestion"])

# Claude Code 2.1.215 does not reliably discover project or local-scope
# MCP configuration when the daemon launches its tmux REPL. Pass the
# agent workspace config explicitly when present so both fresh and
Expand Down
Loading