docs: fix typos - rename Claude Code SDK to Claude Agent SDK

This commit is contained in:
barış 2025-12-18 18:07:07 +03:00
parent 04347495b8
commit cf542a2a00
No known key found for this signature in database
GPG key ID: 2637F932E249445C
8 changed files with 8 additions and 8 deletions

View file

@ -1,4 +1,4 @@
# End-to-End Tests for Claude Code SDK
# End-to-End Tests for Claude Agent SDK
This directory contains end-to-end tests that run against the actual Claude API to verify real-world functionality.

View file

@ -1,5 +1,5 @@
#!/usr/bin/env python3
"""Example of using custom agents with Claude Code SDK.
"""Example of using custom agents with Claude Agent SDK.
This example demonstrates how to define and use custom agents with specific
tools, prompts, and models.

View file

@ -1,5 +1,5 @@
#!/usr/bin/env python
"""Example of using hooks with Claude Code SDK via ClaudeAgentOptions.
"""Example of using hooks with Claude Agent SDK via ClaudeAgentOptions.
This file demonstrates various hook patterns using the hooks parameter
in ClaudeAgentOptions instead of decorator-based hooks.

View file

@ -1,7 +1,7 @@
#!/usr/bin/env python3
"""
Example of using the "include_partial_messages" option to stream partial messages
from Claude Code SDK.
from Claude Agent SDK.
This feature allows you to receive stream events that contain incremental
updates as Claude generates responses. This is useful for:

View file

@ -2,7 +2,7 @@
"""Example: Calculator MCP Server.
This example demonstrates how to create an in-process MCP server with
calculator tools using the Claude Code Python SDK.
calculator tools using the Claude Agent Python SDK.
Unlike external MCP servers that require separate processes, this server
runs directly within your Python application, providing better performance

View file

@ -1,5 +1,5 @@
#!/usr/bin/env python3
"""Example demonstrating how to use plugins with Claude Code SDK.
"""Example demonstrating how to use plugins with Claude Agent SDK.
Plugins allow you to extend Claude Code with custom commands, agents, skills,
and hooks. This example shows how to load a local plugin and verify it's

View file

@ -1,5 +1,5 @@
#!/usr/bin/env python3
"""Quick start example for Claude Code SDK."""
"""Quick start example for Claude Agent SDK."""
import anyio

View file

@ -1,4 +1,4 @@
"""Message parser for Claude Code SDK responses."""
"""Message parser for Claude Agent SDK responses."""
import logging
from typing import Any