| name | pp-claude-agent-sdk-python-docs | |||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| description | A source-grounded CLI for exploring and verifying the Claude Agent SDK Python docs. Trigger phrases: `look up Claude Agent SDK Python`, `verify this against Claude Agent SDK docs`, `ClaudeSDKClient docs`, `ClaudeAgentOptions reference`, `use claude agent sdk python docs`, `run claude agent sdk python docs`. | |||||||||||||||||
| author | Nik | |||||||||||||||||
| license | Apache-2.0 | |||||||||||||||||
| argument-hint | <command> [args] | install cli|mcp | |||||||||||||||||
| allowed-tools | Read Bash | |||||||||||||||||
| metadata |
|
This skill drives the claude-agent-sdk-python-docs-pp-cli binary. You must verify the CLI is installed before invoking any command from this skill. If it is missing, install it first:
- Install via the Printing Press installer. It defaults binaries to
$HOME/.local/binon macOS/Linux and%LOCALAPPDATA%\Programs\PrintingPress\binon Windows:npx -y @mvanhorn/printing-press-library install claude-agent-sdk-python-docs --cli-only
- Verify:
claude-agent-sdk-python-docs-pp-cli --version - Ensure the reported install directory is on
$PATHfor the agent/runtime that will invoke this skill.
If the npx install fails (no Node, offline, etc.), fall back to a direct Go install (requires Go 1.26.4 or newer). This installs into $GOPATH/bin (default $HOME/go/bin), so add that directory to $PATH instead:
go install github.com/mvanhorn/printing-press-library/library/developer-tools/claude-agent-sdk-python-docs/cmd/claude-agent-sdk-python-docs-pp-cli@latestIf --version reports "command not found" after install, the runtime cannot see the binary directory on $PATH. Do not proceed with skill commands until verification succeeds.
Fetch the raw Claude Code docs index, search the Python Agent SDK reference, and extract exact symbols, examples, and citations. Novel verification and context commands help agents use the SDK without guessing.
Use this CLI when you need exact Claude Agent SDK Python documentation, examples, signatures, or citations in an agent-friendly shape. It is strongest for implementation planning, code review, and preventing SDK hallucinations.
Do not use this CLI for:
- Do not use this CLI to run Claude Agent SDK applications.
- Do not use this CLI for TypeScript SDK questions unless the docs mirror has been expanded to TypeScript pages.
- Do not use this CLI as a replacement for live Claude Code authentication or account setup.
These capabilities aren't available in any other tool for this API.
-
verify— Check Python code imports and qualified names against documented Claude Agent SDK symbols.Use this before trusting generated SDK code or reviewing a PR that imports claude_agent_sdk.
claude-agent-sdk-python-docs-pp-cli verify ./src --agent
-
diff— Compare current docs entity hashes against an optional baseline file.Use this to detect whether SDK docs facts have changed against a saved baseline.
claude-agent-sdk-python-docs-pp-cli diff --since latest --agent
-
audit-links— Validate internal anchors, guide links, and section references in the fetched docs corpus.Use this before relying on context bundles or citations in generated code reviews.
claude-agent-sdk-python-docs-pp-cli audit-links --agent
-
context— Build a compact source-cited docs bundle for one SDK implementation task.Use this when an agent needs exact docs context without loading full Markdown pages.
claude-agent-sdk-python-docs-pp-cli context "custom tools" --agent --select sections.title,examples.code,citations.url -
recipe— Compose a deterministic implementation scaffold from documented snippets and exact signatures.Use this when you need a copyable starting point constrained to documented SDK patterns.
claude-agent-sdk-python-docs-pp-cli recipe "streaming ClaudeSDKClient" --agent
-
map— Map functions, classes, types, options, tools, hooks, and message blocks by entity type.Use this to discover the available SDK surface before choosing an implementation path.
claude-agent-sdk-python-docs-pp-cli map --kind classes,types,options --agent
-
coverage examples— Report which documented symbols have extracted examples and which do not.Use this to find example-backed SDK APIs and documentation coverage gaps.
claude-agent-sdk-python-docs-pp-cli coverage examples --agent
pages — Fetch Claude Agent SDK documentation pages
claude-agent-sdk-python-docs-pp-cli pages custom-tools— Fetch the Agent SDK custom tools guideclaude-agent-sdk-python-docs-pp-cli pages index— Fetch the Claude Code documentation indexclaude-agent-sdk-python-docs-pp-cli pages mcp— Fetch the Agent SDK MCP guideclaude-agent-sdk-python-docs-pp-cli pages overview— Fetch the Agent SDK overviewclaude-agent-sdk-python-docs-pp-cli pages permissions— Fetch the Agent SDK permissions guideclaude-agent-sdk-python-docs-pp-cli pages python— Fetch the Python Agent SDK referenceclaude-agent-sdk-python-docs-pp-cli pages quickstart— Fetch the Agent SDK quickstartclaude-agent-sdk-python-docs-pp-cli pages sessions— Fetch the Agent SDK sessions guideclaude-agent-sdk-python-docs-pp-cli pages structured-outputs— Fetch the Agent SDK structured output guide
The generated pages endpoints and hand-authored docs intelligence commands read the public Claude Code docs over HTTPS. The docs intelligence commands intentionally reject --data-source local; use --data-source auto or --data-source live for those commands. For structured retrieval, prefer read, search, symbol, examples, guide, or context over raw pages binary endpoints.
When you know what you want to do but not which command does it, ask the CLI directly:
claude-agent-sdk-python-docs-pp-cli which "<capability in your own words>"which resolves a natural-language capability query to the best matching command from this CLI's curated feature index. Exit code 0 means at least one match; exit code 2 means no confident match — fall back to --help or use a narrower query.
claude-agent-sdk-python-docs-pp-cli search "ClaudeAgentOptions" --type pages --agent --select items.title,items.url,items.snippetReturns only the high-signal fields an agent needs instead of the full reference page.
claude-agent-sdk-python-docs-pp-cli context "custom tools" --agent --select sections.title,examples.code,citations.urlPairs --agent with --select so downstream agents get just examples, section titles, and citations.
claude-agent-sdk-python-docs-pp-cli verify ./src --agentFlags undocumented Claude Agent SDK Python identifiers with source citations.
claude-agent-sdk-python-docs-pp-cli map --kind classes,types,options --agentShows the SDK inventory by entity type before writing code.
No authentication required.
Run claude-agent-sdk-python-docs-pp-cli doctor to verify setup.
Add --agent to any command. Expands to: --json --compact --no-input --no-color --yes.
-
Pipeable — JSON on stdout, errors on stderr
-
Filterable —
--selectkeeps a subset of fields. Dotted paths descend into nested structures; arrays traverse element-wise. Critical for keeping context small on verbose APIs:claude-agent-sdk-python-docs-pp-cli context "custom tools" --agent --select sections.title,examples.code,citations.url -
Previewable —
--dry-runshows the request without sending -
Agent-friendly — docs intelligence commands return structured JSON with
--agentand--select -
Non-interactive — never prompts, every input is a flag
-
Read-only — do not use this CLI for create, update, delete, publish, comment, upvote, invite, order, send, or other mutating requests
Docs intelligence commands return command-specific JSON objects. Use --select to keep only the fields an agent needs, such as sections.title, examples.code, citations.url, symbols.name, or unknown_symbols.
When you (or the agent) notice something off about this CLI, record it:
claude-agent-sdk-python-docs-pp-cli feedback "the --since flag is inclusive but docs say exclusive"
claude-agent-sdk-python-docs-pp-cli feedback --stdin < notes.txt
claude-agent-sdk-python-docs-pp-cli feedback list --json --limit 10
Entries are stored locally at ~/.local/share/claude-agent-sdk-python-docs-pp-cli/feedback.jsonl. They are never POSTed unless CLAUDE_AGENT_SDK_PYTHON_DOCS_FEEDBACK_ENDPOINT is set AND either --send is passed or CLAUDE_AGENT_SDK_PYTHON_DOCS_FEEDBACK_AUTO_SEND=true. Default behavior is local-only.
Write what surprised you, not a bug report. Short, specific, one line: that is the part that compounds.
Every command accepts --deliver <sink>. The output goes to the named sink in addition to (or instead of) stdout, so agents can route command results without hand-piping. Three sinks are supported:
| Sink | Effect |
|---|---|
stdout |
Default; write to stdout only |
file:<path> |
Atomically write output to <path> (tmp + rename) |
webhook:<url> |
POST the output body to the URL (application/json or application/x-ndjson when --compact) |
Unknown schemes are refused with a structured error naming the supported set. Webhook failures return non-zero and log the URL + HTTP status on stderr.
A profile is a saved set of flag values, reused across invocations. Use it when a scheduled agent calls the same docs command every run with the same output and filtering options.
claude-agent-sdk-python-docs-pp-cli profile save briefing --json
claude-agent-sdk-python-docs-pp-cli --profile briefing pages custom-tools
claude-agent-sdk-python-docs-pp-cli profile list --json
claude-agent-sdk-python-docs-pp-cli profile show briefing
claude-agent-sdk-python-docs-pp-cli profile delete briefing --yes
Explicit flags always win over profile values; profile values win over defaults. agent-context lists all available profiles under available_profiles so introspecting agents discover them at runtime.
| Code | Meaning |
|---|---|
| 0 | Success |
| 2 | Usage error (wrong arguments) |
| 3 | Resource not found |
| 5 | API error (upstream issue) |
| 7 | Rate limited (wait and retry) |
| 10 | Config error |
Parse $ARGUMENTS:
- Empty,
help, or--help→ showclaude-agent-sdk-python-docs-pp-cli --helpoutput - Starts with
install→ ends withmcp→ MCP installation; otherwise → see Prerequisites above - Anything else → Direct Use (execute as CLI command with
--agent)
- Install the MCP server:
go install github.com/mvanhorn/printing-press-library/library/developer-tools/claude-agent-sdk-python-docs/cmd/claude-agent-sdk-python-docs-pp-mcp@latest
- Register with Claude Code:
claude mcp add claude-agent-sdk-python-docs-pp-mcp -- claude-agent-sdk-python-docs-pp-mcp
- Verify:
claude mcp list
- Check if installed:
which claude-agent-sdk-python-docs-pp-cliIf not found, offer to install (see Prerequisites at the top of this skill). - Match the user query to the best command from the Unique Capabilities and Command Reference above.
- Execute with the
--agentflag:claude-agent-sdk-python-docs-pp-cli <command> [subcommand] [args] --agent
- If ambiguous, drill into subcommand help:
claude-agent-sdk-python-docs-pp-cli <command> --help.