惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
U
Unit 42
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
Microsoft Azure Blog
Microsoft Azure Blog
有赞技术团队
有赞技术团队
Stack Overflow Blog
Stack Overflow Blog
爱范儿
爱范儿
博客园 - 司徒正美
Vercel News
Vercel News
I
InfoQ
GbyAI
GbyAI
C
Check Point Blog
B
Blog RSS Feed
Martin Fowler
Martin Fowler
B
Blog
MyScale Blog
MyScale Blog
腾讯CDC
博客园 - Franky
Blog — PlanetScale
Blog — PlanetScale
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hugging Face - Blog
Hugging Face - Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 三生石上(FineUI控件)

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Native Windows Terminal for AI coding agents — no WSL
wong2 kim · 2026-05-18 · via DEV Community

wong2 kim

Native Windows terminal for AI coding agents — no WSL

wmux is a native Windows terminal multiplexer for running Claude Code, Codex CLI, and Gemini CLI side-by-side. Split panes, MCP auto-registration, built-in browser with full CDP automation, and session persistence that survives reboot. MIT.

winget install openwong2kim.wmux

Enter fullscreen mode Exit fullscreen mode

GitHub: https://github.com/openwong2kim/wmux

The problem

Run multiple AI coding agents in parallel on Windows and your options are bleak:

  • WSL + tmux: breaks native clipboard, taskbar, and file paths.
  • Multiple Terminal windows: no shared layout, no persistence.
  • VSCode terminal: not a real multiplexer.

cmux exists for macOS. Nothing existed for Windows. So I built wmux.

What it does

Split panes, ConPTY-native

Ctrl+D splits right, Ctrl+Shift+D splits down. Pure ConPTY underneath — the same pseudo-terminal API behind Windows Terminal. xterm.js + WebGL rendering. 999K-line scrollback persisted to disk.

Tmux-style prefix mode (Ctrl+B then an action key) is built in — 13 default actions, all rebindable.

Your agent can drive a real browser

wmux ships a built-in browser panel connected via Chrome DevTools Protocol. When Claude Code runs in a pane, an MCP server auto-registers itself in ~/.claude.json. You can say:

"Search Google for wmux and screenshot the top result"

…and Claude actually does it:

browser_open
  → browser_navigate("https://google.com")
  → browser_fill(ref=13, "wmux")
  → browser_press_key("Enter")
  → browser_screenshot()

Enter fullscreen mode Exit fullscreen mode

Works with React controlled inputs (CDP keystrokes, not just value=) and CJK text. No puppeteer.launch() boilerplate — the browser is already there.

Session persistence that survives reboot

A separate daemon owns the PTYs. Close the app — the daemon keeps them alive. Reopen — sessions reconnect, scrollback intact. Reboot — wmux auto-starts and restores state from disk via atomic .bak-rotated saves.

Output-throughput agent monitoring

You don't know when a long-running agent is done. wmux watches output throughput, not specific strings. When the agent goes quiet after being noisy, you get a taskbar flash + Windows toast. Works with any agent.

It also flags dangerous commands before they run: git push --force, rm -rf, DROP TABLE.

Security

  • Token-authenticated Named Pipes for all IPC
  • SSRF guard on browser navigate — blocks 127.0.0.1, file://, javascript:
  • PTY input sanitization
  • Randomized CDP port per session
  • Memory watchdog reaps dead sessions at 750MB
  • Electron Fuses: RunAsNode off, cookie encryption on

Install

winget install openwong2kim.wmux
# or
choco install wmux

Enter fullscreen mode Exit fullscreen mode

Open Claude Code in any pane — MCP registers automatically. No config to write.

GitHub: https://github.com/openwong2kim/wmux (v2.9.1, MIT)

Feedback and stars welcome.