Documentation Index
Fetch the complete documentation index at: https://docs.pandaprobe.com/llms.txt
Use this file to discover all available pages before exploring further.
Installation
- pip
- uv
Setup
Usage
What gets traced
| Claude Agent SDK Component | Span Kind | Description |
|---|---|---|
receive_response | CHAIN + AGENT | Root trace boundary with nested agent span |
| Assistant messages | LLM | Thinking blocks extracted, content normalized |
PreToolUse / PostToolUse hooks | TOOL | Input from tool call, output from result |
Subagent tool_use blocks | AGENT | Subagent handoff tracking |
Tool tracing
The adapter injects tracing hooks into the Claude SDK client at initialization:- PreToolUse — Creates a
TOOLspan with the tool’s input arguments - PostToolUse — Sets the tool’s output and marks the span as OK (or
ERRORifis_erroris true) - PostToolUseFailure — Records the error and marks the span as
ERROR
Extended thinking
Thinking blocks are automatically handled:- Thinking content is extracted and stored in metadata as
reasoning_summary - Thinking-only messages are buffered and combined with the next message’s thinking
- Thinking blocks are stripped from the visible output
Conversation history
The adapter maintains conversation history across turns on the client instance (_pandaprobe_history), allowing multi-turn tracing with proper context.
Token usage mapping
| Claude SDK Field | PandaProbe Field |
|---|---|
input_tokens | prompt_tokens |
output_tokens | completion_tokens |
cache_read_input_tokens | cache_read_tokens |
Example with tools
This example exposes two tools via an in-process MCP server and runs a query throughClaudeSDKClient. We trace the agent via ClaudeAgentSDKAdapter:
CHAIN (root) → AGENT → LLM (model call) → TOOL (get_weather) → TOOL (get_population) → LLM (final response).
