ワンクリックで
axrepl-kill
Force-kill a running REPL session or all sessions. Use when you need to stop REPL processes managed by axrepl.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Force-kill a running REPL session or all sessions. Use when you need to stop REPL processes managed by axrepl.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Remove exited REPL sessions and their on-disk state. Use after killing REPL sessions or when finished with completed REPL jobs.
Send a script to a REPL session with completion-aware execution. Use when you need to execute code in a Python, Node, Bash, or Zsh REPL and reliably capture the full output without guessing timeouts.
List known REPL sessions with their driver info. Use when you need to see which REPL sessions exist and their status.
Start a REPL session with driver-aware completion tracking. Use when you need to launch a Python, Node, Bash, or Zsh REPL that supports completion-aware input via axrepl input.
Interactively attach to a running axec session for direct terminal access. Use when you need full interactive control of a session (like tmux attach).
Print full output history from an axec session, optionally following live output. Use when you need the complete log or want to stream output in real time.
| name | axrepl-kill |
| description | Force-kill a running REPL session or all sessions. Use when you need to stop REPL processes managed by axrepl. |
| tools | Bash |
Force-kill a specific REPL session or all running sessions.
axrepl kill --session UUID|NAME
axrepl kill --all
| Option | Description |
|---|---|
--session UUID|NAME | Kill a specific session (mutually exclusive with --all) |
--all | Kill all running sessions (mutually exclusive with --session) |
--json | Emit structured JSON response |
One of --session or --all is required.
axrepl kill --session py
axrepl kill --all
axrepl clean to remove the exited session's on-disk state.axrepl kill interchangeably with axec kill — both send kill signals to the same daemon-managed sessions.axrepl clean — Remove exited REPL sessions and their on-disk state.axec kill — Same kill functionality (sessions are shared between axec and axrepl).