feat(remote-connect): bot Assistant/Pro mode, verbose output, and mobile assistant UI#192
Merged
bobleer merged 1 commit intoGCWing:mainfrom Mar 18, 2026
Conversation
… mobile assistant UI - Add BotDisplayMode (Pro/Assistant) with mode switching commands (/pro, /assistant) - Add Claw session support in bot with auto-resolve assistant workspace - Fix handle_chat_message workspace check to skip for Assistant mode - Fix handle_new_session to persist resolved assistant path to state - Add TrackerEvent::ToolCompleted for atomic-granularity verbose output - Refactor verbose mode: emit thinking summary on ThinkingEnd, tool result on ToolCompleted - Add /switch_assistant, /new_claw_session commands and related actions - Add verbose/concise mode toggle with BotPersistenceData.verbose_mode - Mobile-web: add assistant mode UI, mode toggle, assistant picker, workspace bar - Mobile-web: fix handleScroll to use correct path in assistant mode - Remove duplicate SCSS definitions (deprecated mode-switcher block, old create-row) - Desktop: add toggle_verbose_mode Tauri command and RemoteConnectDialog toggle - Update modelConfigs Gemini 2.5 Pro pricing Made-with: Cursor
bobleer
added a commit
to bobleer/BitFun
that referenced
this pull request
Mar 18, 2026
… mobile assistant UI (GCWing#192) - Add BotDisplayMode (Pro/Assistant) with mode switching commands (/pro, /assistant) - Add Claw session support in bot with auto-resolve assistant workspace - Fix handle_chat_message workspace check to skip for Assistant mode - Fix handle_new_session to persist resolved assistant path to state - Add TrackerEvent::ToolCompleted for atomic-granularity verbose output - Refactor verbose mode: emit thinking summary on ThinkingEnd, tool result on ToolCompleted - Add /switch_assistant, /new_claw_session commands and related actions - Add verbose/concise mode toggle with BotPersistenceData.verbose_mode - Mobile-web: add assistant mode UI, mode toggle, assistant picker, workspace bar - Mobile-web: fix handleScroll to use correct path in assistant mode - Remove duplicate SCSS definitions (deprecated mode-switcher block, old create-row) - Desktop: add toggle_verbose_mode Tauri command and RemoteConnectDialog toggle - Update modelConfigs Gemini 2.5 Pro pricing Co-authored-by: bowen628 <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
BotDisplayModewith/proand/assistantswitching commands. Pro mode uses workspaces for Code/Cowork sessions; Assistant mode uses assistant workspaces for Claw sessions with auto-resolve default assistant.TrackerEvent::ToolCompletedfor atomic-granularity bot output. Verbose mode now emits a thinking summary onThinkingEndand tool result (with params + duration) onToolCompleted, instead of per-chunk streaming messages.handle_chat_messageno longer blocks Assistant mode users with "select workspace" errorhandle_new_sessionnow persists auto-resolved assistant path tostate.current_assistanthandleScrollin SessionListPage now uses correct workspace path for assistant mode paginationtoggle_verbose_modeTauri command and UI toggle in RemoteConnectDialogTest plan
/proand/assistantcommands in Telegram/Feishu bot/switch_assistant— should auto-resolve default assistant/resume_sessionafter creating a Claw session — should work (assistant path persisted)/verboseand/concise— verbose should show thinking summary + tool resultsMade with Cursor