Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

tmux-status-debugtmux 状态调试

Agent Skill

tmux-status-debug 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,224

周安装

50

GitHub Stars

59

下载量

392
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tmux-status-debug(tmux 状态调试)
来源仓库:https://github.com/edmundmiller/dotfiles
仓库路径:skills/tmux-status-debug
安装命令:
npx skills add https://github.com/edmundmiller/dotfiles --skill tmux-status-debug
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/edmundmiller/dotfiles --skill tmux-status-debug

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于需要根据关键词或任务场景从来源线索中获取信息的场景。
  • 通过 npx skills add 命令安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件读写操作。
  • tmux-status-debug 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Debugging tmux-opencode-integrated Status Detection

When to Use

  • Status icons showing wrong state (e.g., showing ERROR when agent is IDLE)
  • Adding new patterns for agent detection
  • Testing pattern matching against real pane content

Quick Commands

List all agent panes

tmux list-panes -a -F "#{session_name}:#{window_name}.#{pane_index} #{pane_current_command}" | grep -E "opencode|claude|amp"

Capture pane content (raw)

tmux capture-pane -t "main:1" -p -S -30 | tail -40

Capture with control chars visible

tmux capture-pane -t "main:1" -p -S -30 | cat -v | tail -40

Check if pattern exists in pane

tmux capture-pane -t "main:1" -p -S -20 | grep -o "pattern"

Debug Script

Create /tmp/debug_status.py and run with the Nix Python that has libtmux:

import sys
sys.path.insert(0, "/Users/emiller/.config/dotfiles/packages/tmux-opencode-integrated/scripts")
import smart_name
import re

import libtmux
server = libtmux.Server()
for session in server.sessions:
    for window in session.windows:
        for pane in window.panes:
            program = smart_name.get_pane_program(pane)
            if program in smart_name.AGENT_PROGRAMS:
                print(f"\n=== {program} in {session.name}:{window.name} ===")
                try:
                    cmd_output = pane.cmd("capture-pane", "-p", "-S", "-20").stdout
                    if isinstance(cmd_output, list):
                        content = "\n".join(cmd_output)
                    else:
                        content = str(cmd_output)

                    cleaned = smart_name.strip_ansi_and_control(content)
                    print(f"Last 300 chars (cleaned):\n{cleaned[-300:]}")
                    print(f"\n--- Status: {smart_name.get_opencode_status(pane)} ---")
                except Exception as e:
                    print(f"Error: {e}")

Find the Nix Python with libtmux

# Build the package and get the store path
nix build .#tmux-opencode-integrated --no-link --print-out-paths

# Check wrapper to find Python path
head -10 /nix/store/<hash>-tmux-opencode-integrated-*/share/tmux-plugins/tmux-opencode-integrated/scripts/smart-name.sh

# Run debug script with that Python
/nix/store/<python-hash>-python3-*-env/bin/python3 /tmp/debug_status.py

Pattern Testing

Test patterns against sample content:

import re

content = """ctrl+t variants  tab agents  ctrl+p commands    • OpenCode 1.1.30"""

patterns = [
    (r"OpenCode \d+\.\d+\.\d+", "IDLE - version"),
    (r"ctrl\+p commands", "IDLE - status bar"),
    (r"esc interrupt", "BUSY - can interrupt"),
    (r"Esc to cancel", "BUSY - can cancel"),
    (r"■■■", "BUSY - progress bar"),
]

for pattern, desc in patterns:
    if re.search(pattern, content, re.IGNORECASE):
        print(f"✓ {desc}: {pattern}")

Status Priority

Order matters - first match wins:

  1. ERROR - Traceback, panic, FATAL ERROR, API errors
  2. WAITING - Allow once?, Permission required, yes/no/skip prompts
  3. BUSY - Thinking..., spinners, Running tools, esc interrupt
  4. IDLE - Input prompt, context display, OpenCode version, ctrl+p commands
  5. UNKNOWN - No patterns matched (fallback)

Adding New Patterns

  1. Capture real pane content with the debug script above
  2. Identify unique text that indicates the state
  3. Add pattern to appropriate list in smart_name.py
  4. Add test case in tests/test_smart_name.py
  5. Run tests: uvx pytest tests/test_smart_name.py -v
  6. Rebuild: nix build.#tmux-opencode-integrated

Common Issues

"No module named 'libtmux'"

Using wrong Python. Must use the Nix-wrapped Python from the package.

Patterns not matching

Terminal control characters may be interfering. The strip_ansi_and_control() function should handle this, but check with cat -v to see raw content.

Status showing ERROR when it shouldn't

Check if content contains error-like strings from previous output. The detection looks at last 20 lines of pane content.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.7%
按下载量换算136

Claude

34.43%
按下载量换算135

Cursor

18.24%
按下载量换算72

Gemini CLI

9.21%
按下载量换算36

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/edmundmiller/dotfiles --skill tmux-status-debug 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills