From 0a3cdc68a51215fb76e0fdf9c9e46bf2a666517a Mon Sep 17 00:00:00 2001 From: Rohit Ganguly Date: Wed, 7 Jan 2026 11:15:59 -0800 Subject: [PATCH] Update README links to new documentation URLs --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bcbe9698..cdc0744f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Claude Agent SDK for Python -Python SDK for Claude Agent. See the [Claude Agent SDK documentation](https://docs.anthropic.com/en/docs/claude-code/sdk/sdk-python) for more information. +Python SDK for Claude Agent. See the [Claude Agent SDK documentation](https://platform.claude.com/docs/en/agent-sdk/overview) for more information. ## Installation @@ -183,7 +183,7 @@ options = ClaudeAgentOptions( ### Hooks -A **hook** is a Python function that the Claude Code _application_ (_not_ Claude) invokes at specific points of the Claude agent loop. Hooks can provide deterministic processing and automated feedback for Claude. Read more in [Claude Code Hooks Reference](https://docs.anthropic.com/en/docs/claude-code/hooks). +A **hook** is a Python function that the Claude Code _application_ (_not_ Claude) invokes at specific points of the Claude agent loop. Hooks can provide deterministic processing and automated feedback for Claude. Read more in [Claude Code Hooks Reference](https://code.claude.com/docs/en/hooks). For more examples, see examples/hooks.py. @@ -267,7 +267,7 @@ See [src/claude_agent_sdk/\_errors.py](src/claude_agent_sdk/_errors.py) for all ## Available Tools -See the [Claude Code documentation](https://docs.anthropic.com/en/docs/claude-code/settings#tools-available-to-claude) for a complete list of available tools. +See the [Claude Code documentation](https://platform.claude.com/docs/en/agents-and-tools/tool-use/overview) for a complete list of available tools. ## Examples