Original Reddit post

Curated lists BY AI These are the “yellow pages” — directories that point you at everything else. hesreallyhim/awesome-claude-code (~36.8k stars) — The hand-curated, canonical big list of skills, hooks, slash commands, agent orchestrators, apps, and plugins. Think of it as the master index. jqueryscript/awesome-claude-code — A second curated catalog with IDE integrations and frameworks. Good cross-reference. ComposioHQ/awesome-claude-plugins — Specifically focused on the plugin system (the official extension format that bundles commands, agents, hooks, and MCPs together). quemsah/awesome-claude-plugins — A robot-built list that tracks which plugins are actually being adopted in real repos. Useful for “what’s popular right now.” VoltAgent/awesome-claude-code-subagents — 100+ specialized “subagents” (mini-Claudes with personalities like “security reviewer” or “test writer”). Memory and code-understanding (so Claude doesn’t forget or get lost) oraios/serena (~19.1k stars) — Plugs Claude into a real code-analysis engine (language servers) so it understands code the way an IDE does — jump to definition, find references, rename symbols. Best for large codebases. ELI5: gives Claude IDE-quality eyes for your project. zilliztech/claude-context — Stores your whole codebase in a vector database and only feeds Claude the relevant chunks. ELI5: instead of dumping the whole library on Claude’s desk, it hands Claude just the right pages — saving tokens and money. thedotmack/claude-mem — Recaps each session, compresses it, and re-injects relevant memory next time. ELI5: gives Claude a long-term diary, so it remembers “we already tried that” between sessions. GUI and mobile wrappers (so you don’t have to live in the terminal) getAsterisk/claudia (the original, plus many forks like marcusbey/claudia) — A desktop app built with Tauri/React that wraps Claude Code with a pretty UI: session history, checkpoints/timeline, custom agent designer, MCP manager, and a usage dashboard. ELI5: makes Claude Code feel like a normal Mac/Windows app instead of a black terminal. stravu/crystal (now renamed Nimbalyst ) — Runs several Claude Code sessions side-by-side in separate git worktrees. ELI5: lets you fork three Claudes to try three different approaches to the same task and compare them. slopus/happy (and happy-cli ) — Mobile + web client for Claude Code with end-to-end encryption, push notifications, and voice. ELI5: control Claude from your phone while you’re on the bus. BloopAI/vibe-kanban — A web kanban board where each card is a task being worked on by a coding agent (Claude, Codex, Gemini, etc.) in parallel. ELI5: Trello, but every card has a robot doing the work. Haleclipse/Claudix-JetBrains — Community plugin to use Claude Code inside JetBrains IDEs (IntelliJ, PyCharm, WebStorm). ELI5: brings Claude into your existing IDE if you don’t use VS Code. Multi-agent orchestration (running many Claudes at once) Dicklesworthstone/claude_code_agent_farm — Runs 20–50 Claude Code sessions in parallel with lock-based coordination and tmux monitoring. ELI5: a factory floor of Claudes, each fixing a different bug. smtg-ai/claude-squad — Lightweight terminal app that juggles multiple AI agents (Claude Code, Codex, Aider, OpenCode) in separate workspaces. ELI5: tabbed terminals, one per AI assistant. ruvnet/ruflo (formerly claude-flow) — Big enterprise-y orchestration platform with a “queen + worker” hive-mind pattern, self-learning memory, and federated comms. ELI5: an org chart of Claudes, with a manager Claude assigning subtasks. affaan-m/claude-swarm — Decomposes a task into a dependency graph and runs independent pieces simultaneously, visualized in a TUI. ELI5: breaks a job into LEGO bricks and assembles them in parallel. wshobson/agents — A production-grade kit with 185 agents, 16 workflow orchestrators, and 100 commands. ELI5: pre-built Claude team rosters for common dev situations. barkain/claude-code-workflow-orchestration — A plugin that hooks into plan mode to auto-decompose tasks and delegate to specialized agents. Hooks (rules that fire automatically during a session) nizos/tdd-guard (~1.7k stars) — Watches what Claude is doing and blocks it from skipping tests or over-implementing. ELI5: a hall monitor that enforces test-driven development. dazuiba/CCNotify — macOS desktop notifications when Claude finishes or needs your input; clicking jumps you back to the project in VS Code. ELI5: pings you so you don’t have to babysit the terminal. Statuslines (the little info bar at the bottom) sirmalloc/ccstatusline — Highly customizable statusline with powerline support, themes, model/git/token info. Haleclipse/CCometixLine — Same idea but written in Rust for speed, with a TUI configurator. leeguooooo/claude-code-usage-bar — One-line rate-limit + usage bar with themes and a daemon mode. b-open-io/statusline — Another themed statusline alternative. ELI5 for all of these: the bottom bar of your terminal turns into a tiny dashboard showing model, branch, token spend, and time left until rate limit. Usage and cost trackers (don’t blow your budget) ryoppippi/ccusage — CLI that reads local logs and reports tokens + cost by day, month, session, or 5-hour block. Works for Claude Code, Codex, OpenCode, Amp. ELI5: your Claude monthly bill, broken down. Maciek-roboblog/Claude-Code-Usage-Monitor — Real-time terminal monitor with ML predictions for when you’ll hit limits. ELI5: a fuel gauge with a “you’ll run out by 4pm” warning. badlogic/cccost — Hooks Node’s fetch() to intercept actual API calls for precise cost data. ELI5: a wiretap on Claude’s API line. hamed-elfayome/Claude-Usage-Tracker — macOS menu bar app showing live usage limits. ELI5: a little icon in your menu bar that says “65% used.” phuryn/claude-usage — Local web dashboard for token spend and session history. Routing to other models (use cheaper models when you can) musistudio/claude-code-router — Lets Claude Code talk to other models (OpenRouter, DeepSeek, Ollama, Gemini, etc.) and route tasks by type: cheap models for boring work, Claude for the hard stuff. ELI5: a smart dispatcher that picks the right AI for each errand. duyet/ccr and dlrik/claude-code-router-openrouter — Lighter variants that translate Claude’s API format into OpenAI-compatible APIs to unlock OpenRouter’s free tier. Frameworks and mega-collections SuperClaude-Org/SuperClaude_Framework (~5.7k stars) — Drops a ~/.claude/ config that adds 19 specialized commands and 9 “cognitive personas” (architect, security, QA, mentor…). ELI5: a costume rack of expert hats Claude can put on. davila7/claude-code-templates (~27.2k stars) — A CLI + web catalog of 600+ agents, 200+ commands, 55+ MCPs, 60+ settings, 39+ hooks, and 14 templates. ELI5: an app store for Claude Code config pieces. brennercruvinel/CCPlugins (~2.6k stars) — Time-saving plugin pack built by working devs. jeremylongshore/claude-code-plugins-plus-skills — 425 plugins / 2,810 skills / 200 agents bundled into one open marketplace with a ccpi CLI package manager. MCP servers (Claude’s tool sockets) MCPs are like USB ports — each one lets Claude plug into a new app or service. anthropics/mcp-servers — The official reference servers: filesystem, fetch, git, etc. Boring but essential. github/github-mcp-server — Full GitHub API access: read repos, open PRs, manage issues. ELI5: Claude gets a GitHub login. microsoft/playwright-mcp (~30k stars) — Browser automation: open pages, click, fill forms, scrape. ELI5: Claude gets a web browser it can drive. ChromeDevTools/chrome-devtools-mcp — Lets Claude inspect a live Chrome browser with full DevTools access — network, performance, console. ELI5: Claude can debug a webpage like a human dev with the F12 panel open. upstash/context7 — Pulls up-to-date, version-specific library docs into context on demand. ELI5: instead of guessing from training data, Claude reads the current README before answering. A common “starter pack” recommendation is Context7 + GitHub MCP + Playwright MCP, which covers ~80% of typical workflows. Where to dig deeper: the two curated lists ( hesreallyhim/awesome-claude-code and jqueryscript/awesome-claude-code ) are the best jumping-off points — almost everything above is linked from one of them. Sources: hesreallyhim/awesome-claude-code jqueryscript/awesome-claude-code ComposioHQ/awesome-claude-plugins VoltAgent/awesome-claude-code-subagents oraios/serena zilliztech/claude-context thedotmack/claude-mem marcusbey/claudia stravu/crystal (Nimbalyst) slopus/happy slopus/happy-cli BloopAI/vibe-kanban Haleclipse/Claudix-JetBrains Dicklesworthstone/claude_code_agent_farm smtg-ai/claude-squad ruvnet/ruflo affaan-m/claude-swarm wshobson/agents barkain/claude-code-workflow-orchestration nizos/tdd-guard dazuiba/CCNotify sirmalloc/ccstatusline Haleclipse/CCometixLine leeguooooo/claude-code-usage-bar b-open-io/statusline ryoppippi/ccusage Maciek-roboblog/Claude-Code-Usage-Monitor badlogic/cccost hamed-elfayome/Claude-Usage-Tracker phuryn/claude-usage musistudio/claude-code-router duyet/ccr dlrik/claude-code-router-openrouter SuperClaude-Org/SuperClaude_Framework davila7/claude-code-templates jeremylongshore/claude-code-plugins-plus-skills ChromeDevTools/chrome-devtools-mcp Claude Code MCP docs submitted by /u/austinmb14

Originally posted by u/austinmb14 on r/ClaudeCode