claude-print
Run a non-interactive Claude Code print-mode call from Codex. Use when the user asks to \"claude print\", \"ask claude\", \"run claude\", \"consult claude\", or when a Codex Turbo skill needs Claude as an independent peer reviewer.
npx skills add majiayu000/claude-skill-registry --skill claude-print --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Claude Print Run a non-interactive Claude Code CLI print-mode call from Codex. This is the Codex edition's low-level Claude bridge for one-shot review and consultation prompts. ## Step 1: Choose Permission Scope Default to read-only review: ```bash claude -p --permission-mode dontAsk --allowedTools="Read,Grep,Glob,Bash(git diff:*),Bash(git log:*),Bash(git show:*),Bash(git status:*),Bash(git rev-parse:*),Bash(git ls-files:*)" "<prompt>" < /dev/null ``` The Bash allow-list is restricted to read-only git subcommands so peer review cannot mutate the working tree, branches, or remotes. Use broader permissions only when the user explicitly asks Claude to perform write-capable work. ## Step 2: Shape the Prompt Keep the prompt compact and explicit: - State that Claude is an independent reviewer. - Include the exact scope: diff command, files, plan/spec path, or inline artifact text. - Include the required output contract. - Tell Claude to verify codebase claims by reading files before reporting findings. - Tell Claude not to modify files unless the current task explicitly requests write-capable work. For large context, write the context to `.turbo/claude/<tag>-ctx.txt` and pipe it: ```ba
- Step 1: Choose Permission Scope
- Step 2: Shape the Prompt
- Step 3: Run Synchronously
- Step 4: Interpret Results
- Rules
mkdir -p .turbo/claude
What does the claude-print skill do?
Run a non-interactive Claude Code print-mode call from Codex. Use when the user asks to \"claude print\", \"ask claude\", \"run claude\", \"consult claude\", or when a Codex Turbo skill needs Claude as an independent peer reviewer.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill claude-print --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
