一键导入
axec-output
Print unread stdout from an axec session since the last read. Use when you need to check for new output without re-reading the full history.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Print unread stdout from an axec session since the last read. Use when you need to check for new output without re-reading the full history.
用 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.
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).
| name | axec-output |
| description | Print unread stdout from an axec session since the last read. Use when you need to check for new output without re-reading the full history. |
| tools | Bash |
Print only the stdout that has accumulated since the last output call for a session. This is an incremental read — each call advances the read cursor.
axec output [OPTIONS]
| Option | Description |
|---|---|
--session UUID|NAME | Target session (defaults to latest if omitted) |
--json | Emit structured JSON response |
axec output --session py
axec output
axec output --session py --json
axec output returns everything written to stdout since the cursor was last advanced.axec output again immediately after returns empty if no new output has arrived.axec cat, which always prints the full history.output for polling workflows — call it periodically to get incremental results.cat instead if you want the complete output history.cat --follow if you want to stream live output continuously.