Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
# Created with winmatsch

PackageIdentifier: openwong2kim.wmux
PackageVersion: 3.49.0
Platform:
- Windows.Desktop
InstallerType: exe
Scope: user
InstallModes:
- interactive
- silent
- silentWithProgress
InstallerSwitches:
Silent: --silent
SilentWithProgress: --silent
ProductCode: wmux
ReleaseDate: 2026-08-28
AppsAndFeaturesEntries:
- ProductCode: wmux
InstallationMetadata:
DefaultInstallLocation: "%LocalAppData%\\wmux"
Installers:
- Architecture: x64
InstallerUrl: https://github.com/openwong2kim/wmux/releases/download/v3.49.0/wmux-3.49.0.Setup.exe
InstallerSha256: ECBD6C29FDBFE8F208A22BE19400945958667CA9DB5634A46B76AE811E70ADD3
ManifestType: installer
ManifestVersion: 1.12.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
# Created with winmatsch

PackageIdentifier: openwong2kim.wmux
PackageVersion: 3.49.0
PackageLocale: en-US
Publisher: openwong2kim
PublisherUrl: https://github.com/openwong2kim
PublisherSupportUrl: https://github.com/openwong2kim/wmux/issues
PackageName: wmux
PackageUrl: https://github.com/openwong2kim/wmux
License: MIT
LicenseUrl: https://github.com/openwong2kim/wmux/blob/HEAD/LICENSE
ShortDescription: Windows terminal multiplexer with MCP server for AI agents
Description: |-
wmux is a Windows terminal multiplexer built for AI coding agents.
Run Claude Code, Codex, and Gemini CLI side by side with split terminals,
browser automation, and MCP integration. Features include session persistence,
dangerous command detection, real-time token cost tracking, and cross-workspace
terminal control via MCP tools.
Moniker: wmux
Tags:
- ai-agent
- developer-tools
- electron
- mcp
- multiplexer
- terminal
- windows
ReleaseNotes: "### Added\n\n• `browser_snapshot` now returns a compact diff against the previous snapshot of the same page when that is smaller (`full:true` forces the complete tree), and accepts `selector` to scope the snapshot to a subtree and `filter:\"interactive\"` to strip non-interactive nodes.\n\n• Browser tool results now report page lifecycle changes inline — navigations (including SPA route changes), page loads, and tab closure — including changes the call itself caused, so a navigation is reported on the very result that triggered it and agents no longer need to poll for page state.\n\n• New `chrome` browser backend (Settings → Browser):wmux launches a dedicated real-Chrome instance with its own persistent profile — sign in once and logins stick, fully separate from your daily browser — and agents get the full automation toolset against it. Sites that block embedded browsers (e.g. Google sign-in) work normally there.\n\n• Each workspace can bind its own Chrome profile (workspace card → right-click → Chrome profile):separate logins per workspace, so one workspace can automate account A while another uses account B.\n\n• Bind a workspace to \"Live Chrome\" to let its agent work inside your own running browser — your real tabs and logins — using Chrome 144+'s official remote-debugging consent flow (enable once at chrome://inspect, Chrome asks permission on every connection).\n\n• Remote workspace attach:\"New workspace on this host\" in the Attach Remote modal bootstraps the first pane of a brand-new workspace on a paired remote daemon — previously only a sibling pane on a workspace the desktop app had already created could be added.\n\n### Changed\n\n• The workspace right-click → Chrome profile submenu now appears only when the browser backend is `chrome`. On `builtin` or `external` a profile binding changes nothing, so the menu no longer offers a choice without an effect — and the per-workspace profile-list lookup at boot is skipped there too.\n\n• Inline browser lifecycle events are now attributed to the tool call that caused them:the lifecycle ring is drained again after each tool body, so a click that navigates (or `browser_navigate` itself, which now reports events like every other browser tool) shows the navigation on its own result instead of one call late. A lone `navigated` that merely repeats the URL the result already states is suppressed; redirect hops stay visible.\n\n### Fixed\n\n• **Replayed terminal history no longer relies on a timing window.** wmux now\n labels replayed daemon PTY data at its source, authenticates its in-band\n boundaries, and keeps replay-only control sequences muted across pane\n adoption without suppressing live terminal behavior. (#1062)\n\n• Chrome backend:a Chrome left running by a crashed wmux session is now adopted on the next use instead of bricking the backend on its profile lock — instances launch with an ephemeral debugging port recorded in the profile, which is what makes the recovery path actually able to find them.\n\n• Live Chrome:agents can now actually drive pages in your attached live Chrome — both tabs wmux opened and your pre-existing tabs picked from the tab list. Previously only opening and listing tabs worked.\n\n• The browser-backend setting description now covers the Chrome option (and points at the per-workspace profile menu) in Korean, Chinese, and Polish, not just English.\n\n• `browser_snapshot` no longer silently ignores `filter:\"interactive\"` and `format:\"aria\"` on its DOM-listing paths. The filter now actually strips the heading block wherever the DOM listing is used — the background-surface fallthrough, the `selector` path, and the RPC fallback — and `aria`, which has no DOM-listing equivalent, now says so with a note instead of returning the default listing unlabeled. (#1066)\r\n\n\n## What's Changed\n• feat(browser):snapshot auto-diff, selector scoping, inline lifecycle events by @openwong2kim in https://github.com/openwong2kim/wmux/pull/1063\n• feat(browser):'chrome' backend — dedicated real-Chrome instance over CDP by @openwong2kim in https://github.com/openwong2kim/wmux/pull/1064\n• fix(terminal):label replayed PTY data at the source by @snowyukitty in https://github.com/openwong2kim/wmux/pull/1062\n• fix(browser):chrome-backend port discovery via DevToolsActivePort + live-tab driving + backend-desc i18n by @openwong2kim in https://github.com/openwong2kim/wmux/pull/1065\n• fix(browser):honor filter on browser_snapshot's DOM paths instead of silently dropping it by @openwong2kim in https://github.com/openwong2kim/wmux/pull/1068\n• feat(browser):show the workspace Chrome-profile submenu only on the chrome backend by @openwong2kim in https://github.com/openwong2kim/wmux/pull/1069\n• docs(todos):register the changelog collector's [Unreleased] papercut by @openwong2kim in https://github.com/openwong2kim/wmux/pull/1054\n• feat(remote):bootstrap a new workspace on a paired remote host (#1001) by @p-poppe in https://github.com/openwong2kim/wmux/pull/1067\n• fix(browser):attribute inline lifecycle events to the tool call that caused them by @openwong2kim in https://github.com/openwong2kim/wmux/pull/1070\n• chore(release):3.49.0 by @openwong2kim in https://github.com/openwong2kim/wmux/pull/1071\n\n\n**Full Changelog**:https://github.com/openwong2kim/wmux/compare/v3.48.1...v3.49.0"
ReleaseNotesUrl: https://github.com/openwong2kim/wmux/releases/tag/v3.49.0
ManifestType: defaultLocale
ManifestVersion: 1.12.0
8 changes: 8 additions & 0 deletions manifests/o/openwong2kim/wmux/3.49.0/openwong2kim.wmux.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
# Created with winmatsch

PackageIdentifier: openwong2kim.wmux
PackageVersion: 3.49.0
DefaultLocale: en-US
ManifestType: version
ManifestVersion: 1.12.0