justbecauselabs/agent-skills

tmux-background-tasks

Run and manage long-lived background commands using tmux sessions instead of background processes. Use when starting backend/API servers, Expo/React Native dev servers, job workers, watchers, or any task that should keep running while other commands are executed.

First seen Jun 16, 2026

Installation

$ npx skills add justbecauselabs/agent-skills --skill tmux-background-tasks

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from justbecauselabs/agent-skills.

npx skills add justbecauselabs/agent-skills

Browse all from justbecauselabs/agent-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,990 B
  • docs SUMMARY.md 292 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 51 installs

SKILL.md

Tmux Background Tasks

If tmux is not installed, stop and ask the user to install it before proceeding.

Overview

Use tmux to run and manage long-lived commands in the background. Do not keep these tasks alive with the default process tool; always launch them in tmux so they survive across commands and can be reattached.

Workflow

  1. Verify tmux is installed

If tmux is missing, stop and ask the user to install it (e.g., brew install tmux on macOS). Do not proceed until tmux is available.

  1. Pick a stable session name

Use a predictable, unique name like <repo>-<task> (e.g., myapp-api, myapp-expo).

  1. Start or reuse the session

Check for an existing session before starting a new one.

  1. Provide attach/detach guidance

Tell the user how to attach to the session if they want to view logs or interact.

  1. Stop or restart when requested

Terminate the session cleanly when the user asks to stop the task.

Command Patterns

Check tmux:

  • command -v tmux
  • tmux -V

Create a new detached session running a command:

  • tmux new-session -d -s <name> -- <command>
  • If you need a login shell or env: tmux new-session -d -s <name> -- bash -lc '<command>'

Reuse or attach:

  • tmux has-session -t <name>
  • tmux attach -t <name>
  • tmux ls

Send a stop signal or kill:

  • tmux send-keys -t <name> C-c
  • tmux kill-session -t <name>

Peek at recent output (non-interactive):

  • tmux capture-pane -pt <name> -S -200

Notes

  • Prefer tmux for servers, watchers, workers, and dev tools that should remain running while other commands execute.
  • Avoid creating duplicate sessions. If tmux has-session -t <name> succeeds, reuse it or attach.