tmux

Interactive terminal control for REPLs, debuggers, and servers

View on GitHub
Author Deevs
Namespace @DeevsDeevs/deevs-agent-system
Category general
Version 1.0.0
Stars 17
Downloads 7
self.md verified
Table of content

Interactive terminal control for REPLs, debuggers, and servers

Installation

npx claude-plugins install @DeevsDeevs/deevs-agent-system/tmux

Contents

Folders: bin, lib

Files: README.md, SKILL.md, reference.md

Documentation

Interactive terminal control for REPLs, debuggers, and servers.

Overview

Control interactive CLI programs in separate tmux panes. High-level API for common tasks, low-level API for advanced control.

Quick Start

# Simple execution
tmux-ctl eval "npm test"

# REPL one-shot
tmux-ctl repl python "2+2"  # → 4

# Long-running process
tmux-ctl start "npm run dev" --name=server --wait="Server started"
tmux-ctl logs server
tmux-ctl stop server

# Parallel execution
tmux-ctl start "npm run build" --name=build
tmux-ctl start "npm test" --name=test
tmux-ctl wait build test
tmux-ctl stop build test

High-Level Commands

Low-Level Commands

For advanced control:

See SKILL.md and reference.md for details.

Installation

/plugin marketplace add git@github.com:DeevsDeevs/agent-system.git
/plugin install tmux@deevs-agent-system

Add to PATH:

export PATH="$PATH:$HOME/.claude/plugins/tmux@deevs-agent-system/bin"

State Management

State stored in .claude/tmux/:

Inside tmux: operates on current session Outside tmux: auto-creates isolated session

Dependencies

Source

View on GitHub

Tags: general