You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: implement permission and question reply system
Permission prompts (status: "permission") show Allow Once / Always / Deny
buttons in the ask-banner, calling POST /permission/{requestID}/reply.
Question prompts (status: "question") show the question in the banner;
user answers via the composer, which routes to POST /question/{requestID}/reply
instead of the normal message endpoint.
Also handles "question" and "permission" status types in SessionCard,
SessionsScreen, and App so they render correctly alongside existing "ask".
https://claude.ai/code/session_01C5jwLppG6iUepK9TPKzTTH
* fix: route composer send to question reply when status is ask + requestID
Previously only "question" status was routed; "ask" (the more likely
server-returned value) fell through to sendPrompt. Now both "ask" and
"question" with a requestID route to POST /question/{requestID}/reply.
Permission status is handled by buttons only, not the composer.
https://claude.ai/code/session_01C5jwLppG6iUepK9TPKzTTH
* fix: hide composer during permission prompts
Typing does nothing when a permission is pending — only the Allow/Deny
buttons matter. Hiding the composer removes the dead input and keeps
the permission banner as the sole focus.
https://claude.ai/code/session_01C5jwLppG6iUepK9TPKzTTH
---------
Co-authored-by: Claude <noreply@anthropic.com>
0 commit comments