manage background processes in tmux windows. use when running dev servers, build watchers, or any long-running process that shouldn't block the agent. check window before spawning.
Scanned 2/12/2026
Install via CLI
openskills install bdsqqq/dots---
name: tmux
description: "manage background processes in tmux windows. use when running dev servers, build watchers, or any long-running process that shouldn't block the agent. check window before spawning."
---
# tmux
manage concurrent processes (servers, builds, watchers) in tmux windows.
## spawn
```bash
tmux new-window -n "name" -d "command"
```
## inspect
```bash
tmux capture-pane -p -t "name" # visible screen
tmux capture-pane -p -S - -t "name" # full scrollback
```
## control
```bash
tmux send-keys -t "name" C-c # interrupt
tmux kill-window -t "name" # terminate
tmux select-window -t "name" # switch to
tmux list-windows # list all
```
for spawning amp agents with thread linkage, use the `spawn` skill.
No comments yet. Be the first to comment!
Interact with the Paperclip control plane API to manage tasks, coordinate with other agents, and follow company governance. Use when you need to check assignments, update task status, delegate work, post comments, set up or manage routines (recurring scheduled tasks), or call any Paperclip API endpoint. Do NOT use for the actual domain work itself (writing code, research, etc.) — only for Paperclip coordination.