From ask-llm
Pauses the codex-pair PostToolUse hook temporarily by writing a sentinel file, useful for silencing reviews during noisy refactors, dogfooding, or docs-only changes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ask-llm:codex-pair-pauseThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Pauses the codex-pair hook for the current project without removing the `.codex-pair/context.md` marker. The marker (and its project context) stays in place — only the temporary pause sentinel is written. Resume with `/codex-pair-resume`.
Pauses the codex-pair hook for the current project without removing the .codex-pair/context.md marker. The marker (and its project context) stays in place — only the temporary pause sentinel is written. Resume with /codex-pair-resume.
The hook may also pause itself automatically — on provider quota exhaustion or after
3 consecutive review failures — writing the same sentinel with a JSON body that
records why (kind, reason, resetHint). Manual and automatic pauses are resumed
the same way.
For permanent disable, remove the .codex-pair/ directory instead (rm -rf .codex-pair/). For per-file/per-directory opt-out, use .codex-pair/ignore (gitignore-style globs).
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 pause."
Create the pause sentinel:
mkdir -p <marker-dir>/.codex-pair/state
touch <marker-dir>/.codex-pair/state/paused
Replace <marker-dir> with the directory containing .codex-pair/.
Confirm to the user with the marker directory path:
codex-pair paused for <marker-dir>
Resume with /codex-pair-resume (or `rm <marker-dir>/.codex-pair/state/paused`)
If .gitignore in the marker directory does not already contain .codex-pair/, mention it as a suggestion (do not modify the user's .gitignore without asking).
npx claudepluginhub lykhoyda/ask-llm --plugin ask-llmResumes 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.
Creates a .continue-here.md handoff file preserving complete work state (phase, progress, decisions, blockers) and commits as WIP via git, enabling seamless resumption across sessions.
Creates a `.continue-here.md` handoff file to preserve complete work state across sessions when pausing work mid-phase. Includes phase detection, state gathering, WIP git commit, and resume instructions.