← 返回
效率工具 中文

Claude Code within tmux

Manage Claude Code instances living inside tmux sessions. Users usually create separate tmux sessions for separate projects. Use this skill when you need to read the latest Claude Code response in a particular tmux session / project, send it a prompt and get the response, or run /compact directly via tmux (no extra scripts required).
管理运行在 tmux 会话中的 Claude Code 实例。用户通常为不同项目创建独立的 tmux 会话。使用此技能可以读取特定 tmux 会话/项目中的最新 Claude Code 回复,向其发送提示并获取回复,或通过 tmux 直接运行 /compact(无需额外脚本)。
paulrahul
效率工具 clawhub v1.0.0 1 版本 99717.2 Key: 无需
★ 0
Stars
📥 2,468
下载
💾 49
安装
1
版本
#latest

概述

Goal

Give Codex a repeatable checklist for interacting with Claude Code when it’s running inside tmux. Everything happens with standard tmux commands—no helper scripts. Follow these steps any time you see instructions like “check Claude in session X” or “run /compact on Claude.”

Conventions

  1. Session naming – We refer to tmux sessions by their tmux session name. Session names can be assigned using tmux new-session -s . E.g. if we had created a tmux session for project FooBar using tmux new-session -s foobar, then we will refer to this session by the name foobar.
  2. Claude pane – Within a session, there should be exactly one pane whose window title or pane title is claude. If the pane isn’t named, rename it first (Ctrl-b : select-pane -T claude).
  3. Standard markers – Claude Code prints user prompts with ❯ … and its replies with ⏺ …. We rely on that to spot the latest exchange.

Workflow

1. Locate the Claude pane

tmux list-panes -a -F '#{session_name}:#{window_index}.#{pane_index} #{pane_title}' | grep "^<session_name>" | grep -i claude
  • If nothing matches, say “No pane titled ‘claude’ found inside session .”
  • If multiple panes match, pick the one with the lowest window_index/pane_index unless context says otherwise.
  • Record the target as :. for subsequent commands.

2. View the latest exchange

tmux capture-pane -p -J -t <target> -S -200
  • Scan from the bottom upward for the last block (user) followed by (Claude). Quote those lines back to the user.
  • If no ❯/⏺ pair exists, say “No exchange found yet.”

3. Send a prompt

tmux send-keys -t <target> -l -- "<prompt>"
sleep 0.1
 tmux send-keys -t <target> Enter
  • After sending, poll using capture-pane until a new block appears (or a sensible timeout, e.g., 3 minutes). Report the reply verbatim.
  • If the timeout expires, say “Claude hasn’t replied yet—still waiting.”

4. Run /compact

Same as sending any prompt, but send /compact. Confirm with “Triggered /compact in session .” (Claude will respond in-pane; no need to quote unless asked.)

5. Dump raw buffer (debug)

tmux capture-pane -p -J -t <target> -S -400

Use this when the user wants the entire scrollback or when parsing fails.

Tips

  • Always double-check you’re addressing the right pane before sending commands—especially in shared sessions.
  • If the Claude pane lives on a non-default tmux socket, prefix every tmux command with tmux -S /path/to/socket ….
  • When summarizing results, mention the session/pane you used—for traceability.
  • If the user wants multiple sessions handled, repeat the workflow per session.

This skill keeps things simple: pure tmux, no external code. Use it whenever you need hands-on access to Claude Code running inside tmux.

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-28 20:27 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

productivity

Obsidian

steipete
操作 Obsidian 仓库(纯 Markdown 笔记)并通过 obsidian-cli 自动化。
★ 430 📥 103,712
productivity

Weather

steipete
获取当前天气和预报(无需API密钥)
★ 445 📥 226,147
productivity

Word / DOCX

ivangdavila
创建、检查和编辑 Microsoft Word 文档及 DOCX 文件,支持样式、编号、修订记录、表格、分节符及兼容性检查等功能。
★ 438 📥 147,292