
Cmux Hub
- 40 repo stars
- Updated April 13, 2026
- azu/cmux-hub
Browser-based diff viewer for cmux. Auto-launches on session start.
About
cmux-hub is a Claude Code skill in the AI & Agent Building category. Browser-based diff viewer for cmux. Auto-launches on session start.
- cmux-hub
- AI & Agent Building
- AI-coding skill
Cmux Hub by the numbers
- Data as of Aug 5, 2026 (Skillselion catalog sync)
/plugin marketplace add azu/cmux-hub/plugin install cmux-hub@cmux-hub-marketplaceAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 40 |
|---|---|
| Last updated | April 13, 2026 |
| Repository | azu/cmux-hub ↗ |
What it does
Browser-based diff viewer for cmux. Auto-launches on session start.
README.md
cmux-hub plugin for Claude Code
Claude Code plugin that auto-launches cmux-hub on every session.
What it does
- Installs/updates the
cmux-hubbinary automatically - Starts cmux-hub on every Claude Code session via SessionStart hook
- Copies default toolbar actions to
~/.claude/cmux-hub.jsonon first run
Install
claude plugin marketplace add azu/cmux-hub
claude plugin install cmux-hub@cmux-hub-marketplace
Customize actions
Edit ~/.claude/cmux-hub.json (user-level) or .claude/cmux-hub.json (project-level, takes priority) to customize toolbar buttons:
[
{ "label": "Commit", "type": "paste-and-enter", "command": "commit this change" },
{ "label": "Create PR", "type": "paste-and-enter", "command": "create a pull request" },
{ "label": "Push", "type": "shell", "command": "git push" }
]
See Custom Actions for all options.
Skip auto-launch
Set CMUX_HUB_NO_AUTOSTART=1 in your project's .claude/settings.json to prevent the plugin from starting cmux-hub automatically:
{
"env": {
"CMUX_HUB_NO_AUTOSTART": "1"
}
}
This is useful when developing cmux-hub itself or running a custom dev server. You can still start cmux-hub manually with /cmux-hub:start.
Manual start
Use the /cmux-hub:start skill to manually start cmux-hub in the current project. This works even when auto-start is disabled via CMUX_HUB_NO_AUTOSTART=1.
Prerequisites
cmux-hub connects to the cmux Unix socket. See Prerequisites for socket mode configuration.