Someone Finally Documented How to Actually Use Claude Code: 22K+ Star Best Practices Repository from Boris Cherny and Team

https://x.com/technmak/status/2037788648691884207?s=12
Community resource highlight / Best practices documentation compendium · Researched March 30, 2026

Summary

Tech with Mak highlights a major open-source documentation effort—the "claude-code-best-practice" repository on GitHub that has accumulated over 22,000 stars. The repository, curated by contributions from Boris Cherny (creator of Claude Code at Anthropic) and his team, represents the most comprehensive guide to using Claude Code effectively in real-world production environments. Rather than being promotional material, this is a crowd-sourced collection of 86+ specific tips and patterns extracted from how the Anthropic team actually uses Claude Code internally.

The post encapsulates the repository's core thesis: developers are vastly underutilizing Claude Code's capabilities and patterns, operating with incomplete or incorrect mental models about how to structure work, delegate tasks to agents, and organize code context. The repository addresses this by documenting patterns across 10+ categories: planning, memory management (CLAUDE.md files), agents, commands, skills, hooks, workflows, debugging, git practices, and daily habits.

Specific practices highlighted include: always using plan mode to let Claude think through architecture before implementation; leveraging AskUserQuestion tool to let Claude interview the user and eliminate ambiguity upfront; using Git Worktrees to enable parallel development across isolated branches; structuring CLAUDE.md files to stay under 200 lines per file (to prevent Claude from ignoring instructions in longer files); building feature-specific subagents with progressive disclosure skills rather than generic "QA" or "backend" agents; using /loop for scheduling recurring tasks up to 3 days locally; and employing cross-model code review (running one model for planning/implementation and a different model for QA to catch bugs the original missed).

The repository also catalogs community workflows that have gained traction (Superpowers with 122K stars, Everything Claude Code with 116K stars, Spec Kit with 83K stars), identifies key architectural questions the community is still debating ("Why does Claude ignore CLAUDE.md instructions?" "When to use commands vs. agents vs. skills?"), and documents daily habits like updating Claude Code daily and following r/ClaudeAI and r/ClaudeCode communities for new patterns.

Key Takeaways

About

Author: Tech with Mak (@techNmak)

Publication: X (Twitter)

Published: March 2026

Sentiment / Tone

Enthusiastically informative with an "I just discovered a treasure map" tone. The post reads as a curated highlight reel of practical wisdom distilled from production usage. Tech with Mak positions the repository as a long-overdue documentation effort, implying that developers have been using Claude Code suboptimally without clear guidance. The tone is neither hype-driven nor overly technical—it's the voice of someone who found a resource so valuable they felt compelled to amplify it. The emoji usage (🚫👶 for "don't micromanage," → for progressive lists) keeps it accessible and even playful, but the underlying message is serious: this represents hard-won patterns that can dramatically improve productivity.

Related Links

Research Notes

**Author Context:** Tech with Mak (@techNmak) is a tech educator with 24K followers who regularly posts breakdowns of technical concepts (MongoDB, serverless, ML systems). This post is in character—distilling complex systems into digestible summaries. The repository itself is maintained by shanraisshan on GitHub and appears to be a community effort that synthesized ideas from Boris Cherny's public tweets and interviews. **Boris Cherny's Credibility:** Cherny is the creator and lead engineer of Claude Code at Anthropic (joined Sept 2024). He's disclosed that Claude Code represented ~12% of Anthropic's ARR by end of 2025, growing past $1B in ARR. He's given multiple interviews (Pragmatic Engineer newsletter, Lenny's Podcast, Y Combinator) and has posted extensively on his workflow. His advice carries weight because he observes how Anthropic's internal teams (even sales) use Claude Code at scale. **Repository's Scale & Impact:** The claude-code-best-practice repo hitting 22K stars (and trending on GitHub monthly since at least March 2026) indicates significant developer hunger for structured guidance. The linked community workflows (Superpowers 122K stars, Everything Claude Code 116K stars) suggest a thriving ecosystem of builders extending Claude Code patterns. **Broader Context:** This resource arrives at a moment when Claude Code is rapidly evolving—features like /schedule (cloud-based cron), agent teams, voice dictation (/voice), browser automation, and MCP server connections are being added at high velocity. The best practices doc serves as a stabilizing reference point, helping developers not get lost in the feature explosion. Reddit communities (r/ClaudeAI, r/ClaudeCode) report daily discussions of patterns and "gotchas." **Potential Limitations:** The repository emphasizes Anthropic's internal workflow (Boris's setup with 5-10 parallel instances, heavy reliance on plan mode, use of all advanced features). Smaller teams or solo developers may find some patterns overkill. The "billion-dollar questions" section reveals that even the core team doesn't have answers to some fundamental questions (e.g., can you fully specify code and regenerate it later?), suggesting the field is still exploratory. Some tips conflict with stated Anthropic best practices (e.g., "don't put 'NEVER add Co-Authored-By' in CLAUDE.md" vs. using settings.json), indicating evolving guidance.

Topics

Claude Code LLM Workflow Optimization AI-Assisted Development Prompt Engineering Agent Systems Best Practices Documentation