run-in-tmux

run-in-tmux is a skill for Claude Code, Codex from normful/picadillo. It costs 53 tokens per session (662 once invoked), scanned A, original, MIT.

A command-line helper that starts development commands in tmux, a terminal tool that keeps sessions running and divides them into panes.

In plain words
What is it for?
Use it to start a development server, test watcher, or multiple commands in separate terminal panes, with plain-text or JSON output.
Why use it?
It lets several long-running commands stay organized and continue running after the terminal window closes.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /Users/norman/code/picadillo.

Good fit Use it to start a development server, test watcher, or multiple commands in separate terminal panes, with plain-text or JSON output.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for run-in-tmux

README.md
[![agentmods](https://agentmods.dev/badge/skills/normful/picadillo/run-in-tmux/github.svg)](https://agentmods.dev/skills/normful/picadillo/run-in-tmux)
Your own site
<a href="https://agentmods.dev/skills/normful/picadillo/run-in-tmux"><img src="https://agentmods.dev/badge/skills/normful/picadillo/run-in-tmux/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for run-in-tmux

Your own site · 80×15
<a href="https://agentmods.dev/skills/normful/picadillo/run-in-tmux"><img src="https://agentmods.dev/badge/skills/normful/picadillo/run-in-tmux.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 662 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00053 $0.00662
Opus 5 $0.00026 $0.00331
Sonnet 5 $0.00011 $0.00132
Haiku 4.5 $0.00005 $0.00066

Measured 10d ago against content hash d604c16a0548, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

run-in-tmux scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/run-in-tmux/SKILL.md · 82 lines

How it starts

The opening of the file, as written. The whole thing — 82 lines — stays where its author put it; the contents beside it link to each section on GitHub.

run-in-tmux

Creates a tmux session with one or more commands running in separate split panes. Automatically detects the git repository root and generates a unique session name.

When to use

  • User wants to run development commands (e.g., npm run dev, cargo watch)
  • User needs multiple terminal panes running different commands
  • User wants to start a background process that persists after terminal closes

How to run

The script is located at scripts/run-in-tmux. Execute it using uv run:

uv run scripts/run-in-tmux -c "npm run dev"

Usage

# Single command (JSON output)
uv run scripts/run-in-tmux -c "npm run dev" --json

# Multiple commands (each gets its own pane)
uv run scripts/run-in-tmux -c "npm run dev" -c "npm test" --json

Options

Flag Description
-c, --command Command to run (required, repeatable)
--json Output JSON to stdout
--plain Line-based plain text output
-q, --quiet Suppress non-essential output
-v, --verbose Show debug details
--no-color Disable colored output
--version Show version and exit

Output

JSON format (--json)

uv run scripts/run-in-tmux -c "echo hello" -c "echo world" --json
{
  "success": true,
  "session_name": "picadillo-1f4f1afa",
  "commands": ["echo hello", "echo world"],
  "panes": 2,
  "working_directory": "/Users/norman/code/picadillo",
  "attach_command": "tmux attach -t picadillo-1f4f1afa",
  "peek_commands": [
    "tmux capture-pane -t picadillo-1f4f1afa.0 -p",
    "tmux capture-pane -t picadillo-1f4f1afa.1 -p"
  ],
  "kill_command": "tmux kill-session -t picadillo-1f4f1afa"
}

Session naming

Session names follow the pattern <repo-slug>-<hash>:

  • repo-slug: First 8 characters of the git repository basename
  • hash: 8-character MD5 hash of the repo path + commands

This ensures unique sessions for different commands in the same repo.

Requirements

  • Python 3.10+
  • tmux installed and running
  • Must be in a git repository
  • Dependencies: typer, rich (auto-installed via uv)

Read the full file on GitHub · 82 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 82 lines · 53 tokens per session scan A d604c16a0548

Subscribe to this mod's changes

run-in-tmux is a skill published in the GitHub repository normful/picadillo (10 stars, last pushed 6mo ago), licensed MIT. It adds 53 tokens to every session and 662 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

surf

Control Chrome browser via CLI for testing, automation, and debugging. Use when the user needs browser automation, screenshots, form filling, page inspection, network/CPU emulation, DevTools streaming, or AI queries via ChatGPT/Gemini/Perplexity/Grok/AI Studio.

w-winter/dot314 · 60 tokens

prose-review

Review prose written for others (e.g., user-facing documentation, prompts for other LLMs, reports, plans, inline comments, docstrings) for local jargon leakage, orphaned references, missing grounding, and audience or genre mismatch. Always run on prose you produce or materially edit, except for routine conversational…

w-winter/dot314 · 84 tokens

text-search

Search indexed text corpora with qmd. For indexed content, prefer qmd over grep.

w-winter/dot314 · 22 tokens

repoprompt-tool-guidance-refresh

Refresh RepoPrompt tool guidance when the CLI/MCP surface changes. Tracks RepoPrompt CE (rpce-cli, the maintained target) across versions, and can diff the frozen Classic CLI (rp-cli) against CE. Uses /.pi/agent/skills/repoprompt-tool-guidance-refresh/scripts/track-rp-version.sh to capture/diff --help and -l (tool…

w-winter/dot314 · 115 tokens

xcodebuildmcp

Build/test Xcode projects via the XcodeBuildMCP MCP server using a local CLI wrapper for pi (no MCP support). Use when the user mentions Xcode, xcodebuild, iOS builds/tests, or XcodeBuildMCP.

w-winter/dot314 · 56 tokens

bearings

Generate a "pick up where I left off" status report across all active Pi sessions. Use when the user asks for bearings, a status report, morning brief, catch-up, "where did I leave off", or "what's in the works". Reads live session state, composes a scannable 4-section digest, and writes a dated report to…

romiluz13/auto-pi · 84 tokens