Skip to content

Commit bfffab4

Browse files
committed
chore: Updates all references per new branding.
1 parent 419ee5b commit bfffab4

76 files changed

Lines changed: 3846 additions & 3846 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.claude/commands/model-check.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Validate Claude model usage against current public models
66
Review the changed files for Claude model usage.
77

88
First, fetch the current list of allowed models from:
9-
https://docs.anthropic.com/en/docs/about-claude/models/overview.md
9+
https://docs.claude.com/en/docs/about-claude/models/overview.md
1010

1111
Then check:
1212
1. All model references are from the current public models list

.claude/commands/notebook-review.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Review the changes to Jupyter notebooks and Python scripts in this PR. Please ch
77

88
## Model Usage
99
Verify all Claude model references against the current list at:
10-
https://docs.anthropic.com/en/docs/about-claude/models/overview.md
10+
https://docs.claude.com/en/docs/about-claude/models/overview.md
1111
- Flag any deprecated models (older Sonnet 3.5, Opus 3 versions)
1212
- Flag any internal/non-public model names
1313
- Suggest current alternatives when issues found
@@ -17,7 +17,7 @@ https://docs.anthropic.com/en/docs/about-claude/models/overview.md
1717
- Python code follows PEP 8 conventions
1818
- Proper error handling
1919
- Clear variable names and documentation
20-
- No hardcoded API keys (use os.getenv("ANTHROPIC_API_KEY"))
20+
- No hardcoded API keys (use os.getenv("CLAUDE_API_KEY"))
2121

2222
## Notebook Structure
2323
- Clear introduction explaining what the notebook demonstrates and why it's useful

.env.example

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Anthropic API Configuration
1+
# Claude API Configuration
22
# Copy this file to .env and add your API key
3-
# Get your API key at: https://console.anthropic.com/settings/keys
3+
# Get your API key at: https://platform.claude.com/settings/keys
44

5-
ANTHROPIC_API_KEY=sk-ant-api03-...
5+
CLAUDE_API_KEY=sk-ant-api03-...
66

77
# Optional: Default model for testing (recommended for cost savings)
88
CLAUDE_MODEL=claude-3-5-haiku-latest

.github/workflows/claude-link-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Run Claude Link Review
2626
uses: anthropics/claude-code-action@v1
2727
with:
28-
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
28+
CLAUDE_API_KEY: ${{ secrets.CLAUDE_API_KEY }}
2929
github_token: ${{ secrets.GITHUB_TOKEN }}
3030
prompt: "/link-review"
3131
claude_args: |

.github/workflows/claude-model-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Claude Model Validation
2525
uses: anthropics/claude-code-action@v1
2626
with:
27-
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
27+
CLAUDE_API_KEY: ${{ secrets.CLAUDE_API_KEY }}
2828
github_token: ${{ secrets.GITHUB_TOKEN }}
2929
prompt: "/model-check"
3030
claude_args: |

.github/workflows/claude-notebook-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Run Claude Notebook Review
2626
uses: anthropics/claude-code-action@v1
2727
with:
28-
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
28+
CLAUDE_API_KEY: ${{ secrets.CLAUDE_API_KEY }}
2929
github_token: ${{ secrets.GITHUB_TOKEN }}
3030
prompt: "/notebook-review"
3131
claude_args: |

.github/workflows/notebook-quality.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
if: github.event_name == 'pull_request' && steps.validate.outputs.has_issues == 'true'
5858
uses: anthropics/claude-code-action@v1
5959
with:
60-
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
60+
CLAUDE_API_KEY: ${{ secrets.CLAUDE_API_KEY }}
6161
github_token: ${{ secrets.GITHUB_TOKEN }}
6262
prompt: |
6363
The notebook validation found these issues:
@@ -88,7 +88,7 @@ jobs:
8888
github.event.pull_request.author_association == 'MEMBER' ||
8989
github.event.pull_request.author_association == 'OWNER'
9090
env:
91-
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
91+
CLAUDE_API_KEY: ${{ secrets.CLAUDE_API_KEY }}
9292
run: |
9393
mkdir -p test_outputs
9494
for notebook in $(find . -name "*.ipynb" -not -path "*/.*" -not -path "*/test_outputs/*"); do

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Contributing to Anthropic Cookbook
1+
# Contributing to Claude Cookbook
22

3-
Thank you for your interest in contributing to the Anthropic Cookbook! This guide will help you get started with development and ensure your contributions meet our quality standards.
3+
Thank you for your interest in contributing to the Claude Cookbook! This guide will help you get started with development and ensure your contributions meet our quality standards.
44

55
## Development Setup
66

@@ -45,7 +45,7 @@ Thank you for your interest in contributing to the Anthropic Cookbook! This guid
4545
5. **Set up your API key**:
4646
```bash
4747
cp .env.example .env
48-
# Edit .env and add your Anthropic API key
48+
# Edit .env and add your Claude API key
4949
```
5050

5151
## Quality Standards
@@ -113,12 +113,12 @@ If a hook fails, fix the issues and try committing again.
113113
1. **Use environment variables for API keys**:
114114
```python
115115
import os
116-
api_key = os.environ.get("ANTHROPIC_API_KEY")
116+
api_key = os.environ.get("CLAUDE_API_KEY")
117117
```
118118

119119
2. **Use current Claude models**:
120120
- Use model aliases (e.g., `claude-3-5-haiku-latest`) for better maintainability
121-
- Check current models at: https://docs.anthropic.com/en/docs/about-claude/models/overview
121+
- Check current models at: https://docs.claude.com/en/docs/about-claude/models/overview
122122
- Claude will automatically validate model usage in PR reviews
123123

124124
3. **Keep notebooks focused**:

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
# Anthropic Cookbook
1+
# Claude Cookbook
22

3-
The Anthropic Cookbook provides code and guides designed to help developers build with Claude, offering copy-able code snippets that you can easily integrate into your own projects.
3+
The Claude Cookbook provides code and guides designed to help developers build with Claude, offering copy-able code snippets that you can easily integrate into your own projects.
44

55
## Prerequisites
66

7-
To make the most of the examples in this cookbook, you'll need an Anthropic API key (sign up for free [here](https://www.anthropic.com)).
7+
To make the most of the examples in this cookbook, you'll need an Claude API key (sign up for free [here](https://www.anthropic.com)).
88

9-
While the code examples are primarily written in Python, the concepts can be adapted to any programming language that supports interaction with the Anthropic API.
9+
While the code examples are primarily written in Python, the concepts can be adapted to any programming language that supports interaction with the Claude API.
1010

11-
If you're new to working with the Anthropic API, we recommend starting with our [Anthropic API Fundamentals course](https://github.com/anthropics/courses/tree/master/anthropic_api_fundamentals) to get a solid foundation.
11+
If you're new to working with the Claude API, we recommend starting with our [Claude API Fundamentals course](https://github.com/anthropics/courses/tree/master/anthropic_api_fundamentals) to get a solid foundation.
1212

1313
## Explore Further
1414

1515
Looking for more resources to enhance your experience with Claude and AI assistants? Check out these helpful links:
1616

17-
- [Anthropic developer documentation](https://docs.anthropic.com/claude/docs/guide-to-anthropics-prompt-engineering-resources)
17+
- [Anthropic developer documentation](https://docs.claude.com/claude/docs/guide-to-anthropics-prompt-engineering-resources)
1818
- [Anthropic support docs](https://support.anthropic.com)
1919
- [Anthropic Discord community](https://www.anthropic.com/discord)
2020

2121
## Contributing
2222

23-
The Anthropic Cookbook thrives on the contributions of the developer community. We value your input, whether it's submitting an idea, fixing a typo, adding a new guide, or improving an existing one. By contributing, you help make this resource even more valuable for everyone.
23+
The Claude Cookbook thrives on the contributions of the developer community. We value your input, whether it's submitting an idea, fixing a typo, adding a new guide, or improving an existing one. By contributing, you help make this resource even more valuable for everyone.
2424

2525
To avoid duplication of efforts, please review the existing issues and pull requests before contributing.
2626

claude_code_sdk/.env.example

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Create a token at: https://github.com/settings/tokens
44
GITHUB_TOKEN="your-github-personal-access-token-here"
55

6-
# Anthropic API Key
6+
# Claude API Key
77
# Required for using Claude SDK
8-
# Get your key at: https://console.anthropic.com/settings/keys
9-
ANTHROPIC_API_KEY="sk-ant-api03-your-api-key-here"
8+
# Get your key at: https://platform.claude.com/settings/keys
9+
CLAUDE_API_KEY="sk-ant-api03-your-api-key-here"

0 commit comments

Comments
 (0)