From skills
Delegates well-scoped tasks to a `claude -p` subagent for second opinions or independent work. Supports model and effort selection.
How this skill is triggered — by the user, by Claude, or both
Slash command
/skills:claudeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Claude Code is an independent agent on PATH (`claude`), sharing this working
Claude Code is an independent agent on PATH (claude), sharing this working
tree and already authenticated. Use it as a second opinion or delegated worker,
not as ground truth: verify its claims, own any changes, and keep its task
contract narrow.
Use claude -p --model opus --effort high unless the user or task calls for a
different model or thinking level.
opus, sonnet, or fable, or a full
model name. Default opus.--effort flag. Valid levels are
low, medium, high, xhigh, and max. Default high.--max-budget-usd <amount> when
the user gives a budget or the task is likely to sprawl.Example:
claude -p --model opus --effort high "<prompt>"
Prompt Claude like an operator: compact, block-structured, and explicit about the artifact you need. A sharper contract beats higher effort.
<task> — the concrete job, context, and expected end state.<output_contract> — exact response shape, highest-value first.<default_follow_through> — take low-risk interpretations and continue;
stop only when a missing detail changes correctness, safety, or an
irreversible action.<verification_loop> — inspect the result against requirements and revise
before finalizing.<grounding> — ground every claim in code or tool output; label
inferences.<action_safety> — keep the diff tightly scoped; no drive-by refactors.Use Claude for consultation when the user asks for Claude's view or when a second-agent read would materially reduce risk. Keep it read-oriented unless the user explicitly asks it to edit.
--tools "Read,Grep,Glob,Bash" --permission-mode dontAsk.Delegate implementation to Claude only when the user names Claude for the task. Never hand it work on your own initiative, and never re-delegate follow-up work without a fresh ask.
--tools "Read,Grep,Glob,Bash" --permission-mode dontAsk.--dangerously-skip-permissions only in a
dedicated worktree, with a self-authored prompt and a mandatory diff
review after.--output-format text by default. Use
--output-format json only when the caller needs structured metadata.claude -p is a networked, authenticated non-interactive run. If it fails,
classify the failure before retrying.
claude -p says Not logged in, retry once with the
required approval because local auth can depend on keychain/session access.--max-budget-usd or a narrower prompt before raising
effort.-p skips the interactive trust dialog, so run it only from
a repo or worktree you intentionally trust.claude -p --model opus --effort high as the default invocation.--model and --effort.npx claudepluginhub dzhng/skillsRuns Anthropic's Claude CLI as a subagent for second opinions, code reviews, and questions from a Codex (or other) session when you want an external perspective.
Use when the user asks to run Claude Code CLI (`claude`, `claude resume`) for review, analysis, implementation, refactoring, debugging, or follow-up specifically through Claude Code.
Routes Claude Code tasks to optimal models (Haiku, Sonnet, Opus) using decision matrices, cost tables, complexity signals, and subagent assignments for cost/quality tradeoffs.