codex-result

Solid

Show the final stored result of a completed Codex job. Use when asked "codex result", "코덱스 결과", "작업 결과 보여줘", or wants output from a finished job.

AI & Automation 47 stars 4 forks Updated 4 days ago MIT

Install

View on GitHub

Quality Score: 87/100

Stars 20%
56
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Codex Job Result + Stored Review Linking Thin wrapper around the Official Codex companion's `result` subcommand. If a codex-advisor review file exists for the same timestamp window, also surface its path so the user can read the classified findings (Agreed / Disputed / Nuanced / False Positive / Uncited). ## Phase 1: Fetch companion result ```bash set -o pipefail CODEX_COMPANION=$("${CLAUDE_PLUGIN_ROOT}/scripts/resolve-companion.sh") \ || { echo "Official Codex plugin not found — run /codex-setup" >&2; exit 1; } # Forward args verbatim. The companion accepts an optional [job-id]; # without one it shows the most recent finished job. node "$CODEX_COMPANION" result $ARGUMENTS ``` Relay the companion's rendered result verbatim (includes the Codex session ID, making `codex resume <session-id>` possible). ## Phase 2: Find the matching codex-advisor report Codex-advisor stores reports at `${CLAUDE_PLUGIN_DATA}/reviews/<type>-<YYYYMMDD-HHMMSS>.md`. These are separate from companion jobs — a given job may or may not have a matching report depending on which skill launched it. ```bash REVIEWS_DIR="${CLAUDE_PLUGIN_DATA}/reviews" if [ -d "$REVIEWS_DIR" ]; then # List the 3 most recent reports; the user can pick the one whose # timestamp aligns with the job. ls -1t "$REVIEWS_DIR" 2>/dev/null | head -3 fi ``` Append: ```markdown ## Related codex-advisor reports (most recent) - review-20260414-102530.md - rescue-20260414-100112.md - ... If the timestamp matches the job...

Details

Author
LeeJuOh
Repository
LeeJuOh/claude-code-zero
Created
4 months ago
Last Updated
4 days ago
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category