What's wrong with this entry?
Anonymous. No account, no email.
- Removed
python --versionandpython3 --versionfrom the auto-allowed command list, ensuring these commands go through normal permission checks (search for"docker ps"in the reduced allowlist) - Fixed voice mode availability check to use a simple boolean state instead of calling an external function, preventing potential errors (search for
"voiceEnabled") - Fixed carriage return handling in text input to not treat
\rpreceded by a backslash as a submit trigger (search for"replace(/(?<=[^\\\r\n])\r$/") - Improved mouse input handling to filter out raw mouse escape sequences that lack a key name, preventing spurious input events (search for
"^\[<\d+;\d+;\d+[Mm]") - Fixed tmux clipboard detection — mouse reporting is now disabled in tmux sessions to prevent conflicts (search for
"process.env.TMUX"in functiono_8) - Auto mode classifier now checks
requiresUserInteractionon tools before sending to classifier, preventing interactive tools from being auto-approved (search for"requiresUserInteraction") - TaskOutput tool's
blockparameter now accepts string booleans ("true"/"false") in addition to actual booleans, improving compatibility (search for"preprocess"near"block")