Claudeverse is the map; this page is the rest of the city. Every resource here has been filtered for one question: if I'd hit that wall six months ago, would this have unblocked me? If the answer was "no", it isn't listed. That means some well-known links are missing — that's the filter working, not an oversight. Follow the trail that matches what you're trying to do next, not the one with the most stars.

Official & Free

The canon. Everything in this section is maintained by Anthropic or someone on the Claude Code team — start here before anything else. These move fast; bookmark the ones that matter and re-read them every quarter.

ResourceWhereWhy it matters
Claude Code Docsdocs.claude.com/en/docs/claude-codeThe source of truth. Commands, hooks, SDK, MCP, permissions — all updated within days of a release.
Anthropic's "Claude Code in Action" courseanthropic.skilljar.com/claude-code-in-actionFree, official, ~2 hours. From the team building the tool.
Frontend Masters — Claude Code Deep Divefrontendmasters.com (Lydia Hallie)Free 7-hour workshop from an Anthropic engineer. The best intermediate-to-advanced video content anywhere.
CC for Everyoneccforeveryone.comFree. Learn Claude Code in Claude Code. No prior coding required.
Prompt Engineering Guidedocs.claude.com/en/docs/build-with-claude/prompt-engineeringThe official prompt engineering reference. Bigger than you think.
Agent SDK — TypeScriptdocs.claude.com/en/docs/agent-sdk/overviewBuild production agents with Claude Code as a library. Worth reading even if you'll never use the SDK directly — it documents how the CLI really works.
Agent SDK — Pythondocs.claude.com/en/docs/agent-sdk/pythonSame SDK, Python bindings.
Release notes / changeloggithub.com/anthropics/claude-code/releasesThe 30-second check that tells you whether a new feature just landed. Read weekly.

If you only click one link

Read the docs top to bottom once. It's shorter than you'd guess — maybe 2 hours — and it replaces 80% of the questions you'd otherwise ask in a Discord. Everything after that becomes reference.

Essential GitHub Repos

Working code you can steal from. Star these, clone the ones that match your stack, and read the CLAUDE.md / AGENTS.md / hooks in each. Reading three production configs teaches faster than reading any blog post.

RepoStarsWhat it is
anthropics/claude-code30K+The CLI itself. Issues are a goldmine for learning edge cases.
wshobson/agents25K+150+ specialized subagent definitions. Progressive disclosure, token-efficient patterns, a plugin marketplace. The template gallery.
affaan-m/everything-claude-code45K+A full agent harness: skills, language ecosystems, security scanning (AgentShield). Heaviest repo in the ecosystem.
Claude-Flow11K+Enterprise-grade orchestration platform on top of Claude Code.
claude-squad5K+Manage multiple terminal agents (Claude Code, Aider, Codex, OpenCode, Amp) from one TUI.
claude-plugins-official2.8K+Anthropic-managed plugin directory. Read before writing your own plugin.
claude-context-mode2.2K+MCP server that compresses context aggressively (315KB → 5.4KB on their benchmark).
tdd-guard1.7K+Automated TDD enforcement for Claude Code — a working hook you can adapt.
shanraisshan/claude-code-best-practiceTrendingReference implementation: skills, subagents, hooks, commands all working together. Worth a weekend read.
FlorianBruniaux/claude-code-ultimate-guideBeginner-to-power-user reference. Production templates, quizzes, security checklist.
drona23/claude-token-efficientDrop-in CLAUDE.md for 60%+ output-token reduction.
scriptbyai.com/claude-code-resource-listA meta-list of tools, repos, orchestrators — when you need to know whether something exists.

Read the hooks, not the README

When evaluating one of these repos, skip the README and open .claude/settings.json directly. The hooks, permissions, and commands are where the actual craft lives. Five minutes of reading real configs beats an hour of reading marketing.

Key Articles

One-offs worth a specific afternoon, each tied to a concrete problem you've probably hit. Ordered roughly by when they'd help you in your journey — top of the list for beginners, bottom for people already shipping multi-agent systems.

ArticleAuthorWhy read it
Claude Code Best PracticesAnthropicThe original "how to use this thing" post. Dated in details, still correct on principles.
50 Claude Code Tips and Best Practicesbuilder.ioPractical daily-use tips. The one to send a new teammate on day one.
How I Use Claude Codebuilder.ioReal workflow evolution. PR-review setup, GitHub app, what stuck and what didn't.
Claude Best Practices 2026: Power User Guidethe-ai-corner.comContext architecture, skills, dispatch patterns, the 5 files to build first.
Claude Code Extensions ExplainedMuneeb AhmadClean breakdown of the 6 extension layers, with a timeline showing when to reach for each.
The Code Agent OrchestraAddy OsmaniMulti-agent patterns, subagents vs teams, 3-tier orchestration. Read before you reach for Agent Teams.
Multi-agent orchestration for Claude CodeShipyardHonest comparison of Agent Teams vs Gas Town vs Multiclaude. Saves a weekend of evaluation.
Stop Wasting TokensJpranavTiered CLAUDE.md, 60% context optimization, session hooks. The best practical writeup on token discipline.
7 Ways to Cut Token UsageDEV CommunityShort, actionable. .claudeignore, chunked prompts, and more.
Claude Code CLI Guide 2026Blake CrosleyMassive CLI reference, updated weekly. When the docs don't have the flag you need, it's probably here.
Claude Code Best Practices (tutorial)DataCampPlanning, context transfer, TDD — covered through real case studies.

Article hygiene

The Claude Code world changes fast. Anything older than ~6 months should be read for principles, not commands. If an article tells you exactly which flag to use, verify against the docs before pasting.

Communities

Where to go when the docs don't have the answer. Different communities are good at different things — match the vibe to the question.

Real-time (Discord, Slack)

  • Anthropic Discord — the official community. #claude-code is active, well-moderated, fast turnaround from Anthropic engineers. Your first-stop for "is this a bug or am I holding it wrong?" questions.
  • MCP Community Discord — linked from the MCP spec site. Good for server-building questions specifically.

Asynchronous (forums, subreddits, discussions)

People worth following

On Twitter/X and LinkedIn — the shortest path to seeing new patterns as they emerge:

  • @AnthropicAI — official release news.
  • Boris Cherny — Claude Code creator. Follows up on gotchas publicly.
  • Lydia Hallie — Anthropic DevRel, best teacher of advanced patterns.
  • Cat Wu — PM on Claude Code. Context on why features land the way they do.
  • Addy Osmani — orchestration patterns, agent teams, the broader AI-tooling landscape.
  • Matt Pocock — practical Claude Code workflows with production TypeScript.

Newsletters

How to ask a good question

Before posting, have: (1) the exact command or prompt, (2) /status output, (3) relevant CLAUDE.md / .claude/settings.json sections, (4) what you expected vs what happened. That shape gets answers in minutes. Questions without it sit for days. Troubleshooting is in the troubleshooting chapter — try there first.