@FakeMaidenMaker: Oh wow, Anthropic officially open-sourced the entire Claude usage tutorial! GitHub 44k+ stars, the Claude Cookbooks are maintained by Anthropic officially. RAG, Tool Use, multimodal, prompt caching and other techniques, all…

X AI KOLs Timeline Tools

Summary

Anthropic officially open-sourced Claude usage tutorials (cookbooks), including Jupyter Notebook examples of advanced techniques like RAG, Tool Use, multimodal, etc., which developers can directly copy and use.

Oh wow, Anthropic officially open-sourced the entire Claude usage tutorial! GitHub 44k+ stars, the Claude Cookbooks are maintained by Anthropic officially. RAG, Tool Use, multimodal, prompt caching and other techniques, all encapsulated as ready-to-run Jupyter Notebooks – just copy and paste into your own projects. What’s truly valuable are the advanced techniques – Sub-agents (letting Haiku act as a sub-agent with Opus), automated evaluation pipelines, PDF upload processing… These are the real experiences worth learning. The official examples save you dozens of hours of trial and error. If you want to learn the Claude API, stop browsing scattered blog posts. The official cookbook is more comprehensive than any third-party tutorial and more trustworthy than any tutorial. GitHub:
Original Article
View Cached Full Text

Cached at: 06/03/26, 03:52 PM

Holy cow, Anthropic has fully open-sourced the official Claude usage tutorials!

4.4K+ stars on GitHub, the Claude Cookbooks maintained directly by Anthropic.

RAG, Tool Use, multimodal, prompt caching, and other techniques are all packaged as ready-to-run Jupyter Notebooks — just copy-paste them into your own projects.

The real gold is in the advanced techniques section — Sub-agents (using Haiku as a sub-agent alongside Opus), automated evaluation pipelines, PDF upload processing… these are the truly valuable experiences. Anthropic gives you the examples directly, saving you dozens of hours of trial and error.

If you want to learn the Claude API, stop digging through scattered blog posts. The official cookbook is more comprehensive than any third-party tutorial and more trustworthy than any other guide.

GitHub:


anthropics/claude-cookbooks

Source: https://github.com/anthropics/claude-cookbooks

Claude Cookbooks

The Claude Cookbooks provide code and guides designed to help developers build with Claude, offering copy-able code snippets that you can easily integrate into your own projects.

Prerequisites

To make the most of the examples in this cookbook, you’ll need a Claude API key (sign up for free here (https://www.anthropic.com)).

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.

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.

Explore Further

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

  • Anthropic developer documentation (https://docs.claude.com/claude/docs/guide-to-anthropics-prompt-engineering-resources)
  • Anthropic support docs (https://support.anthropic.com)
  • Anthropic Discord community (https://www.anthropic.com/discord)

Contributing

The Claude Cookbooks 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.

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

If you have ideas for new examples or guides, share them on the issues page (https://github.com/anthropics/anthropic-cookbook/issues).

Table of recipes

Capabilities

  • Classification (https://github.com/anthropics/anthropic-cookbook/tree/main/capabilities/classification): Explore techniques for text and data classification using Claude.
  • Retrieval Augmented Generation (https://github.com/anthropics/anthropic-cookbook/tree/main/capabilities/retrieval_augmented_generation): Learn how to enhance Claude’s responses with external knowledge.
  • Summarization (https://github.com/anthropics/anthropic-cookbook/tree/main/capabilities/summarization): Discover techniques for effective text summarization with Claude.

Tool Use and Integration

  • Tool use (https://github.com/anthropics/anthropic-cookbook/tree/main/tool_use): Learn how to integrate Claude with external tools and functions to extend its capabilities.
    • Customer service agent (https://github.com/anthropics/anthropic-cookbook/blob/main/tool_use/customer_service_agent.ipynb)
    • Calculator integration (https://github.com/anthropics/anthropic-cookbook/blob/main/tool_use/calculator_tool.ipynb)
    • SQL queries (https://github.com/anthropics/anthropic-cookbook/blob/main/misc/how_to_make_sql_queries.ipynb)

Third-Party Integrations

  • Retrieval augmented generation (https://github.com/anthropics/anthropic-cookbook/tree/main/third_party): Supplement Claude’s knowledge with external data sources.
    • Vector databases (Pinecone) (https://github.com/anthropics/anthropic-cookbook/blob/main/third_party/Pinecone/rag_using_pinecone.ipynb)
    • Wikipedia (https://github.com/anthropics/anthropic-cookbook/blob/main/third_party/Wikipedia/wikipedia-search-cookbook.ipynb/)
    • Web pages (https://github.com/anthropics/anthropic-cookbook/blob/main/misc/read_web_pages_with_haiku.ipynb)
  • Embeddings with Voyage AI (https://github.com/anthropics/anthropic-cookbook/blob/main/third_party/VoyageAI/how_to_create_embeddings.md)

Multimodal Capabilities

  • Vision with Claude (https://github.com/anthropics/anthropic-cookbook/tree/main/multimodal):
    • Getting started with images (https://github.com/anthropics/anthropic-cookbook/blob/main/multimodal/getting_started_with_vision.ipynb)
    • Best practices for vision (https://github.com/anthropics/anthropic-cookbook/blob/main/multimodal/best_practices_for_vision.ipynb)
    • Interpreting charts and graphs (https://github.com/anthropics/anthropic-cookbook/blob/main/multimodal/reading_charts_graphs_powerpoints.ipynb)
    • Extracting content from forms (https://github.com/anthropics/anthropic-cookbook/blob/main/multimodal/how_to_transcribe_text.ipynb)
  • Generate images with Claude (https://github.com/anthropics/anthropic-cookbook/blob/main/misc/illustrated_responses.ipynb): Use Claude with Stable Diffusion for image generation.

Advanced Techniques

  • Sub-agents (https://github.com/anthropics/anthropic-cookbook/blob/main/multimodal/using_sub_agents.ipynb): Learn how to use Haiku as a sub-agent in combination with Opus.
  • Upload PDFs to Claude (https://github.com/anthropics/anthropic-cookbook/blob/main/misc/pdf_upload_summarization.ipynb): Parse and pass PDFs as text to Claude.
  • Automated evaluations (https://github.com/anthropics/anthropic-cookbook/blob/main/misc/building_evals.ipynb): Use Claude to automate the prompt evaluation process.
  • Enable JSON mode (https://github.com/anthropics/anthropic-cookbook/blob/main/misc/how_to_enable_json_mode.ipynb): Ensure consistent JSON output from Claude.
  • Create a moderation filter (https://github.com/anthropics/anthropic-cookbook/blob/main/misc/building_moderation_filter.ipynb): Use Claude to create a content moderation filter for your application.
  • Prompt caching (https://github.com/anthropics/anthropic-cookbook/blob/main/misc/prompt_caching.ipynb): Learn techniques for efficient prompt caching with Claude.

Additional Resources

  • Anthropic on AWS (https://github.com/aws-samples/anthropic-on-aws): Explore examples and solutions for using Claude on AWS infrastructure.
  • AWS Samples (https://github.com/aws-samples/): A collection of code samples from AWS which can be adapted for use with Claude. Note that some samples may require modification to work optimally with Claude.

Similar Articles

anthropics/claude-cookbooks

GitHub Trending (daily)

The Claude Cookbooks provide developers with code examples and guides for building applications using the Claude API, covering capabilities like classification, RAG, tool use, and multimodal features.

@FakeMaidenMaker: Anthropic just published a new blog post today: "HTML Greatly Boosts Claude Code Efficiency" — Team members share: They've basically stopped using Markdown and switched to HTML for Claude Code to output plans, designs, reports, and temporary edits. Why HTML...

X AI KOLs Timeline

Anthropic shared a blog post on how to replace Markdown with HTML in Claude Code output to improve information density, readability, and sharing efficiency, while enabling an interactive closed loop.

@axichuhai: Found an open-source tool that makes Claude even better — just a 65-line Markdown file, already reached 130k+ stars on GitHub. Inspired by Karpathy's observation that models like to guess when uncertain, write overly complex code, and quietly change things they shouldn't touch...

X AI KOLs Timeline

An open-source 65-line Markdown file that summarizes 4 programming rules for Claude to improve code quality and save tokens. It has garnered 130k+ stars on GitHub, inspired by Karpathy.

@seclink: These tips focus on how to leverage Anthropic's Claude models (such as Opus 4.7 and Sonnet 4.6) to achieve outstanding performance in writing, programming, data analysis, and workflow management. Users particularly praise the platform's features, including those exclusive to the Pro plan...

X AI KOLs Following

These tips introduce how to use Anthropic's Claude models (such as Opus 4.7 and Sonnet 4.6) to achieve excellent results in writing, programming, data analysis, and workflow management, highlighting the critical role of prompt quality and platform features (e.g., Claude Code, Artifacts, Projects).