Skip to content

Commit cf542a2

Browse files
committed
docs: fix typos - rename Claude Code SDK to Claude Agent SDK
1 parent 0434749 commit cf542a2

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

e2e-tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# End-to-End Tests for Claude Code SDK
1+
# End-to-End Tests for Claude Agent SDK
22

33
This directory contains end-to-end tests that run against the actual Claude API to verify real-world functionality.
44

examples/agents.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
"""Example of using custom agents with Claude Code SDK.
2+
"""Example of using custom agents with Claude Agent SDK.
33
44
This example demonstrates how to define and use custom agents with specific
55
tools, prompts, and models.

examples/hooks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
"""Example of using hooks with Claude Code SDK via ClaudeAgentOptions.
2+
"""Example of using hooks with Claude Agent SDK via ClaudeAgentOptions.
33
44
This file demonstrates various hook patterns using the hooks parameter
55
in ClaudeAgentOptions instead of decorator-based hooks.

examples/include_partial_messages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22
"""
33
Example of using the "include_partial_messages" option to stream partial messages
4-
from Claude Code SDK.
4+
from Claude Agent SDK.
55
66
This feature allows you to receive stream events that contain incremental
77
updates as Claude generates responses. This is useful for:

examples/mcp_calculator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""Example: Calculator MCP Server.
33
44
This example demonstrates how to create an in-process MCP server with
5-
calculator tools using the Claude Code Python SDK.
5+
calculator tools using the Claude Agent Python SDK.
66
77
Unlike external MCP servers that require separate processes, this server
88
runs directly within your Python application, providing better performance

examples/plugin_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
"""Example demonstrating how to use plugins with Claude Code SDK.
2+
"""Example demonstrating how to use plugins with Claude Agent SDK.
33
44
Plugins allow you to extend Claude Code with custom commands, agents, skills,
55
and hooks. This example shows how to load a local plugin and verify it's

examples/quick_start.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
"""Quick start example for Claude Code SDK."""
2+
"""Quick start example for Claude Agent SDK."""
33

44
import anyio
55

src/claude_agent_sdk/_internal/message_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Message parser for Claude Code SDK responses."""
1+
"""Message parser for Claude Agent SDK responses."""
22

33
import logging
44
from typing import Any

0 commit comments

Comments
 (0)