一键导入
axec-cat
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.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
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.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | axec-cat |
| description | 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. |
| tools | Bash |
Print the full recorded output of a session. Optionally follow live output as it arrives.
axec cat [OPTIONS]
| Option | Description |
|---|---|
--session UUID|NAME | Target session (defaults to latest if omitted) |
--follow | After printing history, keep streaming live output |
--stderr | Print stderr instead of stdout (only with pipe backend) |
--json | Emit structured JSON response |
axec cat --session build
axec cat --session build --stderr
axec cat --session server --follow
axec cat
axec cat | axec output | |
|---|---|---|
| Scope | Full history from session start | Only unread since last call |
| Cursor | Does not advance read cursor | Advances read cursor |
| Use case | Review complete log, stream live | Incremental polling |
cat to review the complete output of a session.cat --follow to monitor a long-running process in real time.cat --stderr only with --backend pipe sessions — pty backend merges stderr into stdout.output instead when you only want new, unread content.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.
Force-kill a running REPL session or all sessions. Use when you need to stop REPL processes managed by axrepl.
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).