Stats
Links
Categories
Plugins for TwiCC (the web interface for Claude Code)
npx claudepluginhub dguerizec/twicc-tmux-presetsCreate and manage .twicc-tmux.json preset files for TwiCC terminal sessions
A Claude Code plugin marketplace for TwiCC (the web interface for Claude Code).
/plugin marketplace add dguerizec/twicc-tmux-presets
/plugin install twicc-presets@twicc-tmux-presets
Create, edit, validate, and manage .twicc-tmux.json files — the terminal preset configuration for TwiCC's tmux-based terminal navigator.
/twicc-presets:twicc-presets create presets for dev server, tests, and logs
/twicc-presets:twicc-presets add a "deploy" preset that runs ./deploy.sh
/twicc-presets:twicc-presets list
/twicc-presets:twicc-presets validate
Or just ask naturally — Claude auto-invokes the skill when you mention twicc presets or .twicc-tmux.json.
.twicc-tmux.json format[
{
"name": "dev",
"command": "npm run dev",
"cwd": "./frontend"
},
{
"name": "logs",
"command": "tail -f logs/app.log"
}
]
| Field | Required | Description |
|---|---|---|
name | Yes | Preset name shown in the TwiCC terminal navigator |
command | No | Shell command to run when the window is created |
cwd | No | Working directory (relative to the config file's directory, or absolute) |
MIT