Tmux
My agent harness
npx -y skills add jiangyinzuo/agentic-software-engineering --skill tmuxAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
获取tmux其它pane的屏幕输出、向tmux其它pane发送keys。可以用此技能操作运行在tmux pane中的TUI程序(如gdb)
SKILL.md
0.6 KB, as published. Nobody here has run it
Tmux获取其它pane的屏幕输出
使用
tmux capture-pane -t %paneid -p
获取屏幕输出
Tmux向其它pane发送keys
使用heredoc语法,避免直接在bash上执行tmux send-keys命令存在复杂的转义问题。
cat <<'EOF' | tmux load-buffer -
create table bar(
id int,
name text
);
EOF
tmux paste-buffer -t %paneid
tmux send-keys -t %paneid Enter