📖 Emoji Legend
Throughout this list, you'll see emojis next to each resource. Here's what each means:
Emoji Meaning 📁 Documentation 📚 Course, book, or collection of resources 📗 Article or written tutorial 🎬 Video resource (YouTube, video course, etc.) 🔧 Tool or utility 💡 Community resource or discussion
📋 Contents
🏛️ Official Resources
General resources directly from Anthropic. Feature-specific official docs are in their respective sections below.
Documentation
Blog Posts
Repository
Course
📚 Getting Started & Learning
General tutorials, courses, best practices, and deep dives. Feature-specific learning content (Skills, MCP, SDK, etc.) lives in each feature's section.
Courses
Beginner Tutorials
Video Tutorials
Best Practices & Guides
Guides & Reference Repositories
Deep Dives & Case Studies
🎯 Skills
Pre-built skills, the Agent Skills open standard, templates, and everything related to Claude Code Skills.
Documentation
Agent Skills Open Standard
Anthropic's open standard for portable, cross-platform agent skills — adopted by Microsoft (VS Code), OpenAI (Codex), Vercel, Cursor, and 30+ platforms.
Standard Documentation
Standard Articles
Standard Repositories
Courses
Videos
Collections
Core Libraries
Specialized Skills
Generators & Tools
Marketplaces
Official and community-built directories for discovering and installing Claude Code plugins, skills, and extensions. Plugins are installed via /plugin marketplace add owner/repo in Claude Code.
Official Plugin Directories
Web Discovery Platforms
Platform Description 🔧 claudemarketplaces.com Meta-directory of 2,919+ Claude Code marketplaces — browse by category, GitHub-backed, open source (by mertdx) 🔧 buildwithclaude.com 488+ practical extensions tracking 9k plugins + 4k skills across 2,605 marketplaces; /plugin marketplace add davepoon/buildwithclaude🔧 skillsmp.com 508k+ agent skills in the open SKILL.md format — compatible with Claude Code, Codex, and ChatGPT🔧 lobehub.com/skills 211k+ skills marketplace — open SKILL.md standard with ratings, install counts, and category browsing🔧 awesomeclaudeplugins.com Automated collection tracking 22k+ plugins across 7,413 GitHub repos with adoption metrics 🔧 claude-plugins.dev Community-maintained marketplace with 6,000+ public skills 🔧 ClaudePluginHub Hub with 9,000+ plugins and skills across multiple marketplaces 🔧 claudecodemarketplace.net Community submissions marketplace — aggregates known collections from the ecosystem
Notable GitHub Marketplaces
Articles & Guides
Tutorials & Guides
Other
🧩 Plugins
Plugins are the packaging and distribution format for Claude Code extensions. A plugin bundles skills, agents, hooks, MCP servers, LSP integrations, and commands into a single installable unit distributed via GitHub repos. Install with /plugin install name@marketplace. Plugins require Claude Code v1.0.33+.
Plugins vs standalone config: Standalone .claude/ configs use short names like /hello; plugins use namespaced names like /my-plugin:hello — preventing conflicts when mixing multiple plugins.
Documentation
📁 Create plugins — Claude Code Docs — full authoring guide: skills, agents, hooks, MCP, LSP, --plugin-dir dev flag, submission
📁 Discover and install plugins — Claude Code Docs — how to add marketplaces, install/remove, scopes, team marketplaces
📁 Create and distribute a plugin marketplace — Claude Code Docs — marketplace.json schema, namespace rules, distribution
📁 Plugins reference — Claude Code Docs — complete technical specification for all plugin components
Official Plugin Directory
Anthropic's curated directory of high-quality plugins. The official marketplace is pre-registered in every Claude Code install — no setup needed. Browse it with /plugin → Discover tab, or install directly.
Repositories
Code Intelligence (LSP) Plugins
Give Claude real-time language intelligence: jump to definitions, find references, see type errors after every edit. Requires the language server binary installed on your machine.
Plugin Language Install 🔧 typescript-lsp TypeScript / JS /plugin install typescript-lsp@claude-plugins-official🔧 pyright-lsp Python /plugin install pyright-lsp@claude-plugins-official🔧 rust-analyzer-lsp Rust /plugin install rust-analyzer-lsp@claude-plugins-official🔧 gopls-lsp Go /plugin install gopls-lsp@claude-plugins-official🔧 ruby-lsp Ruby /plugin install ruby-lsp@claude-plugins-official🔧 clangd-lsp C / C++ /plugin install clangd-lsp@claude-plugins-official🔧 csharp-lsp C# /plugin install csharp-lsp@claude-plugins-official🔧 swift-lsp Swift /plugin install swift-lsp@claude-plugins-official🔧 kotlin-lsp Kotlin /plugin install kotlin-lsp@claude-plugins-official🔧 jdtls-lsp Java /plugin install jdtls-lsp@claude-plugins-official🔧 php-lsp PHP /plugin install php-lsp@claude-plugins-official🔧 lua-lsp Lua /plugin install lua-lsp@claude-plugins-official
External Integration Plugins
Pre-configured MCP server bundles for connecting Claude to external services — no manual MCP setup required.
Plugin Category Description 🔧 github Source Control GitHub integration via MCP 🔧 gitlab Source Control GitLab integration via MCP 🔧 context7 Documentation Up-to-date code documentation for LLMs (by Upstash) 🔧 playwright Testing Browser automation and testing via Playwright MCP 🔧 serena Code Intelligence Advanced code navigation and semantic search 🔧 greptile Code Search AI-powered codebase search and understanding 🔧 supabase Infrastructure Supabase database/auth integration 🔧 firebase Infrastructure Firebase integration via MCP 🔧 stripe Payments Stripe integration with best-practices skill 🔧 slack Communication Slack integration via HTTP/OAuth MCP 🔧 linear Project Management Linear issue tracking via MCP 🔧 asana Project Management Asana integration via MCP 🔧 laravel-boost Framework Laravel framework boost with best-practices skill
Additional official integrations in the marketplace: atlassian (Jira/Confluence), notion, figma, vercel, sentry
Development Workflow Plugins
Plugin Marketplaces & Directories
For the full list of plugin and skills marketplaces, see Skills > Marketplaces . Plugin-specific directories below:
Community Plugin Collections
Notable Community Plugins
Tutorials & Guides
Getting Started
Concept Clarity (Plugins vs Skills vs MCPs)
Ecosystem Coverage
Videos
Community
🔀 Multi-Agent Development
Everything about running multiple Claude Code agents in parallel — from single-session subagents to multi-session teams, isolated git worktrees, and orchestration tools. These features work together: subagents handle delegation within a session, agent teams spawn full parallel sessions, and git worktrees give each agent its own isolated workspace.
🤖 Subagents
Resources about Claude Code's subagent capabilities for multi-agent workflows.
Documentation & Tutorials
Tools & Collections
🏗️ Agent Teams
Spin up multiple Claude Code instances that work in parallel on a shared codebase, coordinated by a lead agent. Released as a research preview with Opus 4.6 in February 2026.
Official Resources
Tutorials & Guides
Video Tutorials
Experience Reports & Analysis
Tools & Utilities
🌳 Git Worktrees
Run parallel Claude Code sessions in completely isolated working directories. Each worktree gets its own files, branch, and context — no conflicts between concurrent agents. Native --worktree (-w) flag shipped with Claude Code in early 2026.
Documentation
Video Tutorials
Tutorials & Guides
📗 Parallel Vibe Coding with Git Worktrees — Dan Does Code — Shows how Claude creates isolated worktrees at .claude/worktrees/<name>/ with a new branch per session
📗 A Complete Guide to Git Worktrees with Claude Code — Dev.to — From basics to advanced AI-assisted workflows with emphasis on AI-safe isolation
📗 Introduction to Git Worktrees in Claude Code — Better Stack — Step-by-step guide covering setup prerequisites and worktree lifecycle management
📗 The Complete Guide to Git Worktrees with Claude Code — notes.muthu.co — Worktree fundamentals applied specifically to Claude Code workflows
📗 Mastering Git Worktrees with Claude Code — Medium — Running multiple Claude Code sessions in parallel with isolated contexts, eliminating context switching
📗 Git Worktrees: The Secret Weapon for Multiple AI Agents in Parallel — Medium — Preventing agents from conflicting across Claude Code, Codex, and other tools
📗 Git Worktree Isolation: Parallel Development Without the Chaos — Medium — Deep dive on zero-conflict parallel development with the --worktree flag
📗 Parallel Development with Claude Code and Git Worktrees — Dev.to — Managing multiple development efforts from a single repository with separate working directories per task
📗 Git Worktrees for AI Coding: Run Multiple Agents in Parallel — Dev.to — Practical setup for simultaneous Claude Code, Cursor, or Copilot agents
📗 Git Worktrees for Parallel AI Coding Agents — Upsun Dev Center — Create branch locally, push to trigger environment creation, then point AI agents at isolated branches
📗 How Git Worktrees Changed My AI Agent Workflow — Nx Blog — Eliminating context switching and speeding up development cycles with parallel agents
📗 Using Git Worktrees for Parallel AI Agent Development — Mike Bianchi — How git worktrees became truly useful only after CLI coding agents (like Claude Code) became popular
📗 Parallel AI Development with Git Worktrees — Medium — Orchestrating a team of agents across multiple tasks simultaneously using GitHub integration
📗 Why Git Worktrees Are the Secret Weapon for Parallel Coding Agents — Medium — Solve the classic interrupt problem: handle a high-priority bug while keeping the other agent running
📗 What 371 Git Worktrees Taught Me About Multi-Agent AI — Level Up Coding — Hard-won lessons from running hundreds of worktrees at scale: race conditions, branch conflicts, and merge coordination
📗 Git Worktrees: Run Multiple AI Agents on Different Branches at Once — Medium — One-command setup script that auto-installs node_modules and copies .env files for new worktrees
📗 Claude Code Deep Dive Part 2: Development Workflows — mostlycopyandpaste.com — Parallel Claude instances with git worktrees + tmux, spec-driven development, and multi-agent coordination
📗 Parallel Workflows with Git Worktrees and AI Agents — IT Depends Blog — Applying the decade-old git worktrees pattern to modern AI agent workflows
📗 How to Use Git Worktrees with Claude Code — Inventive HQ — Setup, session management across worktrees, and CLAUDE.md behavior in isolated environments
📗 Parallel AI Coding with Git Worktrees and Custom Agents — Agent Interviews — Building multiple component versions simultaneously with parallel Claude Code agents
Tools & Utilities
Tool Description 🔧 wraith.im Select a Linear issue → creates isolated git worktree → runs Claude Code → pushes branch → opens PR → updates Linear automatically 🔧 DevSwarm Multi-workspace command center for parallel AI coding — each workspace is an isolated worktree with VS Code IDE, terminals, diffs, and git controls
Community Discussions
🔄 Multi-Session & Orchestration
Tools for managing multiple concurrent Claude Code sessions, running agents in parallel TUIs, and coordinating autonomous multi-agent workflows.
📱 Remote Control
Control Claude Code sessions from any device — phone, tablet, or another computer. Released as a native feature in February 2026.
Documentation
Tutorials & Guides
Tools & Extensions
Third-party tools that extend native Remote Control with additional channels, workflows, or deployment models.
🌐 Claude for Chrome
Anthropic's official Chrome extension enabling AI-powered browser automation — navigate pages, click buttons, fill forms, debug console errors, automate multi-site workflows, and record demo GIFs, all from Claude or Claude Code. Available to Pro, Max, and Team users. Works with Google Chrome and Microsoft Edge (beta).
Official Resources
Tutorials & Guides
Video Tutorials
Community Discussions
MCP Servers & Developer Tools
Tools for deeper Chrome + Claude integration, beyond the official extension.
⚡ Hooks & Automation
Automate your Claude Code workflows with hooks.
Documentation & Tutorials
Tools & Examples
Repository Stars Description 🔧 diet103/claude-code-infrastructure-showcase 9.2k+ Infrastructure with skill auto-activation, hooks, and agents 🔧 davepoon/buildwithclaude 2.6k+ Skills, Agents, Commands, Hooks, Plugins collection 🔧 disler/claude-code-hooks-mastery 3.3k+ Master Claude Code hooks 🔧 nizos/tdd-guard 1.8k+ Automated TDD enforcement for Claude Code 🔧 parcadei/Continuous-Claude-v3 3.6k+ Context management via ledgers, handoffs, and MCP execution 🔧 peterkrueck/Claude-Code-Development-Kit 1.3k+ Custom workflow with hooks, MCP and sub-agents 🔧 severity1/claude-code-prompt-improver 1.3k+ Intelligent prompt improver hook 🔧 CloudAI-X/claude-workflow-v2 1.3k+ Universal workflow plugin with agents, skills, hooks 🔧 disler/claude-code-hooks-multi-agent-observability 1.3k+ Real-time monitoring for Claude Code agents 🔧 carlrannaberg/claudekit 631 Custom commands, hooks, and utilities 🔧 zxdxjtu/claudecode-rule2hook 405 Transform natural language rules into automation hooks 🔧 yifanzz/claude-code-boost 164 Hook utilities with intelligent auto-approval 🔧 GowayLee/cchooks 120 Python SDK for claude-code hooks 🔧 rinadelph/Rapala 106 Auto-commits every edit with context — code fearlessly, revert easily 🔧 decider/claude-hooks 68 Comprehensive hooks for enforcing clean code practices 🔧 possibilities/claude-code-generic-hooks 53 Generic reusable hooks for Claude Code
Scheduling & Cron
Schedule recurring Claude Code tasks. Native Cowork scheduling requires the desktop app to be open; third-party tools below add server-side execution, webhook triggers, and notification integrations.
Documentation
Tutorials & Guides
Tools
🔄 Headless Mode & CI/CD
Run Claude Code non-interactively in pipelines, GitHub Actions, and automated workflows.
Documentation
Tutorials & Guides
Tools
🔌 MCP (Model Context Protocol)
Connect Claude Code to external tools and services.
Documentation
Guides & Tutorials
Servers & Integrations
Open Source MCP Servers
Repository Stars Description 🔧 oraios/serena 22k+ Semantic retrieval and editing capabilities 🔧 czlonkowski/n8n-mcp 15k+ Build n8n workflows with Claude 🔧 BeehiveInnovations/pal-mcp-server 11k+ Multi-model integration (Gemini, OpenAI, Ollama, etc.) 🔧 hangwin/mcp-chrome 11k+ Chrome browser functionality via MCP — see 🌐 Claude for Chrome for the full Chrome section 🔧 benjaminr/chrome-devtools-mcp 289 MCP Server for Chrome DevTools Protocol — integrates with Claude Desktop and Claude Code 🔧 mcp-use/mcp-use 9.4k+ Easiest way to interact with MCP servers 🔧 idosal/git-mcp 7.8k+ Remote MCP server for any GitHub project 🔧 0x4m4/hexstrike-ai 7.4k+ 150+ cybersecurity tools for pentesting 🔧 BrowserMCP/mcp 6.1k+ Control your browser via MCP 🔧 firecrawl/firecrawl-mcp-server 5.8k+ Web scraping and search for Cursor, Claude 🔧 wonderwhy-er/DesktopCommanderMCP 5.7k+ Terminal control, file search, diff editing 🔧 executeautomation/mcp-playwright 5.3k+ Automate browsers and APIs in Claude Desktop 🔧 CoplayDev/unity-mcp 7.1k+ Perform actions in Unity Editor 🔧 dinoki-ai/osaurus 17 macOS LLM server, native Apple Silicon 🔧 cyberagiinc/DevDocs 2k+ Tech Documentation MCP server for developers 🔧 bytebase/dbhub 2.3k+ Database MCP for Postgres, MySQL, SQL Server, etc. 🔧 jamubc/gemini-mcp-tool 2.1k+ Interact with Google Gemini CLI for large file analysis 🔧 timescale/pg-aiguide 1.6k+ Postgres skills and documentation MCP 🔧 qdrant/mcp-server-qdrant 1.3k+ Official Qdrant MCP server for semantic search 🔧 doobidoo/mcp-memory-service — Automatic context memory for Claude, VS Code, Cursor 🔧 robotmcp/ros-mcp-server 1.1k+ Connect AI models with robots using MCP and ROS 🔧 steipete/claude-code-mcp 1.2k+ Claude Code as one-shot MCP server 🔧 Pimzino/spec-workflow-mcp 4k+ Spec-driven development workflow with real-time web dashboard and VSCode extension 🔧 antvis/mcp-server-chart 3.8k+ 25+ visual charts for chart generation and data analysis 🔧 ConstantineB6/comfy-pilot 131 MCP server + embedded terminal for ComfyUI workflows
MCP Resources
Repository Stars Description 📚 yzfly/Awesome-MCP-ZH 6.5k+ MCP resources (Chinese) - servers, clients, tools
MCP Marketplaces & Directories
Platform / Repository Stars Description 🔧 mcpmarket.com — MCP server marketplace with Claude Code skill reference and curated integrations 🔧 cline/mcp-marketplace 756 Cline's official MCP Marketplace — submit servers for discoverable installation by millions of developers 🔧 xpack-ai/XPack-MCP-Marketplace 158 World's first open-source MCP monetization platform — create and sell your own MCP server in minutes
Commercial MCP Servers
Twitter/X Integration
💻 SDK & API
Programmatic access to Claude Code capabilities via the Claude Agent SDK — available in Python, TypeScript, and community ports for Go, Rust, Ruby, Elixir, .NET, and Kotlin.
Documentation
Getting Started & Tutorials
Deep Dives & Best Practices
Video Tutorials
Deployment & Enterprise
For deploying Claude Code itself on AWS Bedrock, Google Vertex AI, or Microsoft Foundry, see ☁️ Cloud Provider Integrations .
Integration Guides
Comparisons
Repositories
Official SDKs
Community SDKs (Language Ports)
Applications Built with Agent SDK
Learning & Example Repositories
Community Discussions
☁️ Cloud Provider Integrations
Deploy Claude Code through AWS, Google Cloud, or Azure for enterprise-grade security, compliance, and cost control — or route requests through LLM gateways for multi-provider failover, observability, and governance.
Official Documentation
📁 Enterprise Deployment Overview — Compare Anthropic direct, Bedrock, Vertex AI, and Microsoft Foundry options side-by-side
📁 LLM Gateway Configuration — Route Claude Code through LiteLLM, Portkey, Bifrost, or any Anthropic-compatible gateway via ANTHROPIC_BASE_URL
📁 Model Configuration — Pin model versions per provider with modelOverrides and ANTHROPIC_DEFAULT_*_MODEL env vars
📁 Claude Code for Enterprise — VPC deployment, SSO, RBAC, and compliance across all supported providers
📁 Use Claude Code with your Team or Enterprise Plan — Seat types, authentication, HIPAA caveats, usage limits
Amazon Bedrock
Documentation
Tutorials & Guides
Tools & Repositories
Google Vertex AI
Documentation
Tutorials & Guides
Microsoft Foundry (Azure)
Documentation
Tutorials & Guides
LLM Gateways & Multi-Provider Routing
Route Claude Code through third-party gateways for observability, failover, budget controls, and multi-provider flexibility. Officially supported via ANTHROPIC_BASE_URL, ANTHROPIC_BEDROCK_BASE_URL, and ANTHROPIC_VERTEX_BASE_URL env vars.
Tutorials & Guides
📗 How to Use Claude Code with Bedrock, Vertex AI and Anthropic — Portkey — Production multi-provider routing with intelligent failover
📗 Claude Code Best Practices for Enterprise Teams — Portkey — Credential hierarchy, per-team rate limits, provider switching, observability
📗 Bringing Control and Visibility to Claude Code with an AI Gateway — Portkey — Org-level governance with Portkey gateway
📗 How to Use Claude Code with Any Model via Bifrost — Maxim — ANTHROPIC_BASE_URL → Bifrost, model tier overrides, MCP integration
📗 Best LLM Gateways for Claude Code Multi-Model Routing — Maxim — Comparison of Bifrost, LiteLLM, Portkey, Cloudflare AI Gateway, Kong
📗 Best Enterprise AI Gateway for Scaling Claude Code in 2026 — DEV.to — Performance benchmarks and feature comparison
📗 Claude Code with LiteLLM — Medium — LiteLLM proxying Bedrock with Anthropic fallback
📗 Claude Code Router: Multi-Model Routing Tutorial — DataCamp — Full tutorial on claude-code-router for cost optimization
📗 Beyond Anthropic: Using Claude Code with Any Model via Claude Code Router and OpenRouter — Real-world walkthrough of CCR + OpenRouter
📗 Claude Code in Enterprise Environments: IAM, RBAC, Audit Logs — IAM for Bedrock, RBAC for Azure Foundry, Cloud Audit Logs for Vertex
📗 Switch Claude Code Providers in Seconds with claude-provider — Plugin/CLI for quick provider profile switching (/provider:add, /provider:switch)
📗 How to Use Z.AI in Claude Code — ClaudeLog — Z.AI (GLM Coding Plan) as an Anthropic-compatible alternative API
💡 Claude Code + OpenRouter is Amazing! — Reddit — Community setup with .claude/settings.local.json snippet
LiteLLM Documentation
OpenRouter Documentation
Tools & Gateways
Repository / Tool Stars Description 🔧 luohy15/y-router 377 Cloudflare Worker translating Anthropic Claude API to OpenAI-compatible APIs — enables Claude Code with OpenRouter 🔧 RichardAtCT/claude-code-openai-wrapper 443 OpenAI API-compatible wrapper for Claude Code; supports CLI, API key, Bedrock, and Vertex auth via CLAUDE_AUTH_METHOD 🔧 ujisati/claude-code-provider-proxy 143 Multi-provider proxy for routing Claude Code requests 🔧 Portkey AI Gateway — Enterprise AI gateway with observability, governance, and reliability across Bedrock, Vertex AI, and Anthropic 🔧 Bifrost by Maxim — Open-source enterprise AI gateway; 20+ providers, sub-11 microsecond latency, Prometheus/OTel telemetry, virtual keys 🔧 Vercel AI Gateway — Route Claude Code through Vercel AI Gateway via ANTHROPIC_BASE_URL=https://ai-gateway.vercel.sh 🔧 Zuplo AI Gateway — Route Claude Code through Zuplo's AI Gateway via settings.json env config 🔧 TrueFoundry AI Gateway — TrueFoundry AI gateway integration with Claude Code 🔧 Conductor — Claude Code GUI app with built-in env var panel for OpenRouter, Bedrock, Vertex, Vercel AI Gateway, Azure, and GLM
🧠 Memory & Context
Give Claude Code persistent memory across sessions — through built-in CLAUDE.md/auto-memory features, third-party plugins, and MCP memory servers.
Documentation
Official Memory Features
Claude Code ships two complementary memory systems: CLAUDE.md (instructions you write) and auto-memory (notes Claude writes itself). Both load at the start of every conversation.
CLAUDE.md Guides
📗 CLAUDE.md Best Practices — 10 Sections to Include — project overview, tech stack, architecture, coding conventions, and 6 more essential sections
📗 The Complete Guide to AI Agent Memory Files (CLAUDE.md, AGENTS.md, and Beyond) — file hierarchy, auto-memory, @imports, and which files you actually need
📗 The Complete Guide to CLAUDE.md, SKILL.md & Every Important File — covers all Claude Code config files and their interaction
📗 CLAUDE.md Memory System: Tips - SFEIR Institute — 20 actionable tips including 200-line limit, /compact usage, and CI/CD validation scripts
📗 Creating the Perfect CLAUDE.md for Claude Code — practical template and structure guide
📗 CLAUDE.md for Product Managers — project memory setup for non-engineers; write once, context every session
Persistent Memory Setup Guides
Video Tutorials
Plugins & Tools
Repository Stars Description 🔧 thedotmack/claude-mem 35k+ Plugin that captures sessions and injects relevant context — SQLite + ChromaDB hybrid, 6 lifecycle hooks, web viewer UI, MCP search tools, Endless Mode 🔧 steveyegge/beads 19k+ A memory upgrade for your coding agent 🔧 supermemoryai/claude-supermemory 2.3k+ Enable Claude Code to learn in real-time, update its knowledge, and grow with you — injects User Profile at session start, supports Team Memory 🔧 LakyFx/CogniLayer — Infinite-speed memory + code graph for Claude Code & Codex CLI — 17 MCP tools, hybrid search, TUI dashboard, crash recovery, saves 80-200K+ tokens/session 🔧 mkreyman/mcp-memory-keeper — MCP server for persistent context management — never lose context during compaction again
MCP Memory Servers
Repository Stars Description 🔧 mem0ai/mem0 49.9k+ Universal memory layer for AI Agents — official Mem0 library with MCP server for Claude Code integration 🔧 topoteretes/cognee 13.7k+ Knowledge Engine for AI Agent Memory — graph-based memory in 6 lines of code, MCP-compatible 🔧 doobidoo/mcp-memory-service — Automatic context memory for Claude, VS Code, Cursor — semantic search with ChromaDB
Community Discussions
🖥️ GUI & Desktop Apps
Desktop applications, web UIs, and mobile clients for Claude Code — visual interfaces beyond the terminal.
⚙️ Utilities & Config
Configuration frameworks, analytics, workflow tools, routing/proxy utilities, and status line customizations.
Configuration & Setup
Usage Analytics & Monitoring
Routing & Proxy
Workflow & Project Management
Other Tools
Status Line
Custom status lines for Claude Code showing model info, context usage, costs, git status, and more.
Popular Status Line Tools
Specialized & Unique
Tmux Integrations
Multi-Provider & Other Languages
💰 Free & Budget Usage
Ways to use Claude Code without a paid subscription — official free tiers, cloud provider credits, proxy tools for alternative backends, and tips for minimizing costs.
Official Free & Discounted Access
Free API Credits & Cloud Trials
Proxy Tools (Use Claude Code with Free/Alternative Backends)
Route Claude Code requests to other model providers using your own API keys — zero changes to the CLI required. For enterprise LLM gateways (Portkey, Bifrost, Vercel AI Gateway) and official cloud providers (AWS Bedrock, Google Vertex AI, Microsoft Foundry), see ☁️ Cloud Provider Integrations .
Repository Stars Description 🔧 musistudio/claude-code-router 30k+ Route Claude Code requests to OpenRouter, DeepSeek, Ollama, Gemini, and more — model routing, multi-provider support, request/response transformation 🔧 Alishahryar1/free-claude-code 950 Drop-in proxy routing to NVIDIA NIM (40 req/min free), OpenRouter, LM Studio, or llama.cpp — zero cost, no CLI modifications needed 🔧 1rgs/claude-code-proxy 3.2k+ Use Claude Code with Gemini, OpenAI, or direct Anthropic backends via LiteLLM 🔧 kiyo-e/claude-code-proxy 62 Supports GitHub Models and OpenRouter backends, including free models like glm-4.5-air:free 🔧 nielspeter/claude-code-proxy 20 Lightweight proxy for OpenRouter (200+ models), OpenAI Direct, and Ollama (free local inference) 🔧 fuergaosi233/claude-code-proxy 2.2k+ Converts Claude API requests to OpenAI API calls for use with various LLM providers 🔧 Ayush-Kotlin-Dev/codex-claude-proxy 8 Use Claude Code CLI with ChatGPT Codex models via your Free/Plus/Pro subscription
Pricing Guides
🤝 Alternative Coding Agents
Other agentic coding tools inspired by or compatible with Claude Code.
👥 Community
Community resources, discussions, chat servers, meetups, and social platforms where Claude Code users connect and share ideas.
Discord Servers
Server Members Description 💡 Claude Developers (Official) 59,800+ Official Anthropic community — announcements, support, and Claude Code discussions with Anthropic staff 💡 Developer Toolkit AI 10,000+ Cursor, Claude Code, and Codex focused community 💡 r/vibecoding Discord 4,500+ Vibe coding community with active Claude Code discussions 💡 BridgeMind 3,500+ Hosts Vibeathons and AI coding events 💡 GSD: Get Shit Done 1,600+ Meta-prompting framework community for Claude Code 💡 Claude Code Builders (ClaudeWorld) — Weekly cowork sessions, tech talks, and expert insights 💡 zebbern/claude-code-discord 143 Open-source Discord bot bringing Claude Code to your channels
Reddit Communities
💡 r/ClaudeAI — 483K+ members, general Claude AI community
💡 r/ClaudeCode — 108K+ members, dedicated Claude Code community
💡 r/Anthropic — 25K+ members, Anthropic discussion
💡 r/vibecoding — Vibe coding community with Claude Code content
X / Twitter
Official Accounts:
Community Accounts & Creators:
LinkedIn
💡 Anthropic — 2M+ followers, official company page
💡 Claude — 160K+ followers, official product page
Forums & Community Hubs
💡 Anthropic Community Forum — Official Discourse-based forum for Claude and Anthropic discussions
💡 ClaudeLog — No.1 Claude Code community resource — docs, guides, tutorials, and best practices by InventorBlack
💡 ClaudeWorld — Community platform with Director Mode framework, articles, and Discord community
💡 Claude Code Documentation — Complete community-maintained documentation
💡 Hacker News — Active Claude Code discussions (search "Claude Code")
Meetup Groups & In-Person Events
💡 Clauders — 108+ community organizers across 52+ cities in 31 countries — the global hub for Claude Code meetups
💡 Claude Code Anonymous — Regular meetups in London, Vienna, Berlin, Cologne, SF, and Delft
💡 Claude Campus / Builder Clubs — University clubs at Stanford, UF, UW, Virginia Tech, Purdue, Cornell, ASU, and more
💡 Anthropic Events (Luma) — Official hackathons, workshops, and community events
GitHub Community Organizations
Awesome Lists
Learning & Reference
Infrastructure Examples
💖 Contributing
Contributions are welcome and greatly appreciated!
Please read our Contribution Guidelines before submitting a pull request.
⭐ Star this repository ➕ Add a resource you find helpful 🐛 Report broken links 📝 Improve documentation 📢 Spread the word!
📜 License
To the extent possible under law, the contributors have waived all copyright and related or neighboring rights to this work.
Built with ❤️ for the Claude Code community
Powered by Anthropic