AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified CC0-1.0 Self-run

Awesome Claude Code

mcp-ichangyou-awesome-claude-code · by ichangyou

A curated list of awesome Claude Code tools, MCPs, skills, and resources

No reviews yet
0 installs
19 views
0.0% view→install

Install

$ agentstack add mcp-ichangyou-awesome-claude-code

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-ichangyou-awesome-claude-code)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
20d ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Awesome Claude Code? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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

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-me skill interrogates you to align on intent before coding, alongside to-spec, tdd, code-review, and architecture skills. Install via npx skills@latest add mattpocock/skills or 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 test after 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.md into your repo and agents build UI that follows your design system.
  • Vercel Geist (DESIGN.md) — Vercel's Geist design system published in DESIGN.md format — a real-world reference to study or adapt. Dark theme variant: design.dark.md.
  • awesome-design-md — Curated collection of DESIGN.md files 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.md for invariants — Don't repeat project rules in every prompt; put them in CLAUDE.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 /plan for design-heavy tasks before touching code.

Workflows

Test-Driven Development (TDD)

  1. Write failing test first.
  2. Ask Claude to make it pass — minimal implementation only.
  3. Refactor with tests green.
  4. Repeat.

Tip: Use the /tdd skill to enforce this flow automatically.

Systematic Debugging

  1. Reproduce the bug with a failing test or repro script.
  2. Add strategic console.log / breakpoints to isolate.
  3. Fix the root cause (not the symptom).
  4. 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.

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.

> 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.md & Permissions

Skills & Workflows

Internals & Architecture

Tips & Tools

Community


Contributing

Contributions welcome! Please read the [contribution guidelines](CONTRIBUTING.md) first.

To add a resource:

  1. Fork this repo.
  2. Add your link in the appropriate section, alphabetically if possible.
  3. Use this format: - [Name](URL) — One-line description. Flags: \(Official)\ \(Chinese)\ \(Paid)\``
  4. 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.