cli-reference

0
0
Source

Claude Code CLI commands, flags, headless mode, and automation patterns

Install

mkdir -p .claude/skills/cli-reference && curl -L -o skill.zip "https://mcp.directory/api/skills/download/5267" && unzip -o skill.zip -d .claude/skills/cli-reference && rm skill.zip

Installs to .claude/skills/cli-reference

About this skill

CLI Reference

Complete reference for Claude Code command-line interface.

When to Use

  • "What CLI flags are available?"
  • "How do I use headless mode?"
  • "Claude in automation/CI/CD"
  • "Output format options"
  • "System prompt via CLI"
  • "How do I spawn agents properly?"

Core Commands

CommandDescriptionExample
claudeStart interactive REPLclaude
claude "query"REPL with initial promptclaude "explain this project"
claude -p "query"Headless mode (SDK)claude -p "explain function"
cat file | claude -pProcess piped contentcat logs.txt | claude -p "explain"
claude -cContinue most recentclaude -c
claude -c -p "query"Continue via SDKclaude -c -p "check types"
claude -r "id" "query"Resume sessionclaude -r "auth" "finish PR"
claude updateUpdate versionclaude update
claude mcpConfigure MCP serversSee MCP docs

Session Control

FlagDescriptionExample
--continue, -cLoad most recent conversationclaude --continue
--resume, -rResume session by ID/nameclaude --resume auth-refactor
--session-idUse specific UUIDclaude --session-id "550e8400-..."
--fork-sessionCreate new session on resumeclaude --resume abc --fork-session

Headless Mode (Critical for Agents)

FlagDescriptionExample
--print, -pNon-interactive, exit afterclaude -p "query"
--output-formattext, json, stream-jsonclaude -p --output-format json
--max-turnsLimit agentic turnsclaude -p --max-turns 100 "query"
--verboseFull turn-by-turn outputclaude --verbose
--dangerously-skip-permissionsSkip permission promptsclaude -p --dangerously-skip-permissions
--include-partial-messagesInclude streaming eventsclaude -p --output-format stream-json --include-partial-messages
--input-formatInput format (text/stream-json)claude -p --input-format stream-json

Tool Control

FlagDescriptionExample
--allowedToolsAuto-approve these tools"Bash(git log:*)" "Read"
--disallowedToolsBlock these tools"Bash(rm:*)" "Edit"
--toolsOnly allow these tools--tools "Bash,Edit,Read"

Subagent Definition (--agents flag)

Define custom subagents inline via JSON:

claude --agents '{
  "code-reviewer": {
    "description": "Expert code reviewer. Use proactively after code changes.",
    "prompt": "You are a senior code reviewer. Focus on code quality and security.",
    "tools": ["Read", "Grep", "Glob", "Bash"],
    "model": "sonnet"
  },
  "debugger": {
    "description": "Debugging specialist for errors and test failures.",
    "prompt": "You are an expert debugger. Analyze errors and provide fixes."
  }
}'

Agent Fields

FieldRequiredDescription
descriptionYesWhen to invoke this agent
promptYesSystem prompt for behavior
toolsNoAllowed tools (inherits all if omitted)
modelNosonnet, haiku, or claude-opus-4-5-20251101

Key Insight

When Lead uses Task tool, it auto-spawns from these definitions. No manual spawn needed.

System Prompt Customization

FlagBehaviorModes
--system-promptReplace entire promptInteractive + Print
--system-prompt-fileReplace from filePrint only
--append-system-promptAppend to default (recommended)Interactive + Print

Use --append-system-prompt for most cases - preserves Claude Code capabilities.

Model Selection

FlagDescriptionExample
--modelSet model for session--model claude-sonnet-4-5
--fallback-modelFallback if default overloaded--fallback-model sonnet

Aliases: sonnet, opus, haiku

MCP Configuration

FlagDescriptionExample
--mcp-configLoad MCP servers from JSON--mcp-config ./mcp.json
--strict-mcp-configOnly use these MCP servers--strict-mcp-config --mcp-config ./mcp.json

Advanced Flags

FlagDescriptionExample
--add-dirAdd working directories--add-dir ../apps ../lib
--agentSpecify agent for session--agent my-custom-agent
--permission-modeStart in permission mode--permission-mode plan
--permission-prompt-toolMCP tool for permissions--permission-prompt-tool mcp_auth
--plugin-dirLoad plugins from directory--plugin-dir ./my-plugins
--settingsLoad settings from file/JSON--settings ./settings.json
--setting-sourcesWhich settings to load--setting-sources user,project
--betasBeta API headers--betas interleaved-thinking
--debugEnable debug mode--debug "api,hooks"
--ideAuto-connect to IDE--ide
--chromeEnable Chrome integration--chrome
--no-chromeDisable Chrome for session--no-chrome
--enable-lsp-loggingVerbose LSP debugging--enable-lsp-logging
--version, -vOutput versionclaude -v

Output Formats

JSON (for parsing)

claude -p "query" --output-format json
# {"result": "...", "session_id": "...", "usage": {...}}

Streaming (for real-time monitoring)

claude -p "query" --output-format stream-json
# Newline-delimited JSON events

Structured Output (schema validation)

claude -p "Extract data" \
  --output-format json \
  --json-schema '{"type":"object","properties":{...}}'

Headless Agent Pattern (CRITICAL)

Proper headless agent spawn:

claude -p "$TASK_PROMPT" \
  --session-id "$UUID" \
  --dangerously-skip-permissions \
  --max-turns 100 \
  --output-format stream-json \
  --agents '{...}' \
  --append-system-prompt "Context: ..."

Missing any of these causes hangs:

  • --session-id - Track the session
  • --dangerously-skip-permissions - Headless requires this
  • --max-turns - Prevents infinite loops

Common Patterns

CI/CD Automation

claude -p "Run tests and fix failures" \
  --dangerously-skip-permissions \
  --max-turns 50 \
  --output-format json | jq '.result'

Piped Input

cat error.log | claude -p "Find root cause"
gh pr diff | claude -p "Review for security"

Multi-turn Session

id=$(claude -p "Start task" --output-format json | jq -r '.session_id')
claude -p "Continue" --resume "$id"

Stream Monitoring

claude -p "Long task" \
  --output-format stream-json \
  --include-partial-messages | while read -r line; do
    echo "$line" | jq '.type'
done

Keyboard Shortcuts (Interactive)

ShortcutAction
Ctrl+CCancel current
Ctrl+DExit
Ctrl+RReverse search history
Esc EscRewind changes
Shift+TabToggle permission mode

Quick Commands

PrefixAction
/Slash command
!Bash mode
#Add to memory
@File mention

You might also like

flutter-development

aj-geddes

Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.

643969

drawio-diagrams-enhanced

jgtolentino

Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.

591705

ui-ux-pro-max

nextlevelbuilder

"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."

318399

godot

bfollington

This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.

340397

nano-banana-pro

garg-aayush

Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.

452339

fastapi-templates

wshobson

Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.

304231

Stay ahead of the MCP ecosystem

Get weekly updates on new skills and servers.