claude-start
Start a new Claude Code session in tmux and switch to it. Use when the user wants to start, create, or open a new session.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Start a new Claude Code session in tmux and switch to it. Use when the user wants to start, create, or open a new session.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Detach from the current tmux session, sending it to background. Use when the user wants to hide, minimize, detach, or background the current session.
List all running tmux sessions. Use when the user wants to see active sessions.
Stop/kill a tmux session. Use when the user wants to stop or kill a session.
Switch to another tmux session. Use when the user wants to switch, jump, or go to a different session.
| name | claude-start |
| description | Start a new Claude Code session in tmux and switch to it. Use when the user wants to start, create, or open a new session. |
Arguments passed: $ARGUMENTS
Parse arguments: -y means skip permissions, anything else is the session name (default: claude).
tmux has-session -t <session-name> 2>/dev/null
tmux switch-client -t <session-name>
tmux new-session -d -s <session-name> "claude --remote-control --channels plugin:telegram@claude-plugins-official"
sleep 2
tmux send-keys -t <session-name> Enter
tmux switch-client -t <session-name>
If -y is passed, add --dangerously-skip-permissions to the claude command.
Tell the user the session is started and switched. Remind them they can use /claude-switch to come back.