Install
$ agentstack add mcp-ichangyou-awesome-claude-code ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Awesome Claude Code [](https://awesome.re)
English | [简体中文](README.zh-CN.md)
> A curated list of awesome tools, MCPs, skills, workflows, and resources for Claude Code.
Claude Code is Anthropic's official agentic coding CLI. This list focuses on community-built extensions, configurations, and guides that make Claude Code more powerful.
Contents
- [Official Resources](#official-resources)
- [MCP Servers](#mcp-servers)
- [Skills & Slash Commands](#skills--slash-commands)
- [Hooks & Automation](#hooks--automation)
- [CLAUDE.md Templates](#claudemd-templates)
- [DESIGN.md — Design Context for Agents](#designmd--design-context-for-agents)
- [Prompting Guides](#prompting-guides)
- [Workflows](#workflows)
- [IDE Integrations](#ide-integrations)
- [Agent SDK](#agent-sdk)
- [Tools & Utilities](#tools--utilities)
- [Tutorials & Videos](#tutorials--videos)
- [Articles & Deep Dives (Chinese)](#articles--deep-dives-chinese)
- [Community](#community)
Official Resources
- Claude Code Documentation — Official docs covering setup, features, and configuration.
- Claude Code Changelog — Release notes and new feature announcements.
- Model Context Protocol — The open protocol powering Claude Code's MCP integrations.
- MCP Official Servers — Reference MCP server implementations by Anthropic.
- Claude Code Settings Reference — Full reference for
settings.jsonconfiguration. - Claude Code Hooks — Automate actions triggered by Claude Code events.
- Agent SDK Documentation — Build custom subagents and multi-agent pipelines.
MCP Servers
> MCP (Model Context Protocol) servers extend Claude Code with new tools and integrations.
Development
- Filesystem — Read/write local files with configurable access controls.
- Git — Run Git operations, view diffs, and browse commit history.
- Playwright — Cross-browser automation by Microsoft.
Data & Storage
- PostgreSQL — Read-only PostgreSQL database access.
- SQLite — Query and inspect SQLite databases.
- Supabase — Full Supabase integration: database, auth, storage.
Search & Knowledge
- Brave Search — Web and local search via the Brave Search API.
- Fetch — Fetch web content and convert it to Markdown.
- Memory — Persistent knowledge graph memory across sessions.
- Context7 — Always up-to-date library docs injected into context.
Productivity & Collaboration
- Slack — Read channels, send messages, manage Slack workspaces.
- Google Drive — Search and read Google Drive files.
- Linear — Manage Linear issues, projects, and cycles.
- Figma — Read Figma designs, extract components and styles.
Skills & Slash Commands
> Community-built skills (slash commands) that extend Claude Code's built-in capabilities.
- Skills for Real Engineers — Matt Pocock's Claude Code skill collection; the
grill-meskill interrogates you to align on intent before coding, alongsideto-spec,tdd,code-review, and architecture skills. Install vianpx skills@latest add mattpocock/skillsor the plugin marketplace.(Community) - Superpowers — Jesse Vincent's skills framework that runs AI coding through an engineering process: brainstorming, TDD, systematic debugging, plan writing, subagent-driven development, and code review. Installs via
/plugin install superpowers@claude-plugins-official.(Community) - TDD Workflow — Red-green-refactor cycle enforced via skill.
- Systematic Debugging — Structured debugging flow: reproduce → isolate → fix → verify.
- Code Review — Automated code review at configurable effort levels (low/medium/high/ultra).
- Git Commit — Consistent commit messages following project conventions.
> Contribute your skill: Open a PR with your skill repo link and a one-line description.
Hooks & Automation
> Hooks execute shell commands before/after Claude Code tool calls.
// .claude/settings.json — example hook configuration
{
"hooks": {
"PreToolUse": [
{
"matcher": "Bash",
"hooks": [{ "type": "command", "command": "echo 'Running bash command'" }]
}
],
"PostToolUse": [
{
"matcher": "Edit",
"hooks": [{ "type": "command", "command": "prettier --write $CLAUDE_FILE_PATH" }]
}
]
}
}
Hook recipes:
- Auto-format on edit — Run Prettier/ESLint/gofmt after every file edit.
- Test on save — Trigger
npm testafter editing test files. - Token analytics — Log tool call types to track usage patterns.
- RTK proxy — Route all shell commands through [RTK](#tools--utilities) for token savings.
CLAUDE.md Templates
> CLAUDE.md files give Claude Code persistent project context. Place at repo root or ~/.claude/CLAUDE.md for global config.
- Web App (Next.js) — Tech stack, testing conventions, env var rules, deploy instructions.
- iOS App (Swift) — Bundle ID, simulator launch commands, StoreKit testing notes, clean build reminders.
- Python Backend — Virtual env setup, migration commands, linting config.
- Monorepo — Per-package CLAUDE.md with shared root config.
Key CLAUDE.md sections to include:
## Tech Stack ← what you're building with
## Commands ← build, test, lint, deploy commands
## Conventions ← naming, file structure, patterns to follow
## Gotchas ← known footguns, things Claude often gets wrong
## Off-limits ← never auto-commit, never modify X file
DESIGN.md — Design Context for Agents
> DESIGN.md is to a design system what CLAUDE.md is to project context: a structured file that gives coding agents a persistent understanding of a visual identity (colors, type, spacing, components, tone) — so the UI they generate matches your design system.
- DESIGN.md Specification — The format spec by Google Labs: drop a
DESIGN.mdinto your repo and agents build UI that follows your design system. - Vercel Geist (DESIGN.md) — Vercel's Geist design system published in
DESIGN.mdformat — a real-world reference to study or adapt. Dark theme variant: design.dark.md. - awesome-design-md — Curated collection of
DESIGN.mdfiles from popular brand design systems, ready to drop into a project.
Prompting Guides
- Be specific about scope — "Edit only
src/auth.ts" beats "fix the auth bug." - Give Claude the exit condition — "Stop after writing tests, don't implement yet."
- Use
CLAUDE.mdfor invariants — Don't repeat project rules in every prompt; put them inCLAUDE.md. - Decompose large tasks — One PR's worth of work per session. Large tasks accumulate errors.
- Reference files explicitly — Claude reads what you point to; don't assume it found the right file.
- Iterate in plan mode — Use
/planfor design-heavy tasks before touching code.
Workflows
Test-Driven Development (TDD)
- Write failing test first.
- Ask Claude to make it pass — minimal implementation only.
- Refactor with tests green.
- Repeat.
Tip: Use the /tdd skill to enforce this flow automatically.
Systematic Debugging
- Reproduce the bug with a failing test or repro script.
- Add strategic
console.log/ breakpoints to isolate. - Fix the root cause (not the symptom).
- Verify fix + check for regressions.
Code Review Workflow
# Review current diff at medium effort
/code-review
# Deep multi-agent cloud review
/code-review ultra
# Post findings as inline PR comments
/code-review --comment
Feature Branch Workflow
# Start a new feature
git checkout -b feature/my-feature
# Let Claude implement, then review
/code-review
# Verify before merging
/verify
IDE Integrations
- VS Code — Install the Claude Code extension for in-editor access.
- JetBrains — Available via JetBrains Marketplace for IntelliJ, WebStorm, PyCharm, etc.
- Neovim — Community plugin:
claudecode.nvim(see community links below). - Terminal — Runs natively in any terminal. iTerm2 on macOS recommended for best experience.
Agent SDK
> Build custom subagents and multi-agent pipelines with the Claude Code Agent SDK.
- Agent SDK Docs — Official SDK documentation.
- Python Agent SDK — Python SDK for building agents.
- TypeScript Agent SDK — TypeScript SDK for building agents.
Use cases:
- Parallel subagents for independent tasks (research + implementation simultaneously).
- Specialized agents per domain (frontend agent, backend agent, QA agent).
- Long-running autonomous loops with scheduled wakeups.
Tools & Utilities
- Agent Island — Open-source status companion for Claude Code and Codex with live session state, your-turn alerts, and local monitoring on macOS and Windows.
- RTK (Rust Token Killer) — CLI proxy that filters verbose tool output before it reaches Claude, cutting token usage 60–90% on dev operations. (Repo not yet public)
(Community) - ax — Local telemetry and recall graph for Claude Code sessions, tool calls, skills, and costs.
- awesome-mcp-servers — Comprehensive list of MCP servers across all categories.
- mcp.so — MCP server registry and discovery.
Tutorials & Videos
> ⚠️ Always check the publish date — Claude Code updates frequently.
- Mastering Claude Code — Complete Visual Breakdown — Community tutorial covering Claude Code concepts with visual breakdowns.
- Building with MCP and the Claude API — Anthropic team members discuss MCP origins and integration with Claude Code.
(Official)
> Contribute: Know a great tutorial? Open a PR.
Articles & Deep Dives (Chinese)
> In-depth Chinese-language articles on Claude Code, grouped by topic. Current source is mufeng.blog; PRs adding other blogs are welcome. Titles are kept in the original Chinese.
Getting Started / Overview
- 如果你还没用 Claude Code,可能已经落后一个时代 — A beginner-oriented take on what Claude Code is and why it matters.
(Chinese) - Claude Code 从 0 到 1 全攻略 — Full onboarding flow from install to first real use.
(Chinese) - Claude Code 使用洞察:第一个月 /insight 真实案例 — Reviewing real usage data and collaboration patterns via
/insight.(Chinese)
CLAUDE.md & Permissions
- CLAUDE.md 完全指南 — How to use CLAUDE.md to give a project persistent rules and context.
(Chinese) - 权限配置完全指南 — Configuring allow/deny permissions in
settings.json.(Chinese) - 权限模式完全指南:Auto / Bypass / Ask — Differences and use cases of the three permission modes.
(Chinese) - 文件过滤完全指南:.claudeignore 到 permissions.deny — Mechanisms for controlling which files Claude can access.
(Chinese)
Skills & Workflows
- Claude Skill 官方指南 — The official approach to distilling prompts into reusable Skills.
(Chinese) - Claude Code Skills 深度解析:SKILL.md 结构 — Breaking down the structure and authoring of SKILL.md.
(Chinese) - Superpowers:让 Claude Code 和 Codex 按工程流程开发 — Using the Superpowers plugin to run AI coding through a disciplined process.
(Chinese) - Claude Code + Obsidian + NotebookLM 研究系统 — Combining the three into a self-iterating AI research workflow.
(Chinese)
Internals & Architecture
- Claude Code 源码泄露:架构深度解构 — Analyzing Claude Code's overall architecture from leaked source.
(Chinese) - Claude Code 深度解析:从终端 Agent 到一人工程团队 — How it lets one person run a full engineering process.
(Chinese) - 你的 AI Agent 跑不好,根本不是模型的问题 — Why agent performance is decided by harness engineering, not just the model.
(Chinese)
Tips & Tools
- Claude Code 常用快捷键 — Common in-terminal shortcuts and operation flow.
(Chinese) - Claude Code Token 消耗太高?RTK 帮你省下 9 成 — Cutting token usage by filtering tool output through the RTK proxy.
(Chinese)
Community
- Anthropic Discord — Official server with a
#claude-codechannel. - r/ClaudeAI — Community discussion, tips, and showcases.
- Claude Code Twitter/X — Follow for release announcements.
Contributing
Contributions welcome! Please read the [contribution guidelines](CONTRIBUTING.md) first.
To add a resource:
- Fork this repo.
- Add your link in the appropriate section, alphabetically if possible.
- Use this format:
- [Name](URL) — One-line description. Flags: \(Official)\\(Chinese)\\(Paid)\`` - Submit a PR.
Quality bar: Only add tools/resources you've personally used and found valuable.
License
[](https://creativecommons.org/publicdomain/zero/1.0/)
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: ichangyou
- Source: ichangyou/awesome-claude-code
- License: CC0-1.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.