Commit Graph

51 Commits

Author SHA1 Message Date
Régis Brid
f2fa038bd0
Companion application refactoring (#272)
* feat: unified Hub window with NavigationView, slim tray menu, and inline toggles

Consolidate 8 separate windows into a single Hub app:
- New HubWindow with NavigationView (Chat, Home, Activity, Settings pages)
- Chat page embeds gateway Control UI via WebView2 (default landing page)
- Home page with live status cards, quick actions, and activity feed
- Settings page with Expander sections, Test Connection, SSH tunnel fields
- Activity page with category filters and live ActivityStreamService binding
- Slim tray menu: status + 3 inline toggles + Hub/QuickSend + Settings/Exit
- Acrylic backdrop on tray flyout, auto-collapsing nav, page transitions
- Deep links (openclaw://) redirected to Hub pages
- Deleted 5 old windows: StatusDetail, ActivityStream, NotificationHistory, WebChat, Settings
- WebView2 event handler cleanup on page Unloaded (code review fix)
- Deferred page init to avoid null Settings during Frame.Navigate

25 files changed, 1350 insertions(+), 2033 deletions(-) — net code reduction

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* fix: settings validation, CSS sidebar hiding, toggle labels, and SSH tunnel support

- Settings save validates gateway URL and SSH tunnel fields before saving
- Test Connection supports SSH tunnel mode (starts temp tunnel for test)
- SSH toggle auto-updates gateway URL field (shows loopback in tunnel mode)
- Chat page injects CSS to hide web Control UI sidebar (no dual navigation)
- Tray toggle switches hide On/Off labels to prevent clipping

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* feat: full native UI with 12 pages, config editor, dual connection, and live gateway data

New pages: Sessions, Channels, Usage, Nodes, Cron, Skills, Config, About
- Sessions: live session list with reset/delete/compact actions
- Channels: channel health cards with start/stop controls
- Usage: cost breakdown, provider stats, daily costs
- Nodes: node inventory with capabilities and device ID copy
- Cron: scheduled jobs with run/remove actions (gateway wired)
- Skills: installed skills status (gateway wired)
- Config: TreeView + detail panel with editable values via config.set protocol
- About: version info, debug tools, documentation links

Infrastructure:
- Dual WebSocket connection: operator client (UI data) + node client (commands)
- 14 new gateway methods: cron.*, skills.*, config.* with JsonElement.Clone()
- Data caching in HubWindow for instant page navigation
- Session startedAt parsing fix (handles number + string timestamps)
- Hub window synced after settings reconnect
- Tray test updated for Auto scrollbar

Build: 0 errors | Tests: 774 passing (652 shared + 122 tray)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* UX Round 2: Agent events, discovery, pairing, models, presence, menu redesign, timer removal

Features:
- Agent Events page with stream filters and 400-event ring buffer
- Gateway discovery via mDNS (Zeroconf) with scan UI in General page
- Node/Device pairing UI with approve/reject in Nodes page
- Models list in Sessions page via models.list gateway method
- Instances page rewired to presence data from handshake snapshot
- Context cards in tray menu (session summary + token usage bars)
- Pairing pending count in tray menu

Menu & UX:
- Merged status + toggle into rich header card with status dot
- Permission toggles section (browser, camera, exec, canvas, screen)
- Renamed hub to Windows Companion with smart disconnect navigation
- Custom title bar with live connection status + gateway version
- Single-click tray -> chat, double-click -> hub
- Chat window pre-warmed on startup, hides instead of closing

Architecture:
- Removed all background timers (10s poll + 30s health check)
- On-demand data loading only (pages fetch on navigation)
- Fixed ParseSessions to merge instead of clear-then-rebuild (no flicker)
- Fixed HandleAgentEvent sessionKey parsing (was reading from root, not payload)
- Symmetric subscribe/unsubscribe for all new gateway events
- Caches cleared on disconnect, seeded into HubWindow on open

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Restructure navigation: agents as hierarchical nav items under Gateway

- Replace flat Agent section with hierarchical Agents > {agentId} > {sub-pages} structure
- Move Conversations shortcut to top level, pointing to SessionsPage
- Remove AgentSelectorNav ComboBox, replaced with dynamic nav tree (RebuildAgentNavItems)
- Add FindAndSelectNavItem for recursive nested nav item selection
- Add agent: tag parsing (ResolveAgentPageType, ParseAgentIdFromTag)
- Update NavigateTo with legacy flat tag mapping to new agent: prefix format
- Strip Zone B (Agent Roster) and Zone C (Capability Toggles) from HomePage
- Remove Node Mode toggle from SettingsPage (lives in CapabilitiesPage)
- Update command palette to use agent-scoped tags
- NavigateToDefault now goes to Home instead of Conversations

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* UX Round 3: Hearth redesign, hierarchical nav, command palette, agent APIs

Navigation restructure:
- 16 flat pages → domain-grouped hierarchical nav (Gateway, This Computer)
- Each agent gets expandable nav item with Sessions, Events, Skills, Workspace
- Dynamic agent nav built from agents.list gateway response
- Nodes nested under Instances (superset relationship)
- Cron moved to gateway section (gateway-wide, not per-agent)
- Connection page extracted from Settings into Gateway section
- Settings simplified to local-only (startup, notifications)

New pages:
- ConnectionPage — gateway URL, token, SSH tunnel, discovery, status
- CapabilitiesPage — device toggles + node status indicator
- WorkspacePage — TabView per-file viewer via agents.files.list/get
- BindingsPage — routing rules viewer (channel→agent)
- ConversationsPage — cross-agent session browser (legacy)

Command palette (Ctrl+K / Ctrl+F):
- Inline overlay with light dismiss (click outside, Escape, Enter)
- 20+ navigation + 5 toggle + dynamic session commands
- Fuzzy substring filtering

Home page (The Hearth):
- Molty status indicator with colored ring
- Natural language status text
- Quick action buttons

Agent-scoped data:
- Sessions, Skills pass agentId to gateway calls
- Agent Events filtered by sessionKey prefix
- Workspace scoped to current agent in hierarchy

Real gateway APIs:
- agents.list → dynamic nav + agent roster
- agents.files.list/get → workspace file viewer
- Cached agents list for hub seeding on open

Architecture:
- Canvas window styled with Mica + custom title bar
- Open Canvas menu item uses NodeService.ShowCanvasWindow()

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* feat(tray): add rich session tooltips and connected devices section

- Add rich ToolTip to each session label showing model, provider,
  channel, thinking level, token breakdown, context window, status,
  and age
- Add Connected Devices section between context summary and Permissions
  with online indicator dots, platform badges, and rich tooltips
- Show connected client count from presence data in status header subtitle

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Redesign session and device tray menu with rich compact cards

Replace plain text session/device rows with structured Grid cards featuring:
- Status dot (green/amber/gray) + name + model/platform badge + chevron
- Token usage with percentage and color-coded progress bar
- Channel badges and capability icons for devices
- Section headers with right-aligned summary stats

Add AddFlyoutCustomItem() to TrayMenuWindow for custom UIElement
flyout items with hover-to-show and click-to-navigate behavior.

Build detailed side flyout panels with headers, token breakdowns,
capability listings, and session metadata.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* UX Round 4: Chat popup, rich tray menu, schema config editor

Chat panel:
- Tray-anchored borderless popup (bottom-right, DPI-aware)
- WS_EX_TOOLWINDOW + no caption/frame (hidden from taskbar)
- Auto-hide on deactivate, instant show (no animation — WebView2 incompatible)
- Single-click toggle, double-click opens Hub (400ms detection)
- Chat window recreated on settings change (stale URL fix)

Tray menu:
- Rich 2-line session cards: status dot, model badge, token progress bar
- Rich device cards: capability emoji strip, platform badge
- Flyout detail panels: non-interactive TextBlocks (not menu items)
- Session flyout: model/provider, channel, ASCII token bar, thinking/verbose
- Device flyout: capabilities merged with commands (cap as header, cmds indented)
- Dynamic capability toggles under local device (from node.Capabilities)
- Flyout dismisses on any menu item hover (including separators/headers/toggles)
- Section headers with aggregates (sessions/tokens, online/caps)
- AddFlyoutCustomItem + AddToggleItem indent support

Schema config editor:
- SchemaConfigEditor UserControl renders from JSON Schema
- Supports string/number/boolean/enum/array/nested objects
- Sensitive field detection (PasswordBox)
- Fallback RenderConfigDirectly when schema unavailable
- Config detail panel uses schema for selected tree node
- Pending changes preserved on save failure

Command palette:
- Rebuilt as inline overlay Grid (light dismiss: Escape + click-outside)
- Ctrl+F added as alternate shortcut
- TextBox replaces AutoSuggestBox (proper Escape handling)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* UX Round 5: Connection dashboard, tray polish, review fixes

Connection Management:
- Redesigned ConnectionPage with 6-section card layout: status card with
  live gateway info, gateway discovery picker with mDNS scan, setup code
  paste (from openclaw qr), manual connection expander, device identity
  card with pairing status and copyable approval command, connection log
- Auto-discovery when disconnected or unconfigured
- Setup code applies both bootstrapToken and Token for immediate connect
- PreferredGatewayId persisted in settings

Tray Menu Polish:
- Compact 3-column ToggleButton grid for capability toggles (all 7 shown)
- Split header subtitle into 2 lines (connection details + node status)
- Auth failure warning shown inline
- Reconnect and Connection quick actions
- Dropped 'Open' prefix from action items, added bottom padding

Hub Window:
- Removed XAML KeyboardAccelerators (caused tooltip flicker on hover)
- Replaced with PreviewKeyDown handler for Ctrl+K/F
- Added ReconnectAction, LastGatewaySelf, node state properties

Connection Lifecycle Fixes (from 3-model rubber-duck review):
- Capability toggles now use ReconnectNodeServiceOnly() instead of full
  teardown — no longer kills gateway client or chat window
- Reconnect action uses lightweight ReconnectGateway() (preserves chat)
- SyncHubNodeState() pushes live pairing/identity to hub on every
  node status and pairing change
- Gateway matching uses host:port comparison (not full URL with scheme)
- Discovery service disposed on page Unloaded
- Connection log refreshes on every status change
- SanitizeUrl guards against port -1
- Null-conditional restored on _hub?.RaiseSettingsSaved()
- Synthesized current gateway entry doesn't mutate cached list

Other:
- Instant single-click chat toggle (removed double-click debounce)
- Catch-all ShowHub(action) for menu nav tags
- SSH tunnel section flattened (removed redundant nested expander)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* UX Round 6: Token bar ProgressBar, title bar search, MCP toggle

Session flyout:
- Replaced ASCII token bar (█░) with WinUI ProgressBar (green/orange/red)
- Built flyout as native UIElement (StackPanel) instead of text items
- Added AddFlyoutCustomItem(UIElement, UIElement, action) overload

Title bar search:
- Replaced hidden command palette overlay with AutoSuggestBox in title bar
- Standard Windows pattern, always visible, Ctrl+K/F focuses it
- Lobster icon 14px → 20px, title shortened to 'OpenClaw'
- Removed overlay XAML, smoke layer, and palette methods

MCP server toggle:
- Added Local MCP Server card on Capabilities page
- Toggle, endpoint URL display, Copy Token/URL buttons
- Shows token readiness status

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Fix session flyout to match device flyout style

Replaced custom UIElement session flyout panel with simple
TrayMenuFlyoutItem list matching the device flyout pattern.
ProgressBar stays in the main menu session card only.
Removed unused AddFlyoutCustomItem(UIElement, UIElement) overload
and ShowCascadingFlyoutElement helper.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* UX Round 7: Nav restructure, App MCP, config editor, review fixes

Navigation:
- Sessions, Agent Events, Skills promoted to top-level with agent filter
- Agents folded to one level (direct nav → Workspace)
- Instances merged into Nodes with Connected Clients section
- Title restored to 'OpenClaw Windows Companion'
- Title bar: 48px height, responsive search (Ctrl+E), lobster 20px

Config page:
- Schema-driven tree (objects only, no leaf nodes)
- Editor + Raw JSON tabs
- config.patch sends { raw, baseHash } (hash from config.get response)
- Subtitle shows actual config file path from gateway
- All expanders open by default

App MCP capability (10 tools):
- app.navigate/status/sessions/agents/nodes/config.get
- app.settings.get/set with security allowlist (no secrets)
- app.menu/search for tray and command palette testing
- All handlers return structured data (not stringified JSON)
- Sessions filter by session key prefix (not channel)

Bug fixes:
- AgentEventsPage: init NRE guard, filter applies to display
- CapabilitiesPage: MCP toggle suppress during init
- SessionsPage: removed unused agent filter
- Config save: proper baseHash from gateway hash field

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* 5-model adversarial review fixes + regression tests

Fixes from Opus 4.7, Sonnet 4.5, GPT-5.4, GPT-5.2, Opus 4.6 reviews:
- Guard IndexOutOfRangeException on empty session Status
- Fix TCS hang when DispatcherQueue unavailable in app.navigate
- Static s_emptyObject replacing leaked JsonDocument in config tree
- Always prune stale sessions (removed incomingKeys.Count > 0 guard)
- try/catch/finally on 6 async void handlers (Channels, Sessions, Config)
- Seed ALL cached data before NavigateToDefault in ShowHub
- Move CurrentStatus/_cachedCommands inside DispatcherQueue in UpdateStatus
- Raw JSON tab uses 'parsed' not wrapper object
- Null-safe Subtitle in search handler
- Invalidate command cache on agent switch
- Dispose SemaphoreSlim in GatewayDiscoveryService

Regression tests (9 new):
- AppCapabilityTests: category, commands, CanHandle, handlers, errors
- SessionInfo empty Status guard
- ParseSessions empty array clears sessions

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Tray menu: header redesign, dismiss fix, session reliability

Header:
- Split into brand header (🦞 OpenClaw) + Gateway section
- Gateway section: status dot, version/host:port, node status, labeled
  ToggleButton ('Connected'/'Disconnected') with tooltip
- Gateway info clickable → opens Connection page
- Menu dismisses after connect/disconnect toggle (avoids stale header)

Dismiss:
- Unified 150ms delayed foreground check for all deactivation cases
- Checks this window, flyout child, and owner parent before dismissing
- Fixes: click-away dismisses everything, hover between items doesn't
- Set _isShown=true in ShowAtCursor (was missing, broke dismiss guard)

Sessions:
- Removed connection status gate — show cached sessions always
- Zero gateway requests on menu open (health check was clearing sessions
  via ParseSessions in the response)
- Session cards click → 'sessions' top-level route

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Connection UX: localhost probe, auth errors, token prompt, gateway switching

Discovery:
- Localhost probe enumerates listening TCP ports via GetActiveTcpListeners
- Probes for gateway HTML signature (<title>OpenClaw Control</title>)
- Excludes MCP port (8765) to avoid false positives
- Runs in parallel with mDNS, results merged

Connection page:
- Auth error InfoBar with contextual guidance (token/pairing/password/signature)
- HubWindow.LastAuthError forwarded from OnAuthenticationFailed
- Cleared on successful connect and new connection attempts
- Token prompt always shows when switching gateways (pre-fills current token)
- Cancel button on token prompt
- Discovery list refreshes after connecting to show ✓

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Prepare UX experiments branch for PR

Fix gateway discovery host resolution, harden branch-introduced security paths, complete localization coverage, remove newly introduced dead code, refresh documentation, wire functional UX flows, and stabilize the Config page rendering path.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Fix MCP-only tray startup

Initialize the local node service when MCP mode is enabled even if gateway node mode is disabled, so MCP-only tray launches start the HTTP server used by integration tests.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

---------

Co-authored-by: Ranjesh Jaganathan <ranjeshj@microsoft.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-05-04 20:48:24 -07:00
Scott Hanselman
65542764f2 docs: sync mission control parity status
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 07:01:37 -07:00
Scott Hanselman
64a5221e99 feat: expand activity stream history
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 06:56:30 -07:00
Scott Hanselman
9a4fe87642 docs: update mission control parity status
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 04:52:21 -07:00
Scott Hanselman
38f9042654 docs: record browser host smoke status
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 04:16:03 -07:00
Scott Hanselman
0dc9be4b73 docs: align browser parity status
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 03:28:08 -07:00
Scott Hanselman
25c364da11 fix: use tunnel local port for browser diagnostics
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 03:22:34 -07:00
Scott Hanselman
233034fcbf fix: support asymmetric browser ssh guidance
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 03:16:53 -07:00
Scott Hanselman
9537c44056 docs: update browser diagnostic category
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 03:07:12 -07:00
Scott Hanselman
87e0a85c79 fix: guide disabled browser proxy parity
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 03:04:01 -07:00
Scott Hanselman
6e636b2a6b feat: preview managed ssh tunnel command
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 03:01:31 -07:00
Scott Hanselman
082f630fd9 fix: align settings ssh test tunnel
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 02:53:25 -07:00
Scott Hanselman
b0c604cbf7 docs: explain browser ssh tunnel forward
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 02:51:28 -07:00
Scott Hanselman
c6dbe6d3cc fix: clarify browser proxy reachability errors
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 02:48:10 -07:00
Scott Hanselman
e8df736a72 fix: guide missing browser ssh forward
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 02:43:39 -07:00
Scott Hanselman
769cb31e84 feat: show gateway runtime owner
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 02:40:56 -07:00
Scott Hanselman
2c4020f107 feat: detect manual ssh gateway forwards
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 02:36:03 -07:00
Scott Hanselman
d8f7dfb37d feat: show port owner diagnostics
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 02:31:25 -07:00
Scott Hanselman
17f377e04c fix: diagnose blocked browser proxy policy
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 02:27:52 -07:00
Scott Hanselman
48387bd1bd feat: forward browser proxy over ssh tunnel
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 02:22:59 -07:00
Scott Hanselman
8ee30a0a2f feat: add port diagnostics copy action
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 02:14:03 -07:00
Scott Hanselman
c298507c31 feat: add node inventory copy action
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 02:10:45 -07:00
Scott Hanselman
35e04bca75 feat: show update status in command center
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 02:06:41 -07:00
Scott Hanselman
7f558e1e1b feat: redact topology support context
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 02:01:47 -07:00
Scott Hanselman
0ea647ea9e feat: show topology summary in settings
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 01:59:02 -07:00
Scott Hanselman
e7208f3545 fix: distinguish disabled node capabilities
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 01:53:54 -07:00
Scott Hanselman
e885802052 feat: warn before enabling node mode
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 01:49:11 -07:00
Scott Hanselman
2758faca3b feat: add node capability settings
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 01:44:45 -07:00
Scott Hanselman
ccf5f70bdf feat: add dangerous command opt-in guidance
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 01:25:19 -07:00
Scott Hanselman
bd8b1c5892 feat: add capability diagnostics copy action
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 01:23:09 -07:00
Scott Hanselman
df777cc7b1 feat: harden exec environment overrides
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 01:19:24 -07:00
Scott Hanselman
7dcad4f8d3 feat: add exec approval base hash checks
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 01:16:04 -07:00
Scott Hanselman
5dc1544142 feat: add command center extensibility links
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 01:10:11 -07:00
Scott Hanselman
f762c5a609 feat: add interactive exec approval prompt
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 01:05:54 -07:00
Scott Hanselman
7a41446c38 feat: add command center channel actions
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 00:57:41 -07:00
Scott Hanselman
df70014092 feat: add browser proxy password auth retry
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 00:51:08 -07:00
Scott Hanselman
ad323b86c8 feat: add command center activity summary
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 00:48:04 -07:00
Scott Hanselman
6bcf34fa0f feat: add command center cost trend bars
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 00:42:59 -07:00
Scott Hanselman
2d8cfdbf1d feat: add richer command center summaries
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 00:38:49 -07:00
Scott Hanselman
ff923514af feat: add local browser proxy bridge
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 00:34:23 -07:00
Scott Hanselman
17991ac9ae feat: harden remote exec approval updates
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 00:27:20 -07:00
Scott Hanselman
9795fa56d2 feat: add gateway topology setup presets
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 00:24:46 -07:00
Scott Hanselman
ae8da1f471 feat: add command center support actions
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 00:22:58 -07:00
Scott Hanselman
f3bbe577bd feat: add command center permissions matrix
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 00:05:58 -07:00
Scott Hanselman
263058ed33 feat: add browser proxy feasibility diagnostics
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-27 00:02:03 -07:00
Scott Hanselman
a40fcb6757 feat: classify explicit wsl gateway hosts
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-26 23:59:54 -07:00
Scott Hanselman
bd0121478f feat: add privacy-safe diagnostics jsonl
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-26 23:58:31 -07:00
Scott Hanselman
1c0f497e28 feat: add read-only port diagnostics
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-26 23:55:28 -07:00
Scott Hanselman
a365839494 feat: surface gateway self metadata
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-26 23:52:45 -07:00
Scott Hanselman
652f552f0d feat: harden ssh tunnel command state
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-26 23:47:11 -07:00