From cc-suite
Fetches and displays output from a completed Codex job. Supports retrieving by job ID or defaults to the most recent completed job.
How this command is triggered — by the user, by Claude, or both
Slash command
/cc-suite:result [job-id]The summary Claude sees in its command listing — used to decide when to auto-load this command
## User Input
## Workflow
### Step 1: Resolve the job
Parse `$ARGUMENTS` to find the job:
| Input | Action |
|-------|--------|
| (empty) | Show the most recent completed job for this session |
| `<job-id>` | Show results for the specified job (prefix match supported) |
If the job is still running:
And STOP.
If no completed jobs found:
And STOP.
### Step 2: Read the stored result
Read the job's result file from the state directory (`{cwd}/.codex-jobs/{job-id}/result.json`). The result file contains the raw Codex output and metadata.
### Step 3: Display the result
If the job ...$ARGUMENTS
Parse $ARGUMENTS to find the job:
| Input | Action |
|---|---|
| (empty) | Show the most recent completed job for this session |
<job-id> | Show results for the specified job (prefix match supported) |
If the job is still running:
Job {id} is still running. Check /cc-suite:status and try again when it finishes.
And STOP.
If no completed jobs found:
No finished Codex jobs found. Run /audit, /implement, or /bug-analyze first.
And STOP.
Read the job's result file from the state directory ({cwd}/.codex-jobs/{job-id}/result.json). The result file contains the raw Codex output and metadata.
# Codex Result
**Job**: {id}
**Kind**: {kind}
**Status**: {status}
**Duration**: {duration}
**Thread ID**: `{threadId}` _(use `/continue {threadId}` to iterate)_
---
{raw Codex output}
---
_Job: `{id}` | Thread: `{threadId}` | Run `/continue {threadId}` to follow up._
If the job failed, show the error message instead of the raw output.
Based on the job kind:
/audit-fix, verify with /verify, or drill deeper with /continue {threadId}"git diff, run tests, or continue with /continue {threadId}"/continue {threadId}"/audit for a fresh scan, or /audit-fix to fix remaining issues"npx claudepluginhub xiaolai/claude-plugin-marketplace --plugin cc-suite/resultDisplays the full verbatim output of a finished Codex job by [job-id], including status, verdict, summary, findings, details, artifacts, next steps, errors, and follow-ups.
/resultRetrieves and displays the complete stored output from a finished multi-CLI job, preserving all details including verdict, findings, artifacts, and follow-up commands.
/resultRetrieves and displays the stored final output for a completed Pi job, including verdict, findings, artifacts, and next steps. Preserves all details without summarization.
/resultDisplays the full final output of a finished Gemini job in the repository by job ID, preserving all details like verdict, summary, findings, artifacts, errors, and follow-up commands.