Safety & Production · Next Steps

Free Resources and Where to Go Next

Everything in this closing module is free, official, and maintained by Anthropic — bookmark it as your reference map, then go build something with your own data.

☺ Explain it like I'm 10

Imagine you just finished a big Lego set using an instruction booklet somebody handed you. This page is the back cover of that booklet — it points you to where the Lego company keeps every other booklet, its website, and its idea videos, so you can keep building without waiting for someone to hand you the next set of instructions. One catch: Lego keeps reprinting its catalog, so always check the newest copy instead of trusting the picture you remember from a few months ago.

🦉🐰Your hosts for this topic: Professor Owl (curates the official map of docs and reading) and Remy the Rabbit (keeps you practicing after the course officially ends).

You've covered the whole arc

☺ Like you're 10: You've basically finished a whole obstacle course — getting your key, sending messages, giving Claude tools, teaching it to search your own documents, and keeping it safe. This page is the map of where the obstacle course keeps adding new sections.

Across this course you've covered getting API access, the Messages API shape, prompting techniques, tool use and structured outputs, RAG, agentic patterns, MCP, Claude Code, evaluation, and safety. None of that knowledge is static — Anthropic ships new models, new API features, and new docs structure on an ongoing basis. This module is your jumping-off point: a categorized list of the official places to keep learning, plus a suggestion for what to do with the next few hours.

⌁ Note

Model names, prices, and context windows change between cohorts of this course. Before you hard-code a model ID into a real project, re-check it against the live Models Overview page rather than trusting a screenshot or an old tutorial — including this one.

Official docs & reference

☺ Like you're 10: Think of this as the school's official noticeboard, not a friend's notes — the docs site is the one place that's always kept current.

The docs site (platform.claude.com — both docs.claude.com and console.anthropic.com now redirect here) is the single source of truth for anything code-facing: exact parameter names, response shapes, and current limits. Here's the subset worth bookmarking, grouped by when you'll reach for it.

Start here

ResourceWhat it covers
Get startedThe official onboarding walkthrough for a first API call.
Get an API keyConsole → Settings → API keys → Create key; the key (prefix sk-ant-) is shown in full only once.
AuthenticationStoring keys safely, the ANTHROPIC_API_KEY env var, and Workload Identity Federation for production.
Models overviewThe current model lineup, context windows, pricing, and thinking support — always check this live.
API overviewThe Messages, Batches, Token Counting, and Models APIs, plus the beta Files/Skills/Agents APIs.

Building features

ResourceWhat it covers
Prompting best practicesThe consolidated reference for clarity, examples, XML tags, roles, long context, and migration notes.
Tool use overviewTool definitions, the tool_use/tool_result loop, parallel calls, and error handling.
Structured outputsGuaranteed JSON via output_config.format and strict tool schemas.
Handling stop reasonsThe full stop_reason table — end_turn, tool_use, pause_turn, refusal, and more.
Embeddings (RAG)Why Anthropic doesn't ship its own embedding model, and how Voyage AI plugs into retrieval.
Reduce hallucinationsQuote-grounding, citation requirements, and verification techniques with full example prompts.
Mitigate jailbreaksDirect vs. indirect prompt injection defenses for agents that read untrusted tool output.
Define success criteria & build evalsSMART criteria, grading approaches, and eval-set design.
Agent SDK overviewEmbedding Claude Code's agent loop in your own application, outside the CLI.
Claude Code docsCLAUDE.md, subagents, hooks, permission modes, and the VS Code extension.
Model Context ProtocolThe open standard for connecting Claude to external tools, resources, and prompts.

Scaling to production

ResourceWhat it covers
Choosing a modelTrading capability against speed and cost across the model tiers.
Prompt cachingUp to 90% cheaper repeated input via cache reads, with 5-minute or 1-hour TTLs.
Batch processingA flat 50% discount on async workloads via the Message Batches API.
Rate limitsToken-bucket limits by usage tier, 429 handling, and exponential backoff.
Claude on Amazon BedrockRunning Claude through AWS instead of the direct API.
Claude on Vertex AIThe Google Cloud equivalent, including request-shape differences from the direct API.
Usage and Cost Admin APIProgrammatic token/cost tracking by model, workspace, and API key.

Hands-on repos

Docs tell you the shape of the API; these repos let you run real, working code against it. All three are maintained directly under the anthropics GitHub organization.

git clone https://github.com/anthropics/claude-cookbooks.git
git clone https://github.com/anthropics/courses.git
git clone https://github.com/anthropics/prompt-eng-interactive-tutorial.git

Open any of them in VS Code, set ANTHROPIC_API_KEY in a .env file or your integrated terminal's environment, and run the notebooks with the Jupyter extension — the same setup you've been using throughout this course.

For a browser-based, no-clone option, Anthropic Academy (anthropic.com/learn) is the landing page for Anthropic's structured course catalog, hosted on the interactive platform at anthropic.skilljar.com — 20+ free courses spanning both developer topics (Claude Platform 101, Building with the Claude API, MCP, Claude Code) and business/AI-fluency tracks, with registration but no Anthropic account required.

Engineering case studies & deeper reading

Once the mechanics feel familiar, the highest-value reading is Anthropic's own engineering blog at anthropic.com/engineering — real production write-ups, not marketing copy. A few worth prioritizing:

For the research and policy side of Claude — useful once you're shipping something real rather than experimenting — see Constitutional AI: Harmlessness from AI Feedback, the Responsible Scaling Policy, and the Usage Policy (which spells out the human-in-the-loop and disclosure requirements for high-risk domains like healthcare, legal, and finance). And on the technique side, Introducing Contextual Retrieval and Introducing the Citations API go deeper into the RAG techniques this course covered.

Anthropic's official YouTube channel, youtube.com/@anthropic-ai, is worth subscribing to for launch walkthroughs and talks that complement the written docs.

◆ Pattern

Bookmark the live docs — Models Overview, Prompting Best Practices, the engineering blog — and re-check them before each new project. Anthropic updates these pages continuously.

⚠ Anti-pattern

Copying a model ID or a pricing table from an old tutorial (including this course, a few months from now) straight into production code without verifying it's still current.

🎬 At the Claude Crew
🦊

Foxy: Wait — so everything I just memorized about model names and prices might already be out of date?

🦉

Professor Owl: Not wrong today, just perishable. Anthropic ships new models and docs updates on an ongoing basis, so a hard-coded model ID is a snapshot, not a promise.

🦊

Foxy: So do I have to relearn this whole course every few months?

🐰

Remy: Nope — you relearn nothing. You just build the habit of re-checking one page, the Models Overview, before you ship. That habit is worth more than memorizing today's model ID.

Keep going: your next project

☺ Like you're 10: Reading about riding a bike doesn't make you able to ride one — you have to get on, wobble, and fall over once where nobody wrote the instructions for exactly your fall.

The fastest way to lose everything you just learned is to stop the moment the course ends. The fastest way to keep it is to immediately point it at a real problem.

Look back at the capstone projects that followed these foundation modules and pick the one closest to a domain you actually work in — customer support, internal tooling, research, whatever it is. Don't just re-read it: fork it, swap in your own data, your own documents, your own users' questions, and rebuild it end to end. The gap between "I followed a tutorial" and "I can build this" closes the moment you hit a bug that isn't in anyone's docs and have to reason your way out using the mental models from this course — tool_use loops, context windows, evals, guardrails — rather than a code sample.

Pick a capstoneclosest to your work Swap in your datadocs, tickets, code Run it liveyour own API key Hit a real bugreason it out yourself

From there, staying current is mostly a matter of habit: check the Models Overview page before starting anything new, skim anthropic.com/engineering periodically for new patterns, and treat the claude-cookbooks repo as a living reference you return to, not something you finish once.

✎ Try it yourself

Pick one capstone from this course that's closest to your own work or interests. Clone its starting point (or rebuild its core loop from scratch using what you learned in this course), then replace every piece of sample data with your own — your own documents for RAG, your own support tickets for classification, your own codebase for an agent. Get it running end to end against the live Claude API with your own key, then write down the one thing that broke that no tutorial warned you about.

🐰 Remy the Rabbit's checkpoint

You should now be able to name the single source of truth for Claude's docs (platform.claude.com), list the three official free repos to keep practicing with, and explain why you should never hard-code a model ID without rechecking the live Models Overview page first. When you're ready to test what stuck, head back to Capstone Support and rebuild one of the projects against your own real data.

Check your answers
  1. Where should you always double-check model names, prices, and context windows before shipping? The live Models Overview page at platform.claude.com — not a cached tutorial, screenshot, or old blog post, since Anthropic updates the model lineup on an ongoing basis.
  2. What are the three official, free repos maintained by Anthropic for hands-on practice? anthropics/claude-cookbooks (real-world notebooks across classification, RAG, tool-use agents, and multimodal work), anthropics/courses (five self-paced notebook courses), and anthropics/prompt-eng-interactive-tutorial (a standalone 9-chapter prompting drill set).
  3. What's the fastest way to actually retain everything covered in this course? Stop reading and start building — pick one capstone close to your own work, swap in your own real data, and rebuild it end to end against the live API with your own key until you hit a bug nobody's docs cover.