Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
Debug and test tmux pane status detection for AI agents (opencode, claude, amp). Use when patterns aren't matching, status icons are wrong, or adding new detection patterns.
tmux list-panes -a -F "#{session_name}:#{window_name}.#{pane_index} #{pane_current_command}" | grep -E "opencode|claude|amp"
tmux capture-pane -t "main:1" -p -S -30 | tail -40
tmux capture-pane -t "main:1" -p -S -30 | cat -v | tail -40
tmux capture-pane -t "main:1" -p -S -20 | grep -o "pattern"
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)
npx skills add edmundmiller/dotfiles --skill tmux-status-debugHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Clear and well structured, with only minor parts that might need a second read.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Mostly actionable with clear steps; only a few small gaps remain.