Claude Code Headless Mode
Use this skill when the job should be executed through Claude Code itself, not solved inline. Focus on commands and workflows that match current stable Claude Code behavior.
Core Rules
- Treat on the target machine as the compatibility floor. CLI flags move faster than blog posts and copied examples.
- Permission rule syntax varies by build. Anthropic docs often show forms like , while the installed help on this machine still shows . Mirror the syntax shown by the target machine's .
- Default to the model the user already configured through , settings, or .
- Do not add unless the user explicitly asked for a model override or the workflow must pin a model for reproducibility.
- Prefer over unless replacing the default Claude Code behavior is intentional.
- Default to safe automation. If the user wants a truly unattended run, use explicit permission rules or ; reserve for isolated environments.
Quick Verification
Run these checks before giving advanced advice:
bash
claude --version
claude auth status --text
claude --help
If installation or updates look odd, use:
Installation Guidance
- Anthropic's getting-started docs still show
npm install -g @anthropic-ai/claude-code
as the standard install path.
- Newer builds may also support native installer flows and .
- If the user needs installation help, point them to the official Claude Code setup docs and verify the result with rather than assuming one installer path is universal.
Headless Command Patterns
Basic Non-Interactive Run
Use
/
for non-interactive execution:
bash
claude -p "summarize the repository architecture"
Add
when the caller needs machine-readable output:
bash
claude -p "review the auth layer for risks" --output-format json
Model Selection
- Omit by default.
- If the user explicitly wants a model override, use
claude --model <alias-or-name> ...
.
- For persistent defaults, prefer settings () or .
- For third-party deployments, pin models via settings or environment variables instead of bolting onto every command example.
Permission Modes
Claude Code supports these permission modes:
| Mode | Use |
|---|
| Interactive exploration. Prompts on first use of write/bash-style tools. |
| Recommended starting point for coding automation. Auto-accepts edits, but command execution can still prompt. |
| Analysis only. No file changes or command execution. |
| Auto-denies anything not already approved by permission rules. Good for unattended-but-constrained runs. |
| Skips prompts entirely. Only for strong sandbox / container / VM isolation. |
Important clarifications:
- is the skill's recommended default, not the CLI default.
- If the user says "no prompts at all," prefer permission rules or with explicit allow rules.
- Only recommend when the environment is already isolated and the user accepts the risk.
- For read-only analysis, prefer plus or ; do not reach for just to suppress prompts.
Tool Availability vs Permission Approval
Do not mix these up:
- restricts which built-in tools are available at all.
- pre-approves specific tools or tool rules so Claude does not prompt for them.
- removes tools or rules from context.
Permission rules follow
or
syntax.
Use wildcard rules when the command will include arguments:
- Good:
- Good:
- Risky for real use: because it matches only the exact literal command
If the local CLI help shows colon syntax such as
, use that form on that machine. The important part is to allow an argument-aware rule rather than an exact literal command.
If the user wants Claude limited to a narrow tool family, you should usually use both
and
:
defines the hard boundary,
removes prompts inside that boundary.
Output Formats
- : default human-readable output
- : one final structured result
- : event stream for long-running automation
Do not promise a fixed JSON schema unless you have validated it on the target version. Prefer wording like "returns a final result object with response text, timing, and session metadata."
Commonly Safe Flags
These are appropriate starting points on current stable builds:
Version-Sensitive Flags
Published docs sometimes mention flags that are absent from the installed binary on a given machine. Before emitting less-common flags, verify them with
.
Recommended Command Templates
Read-Only Analysis
bash
claude -p "count the total lines of code in this repo, grouped by language" \
--permission-mode default \
--tools "Bash,Read" \
--allowedTools "Read" "Bash(find:*)" "Bash(wc:*)"
Safe Edit Run
bash
claude -p "fix the failing login test and rerun the relevant test command" \
--permission-mode acceptEdits \
--tools "Bash,Read,Edit,Write" \
--allowedTools "Read" "Edit" "Write" "Bash(npm test *)"
JSON Report
bash
claude -p "review the repository for security issues and produce a concise report" \
--output-format json \
--append-system-prompt "Focus on concrete findings, exploitability, and mitigations."
Resume a Session
bash
claude -r "$session_id" -p "continue by updating the tests and summarizing what changed"
Continue the Most Recent Session
bash
claude -c -p "continue with the next step"
Use MCP Tools
bash
claude -p "investigate the API latency spike" \
--permission-mode acceptEdits \
--mcp-config monitoring-tools.json \
--allowedTools "Read" "mcp__datadog__*" "mcp__prometheus__*"
Fully Unattended Execution in an Isolated Environment
Use only when the environment is already sandboxed:
bash
claude -p "run the migration and fix the resulting type errors" \
--permission-mode bypassPermissions \
--tools "Bash,Read,Edit,Write"
Execution Workflow
- Confirm the user wants Claude Code CLI rather than an inline answer.
- Verify the installed CLI shape with if you plan to use uncommon flags.
- Choose the least-permissive mode that still fits the task.
- Build the command without unless the user explicitly asked for an override.
- Restrict tools with when safety or predictability matters.
- Use for prompt-free approval of known-safe actions.
- Return exact commands plus short caveats about assumptions and safety.
When To Pause
Pause only when one of these is materially unclear:
- The user wants a specific model or provider behavior that requires pinning.
- They asked for a fully unattended run in an environment that is not clearly sandboxed.
- The workflow depends on a Claude Code feature that is not visible in .
Otherwise, proceed and give the best current command.
Final Response Expectations
When using this skill, the output should usually include:
- the exact command or command sequence
- a one-line note that the configured Claude model is being used by default
- any permission or isolation caveat
- the resume command if the workflow is meant to continue later
References