一键导入
tmux
Use this skill to run background processes or long running processes using tmux.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use this skill to run background processes or long running processes using tmux.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create and maintain JSR (JavaScript Registry) packages. Use this whenever the user wants to publish a package to JSR, set up a new JSR project, configure exports, write documentation, or troubleshoot JSR publishing.
Skills for Puzzle Driven Development (PDD). Refer to this skill when a project uses PDD or the operator mentions PDD or puzzle-driven development. Use this skill when: (1) Breaking a large feature into incremental deliverables, (2) Writing @todo stub comments to mark unimplemented code, (3) Picking up an existing @todo puzzle to implement, (4) Deciding whether to wrap up a task with a stub or keep working.
Use this when: (1) Creating a new project-specific skill to document project patterns, (2) Improving or updating an existing project skill, (3) Writing skill descriptions that will trigger other agents, (4) Organizing skill content for progressive disclosure, or (5) Learning what project-specific skills exist in .claude/skills/. Ensures skills follow project conventions and provide effective progressive disclosure.
Playwright testing. Use this skill to write and run automated tests for web applications using Playwright.
Use this skill to send a message over Discord to the operator
Learn the rules of packlets for managing a JavaScript/TypeScript project. Use this skill whenever a user mentions packlets or when working in a project with packlets (src/packlets) directory.
| name | tmux |
| description | Use this skill to run background processes or long running processes using tmux. |
tmux lets you run commands in the background and check on them later. When you run a normal bash command, you have to wait for it to finish. With tmux, you can start a command, let it run in the background, and check its output whenever you want.
Key Terms:
Always do this first:
# Create a new session
tmux new-session -d -s mysession
# See what sessions exist
tmux ls
# Delete a session when done
tmux kill-session -t mysession
# Create a tab called "mytab" in session "mysession"
tmux new-window -t mysession -n mytab
# See what tabs exist
tmux list-windows -t mysession
# Delete a tab
tmux kill-window -t mysession:mytab
# Run "npm start" in the "server" tab
tmux send-keys -t mysession:server 'npm start' Enter
Enter to actually run the command.# Stop a running command: Send Ctrl+C
tmux send-keys -t mysession:server C-c
Common stop signals:
C-c = Ctrl+C (interrupt)C-d = Ctrl+D (end input)# See what's on screen now
tmux capture-pane -t mysession:server -p
If you don't see the output you want yet, sleep and run again. If you don't know how long it will take, start at 15 seconds, doubling the sleep duration each time, but never sleep more than 4 minutes (240 seconds).