From ask-llm
Resumes the codex-pair PostToolUse hook after a previous pause. Removes the paused sentinel and failure counter to re-enable review on the next Edit/Write/MultiEdit.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ask-llm:codex-pair-resumeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Removes the pause sentinel written by `/codex-pair-pause`, restoring normal codex-pair review behavior. The `.codex-pair/context.md` marker and `.codex-pair/state/` directory are left in place (the directory holds the cache, inflight locks, and any other future state per [ADR-092](../../../../docs/DECISIONS.md)).
Removes the pause sentinel written by /codex-pair-pause, restoring normal codex-pair review behavior. The .codex-pair/context.md marker and .codex-pair/state/ directory are left in place (the directory holds the cache, inflight locks, and any other future state per ADR-092).
Locate the .codex-pair/context.md marker by walking up from the current working directory (the project ROOT is the directory holding .codex-pair/). If no marker is found, inform the user: "codex-pair is not enabled in this project (no .codex-pair/context.md marker found). Nothing to resume."
Check whether the pause sentinel exists at <marker-dir>/.codex-pair/state/paused:
.codex-pair/state/paused sentinel found. No change."cat it and show the user
the kind, reason, and resetHint fields before removing, so they know
whether the provider has likely recovered.rm -f -- "<marker-dir>/.codex-pair/state/paused" "<marker-dir>/.codex-pair/state/failures.json"
Confirm to the user with the marker directory path:
codex-pair resumed for <marker-dir>
The next Edit/Write/MultiEdit will trigger a review.
npx claudepluginhub lykhoyda/ask-llm --plugin ask-llmPauses the codex-pair PostToolUse hook temporarily by writing a sentinel file, useful for silencing reviews during noisy refactors, dogfooding, or docs-only changes.
Restores complete project context from previous Claude Code sessions using STATE.md loading, checkpoint detection (.continue-here files), incomplete work detection, and status-driven next-action routing.
Resumes parked coding sessions from handoff documents: locates in CLAUDE.md or .parkinglot/, summarizes next steps, validates git branches/files, offers update or fresh start options.