Claude-skill-registry codex-status
Check the current status of Codex collaboration. Use when user says codex status, check codex, or collaboration status.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/codex-status" ~/.claude/skills/majiayu000-claude-skill-registry-codex-status && rm -rf "$T"
manifest:
skills/data/codex-status/SKILL.mdsource content
Codex Status Skill
Check the current state of the Claude-Codex collaboration.
Steps
Before any file operations, resolve the
.agent-collab directory so commands work outside the project root:
AGENT_COLLAB_DIR="${AGENT_COLLAB_DIR:-}" if [ -n "$AGENT_COLLAB_DIR" ]; then if [ -d "$AGENT_COLLAB_DIR/.agent-collab" ]; then AGENT_COLLAB_DIR="$AGENT_COLLAB_DIR/.agent-collab" elif [ ! -d "$AGENT_COLLAB_DIR" ]; then AGENT_COLLAB_DIR="" fi fi if [ -z "$AGENT_COLLAB_DIR" ]; then AGENT_COLLAB_DIR="$(pwd)" while [ "$AGENT_COLLAB_DIR" != "/" ] && [ ! -d "$AGENT_COLLAB_DIR/.agent-collab" ]; do AGENT_COLLAB_DIR="$(dirname "$AGENT_COLLAB_DIR")" done AGENT_COLLAB_DIR="$AGENT_COLLAB_DIR/.agent-collab" fi
If
$AGENT_COLLAB_DIR does not exist, stop and ask for the project root.
1. Read Status
Read
$AGENT_COLLAB_DIR/status and report:
: No active task, ready for requestsidle
: Task sent, waiting for Codexpending
: Codex actively processingworking
: Codex finished, response readydone
2. Show Current Task
If status is not
idle, read and summarize $AGENT_COLLAB_DIR/requests/task.md:
- Task type
- Brief description
3. Show Response Preview
If status is
done, show brief preview of $AGENT_COLLAB_DIR/responses/response.md
4. Suggest Action
Based on status:
: Ready to delegate with /codex-review, /codex-implement, or /codex-plan-reviewidle
: Check Codex pane or waitpending
: Codex is working, wait for completionworking
: Use /codex-read to see resultsdone