awesome-claude-code
A curated list of awesome skills, hooks, slash-commands, agent orchestrators, applications, and plugins for Claude Code by Anthropic
claude --resumeA curated list of awesome skills, hooks, slash-commands, agent orchestrators, applications, and plugins for Claude Code by Anthropic
claude --resumeMarketing skills for Claude Code and AI agents. CRO, copywriting, SEO, analytics, and growth engineering.
npx skills add coreyhaines31/marketingskillsA set of ready to use Agent Skills for research, science, engineering, analysis, finance and writing.
Claude Scientific Skills follows the open [Agent Skills](https://agentskills.io/) standard. Simply copy the skill folders into your skills directory and your AI agent will automatically discover and use them.
### Step 1: Clone the Repository[!TIP] A huge thank you to the community! The support for Understand-Anything has been incredible. If this tool saves you a few minutes of digging through complexity, that's all I wanted. ๐
You just joined a new team. The codebase is 200,000 lines of code. Where do you even start?
Understand Anything is a Claude Code plugin that analyzes your project with a multi-agent pipeline, builds a knowledge graph of every file, function, class, and dependency, then gives you an interactive dashboard to explore it all visually. Stop reading code blind. Start seeing the big picture.
Reading code is hard. Understanding a whole codebase is harder. Documentation is always out of date, onboarding takes weeks, and every new feature feels like archaeology.
Understand Anything fixes this by combining LLM intelligence with static analysis to produce a living, explorable map of your project โ with plain-English explanations for everything.
/plugin marketplace add Lum1104/Understand-Anything
/plugin install understand-anything
/understand
A multi-agent pipeline scans your project, extracts every file, function, class, and dependency, then builds a knowledge graph saved to .understand-anything/knowledge-graph.json.
/understand-dashboard
An interactive web dashboard opens with your codebase visualized as a graph โ color-coded by architectural layer, searchable, and clickable. Select any node to see its code, relationships, and a plain-English explanation.
# Ask anything about the codebase
/understand-chat How does the payment flow work?
# Analyze impact of your current changes
/understand-diff
# Deep-dive into a specific file or function
/understand-explain src/auth/login.ts
# Generate an onboarding guide for new team members
/understand-onboard
Understand-Anything works across multiple AI coding platforms.
/plugin marketplace add Lum1104/Understand-Anything
/plugin install understand-anything
Tell Codex:
Fetch and follow instructions from https://raw.githubusercontent.com/Lum1104/Understand-Anything/refs/heads/main/.codex/INSTALL.md
Tell OpenCode:
Fetch and follow instructions from https://raw.githubusercontent.com/Lum1104/Understand-Anything/refs/heads/main/.opencode/INSTALL.md
Tell OpenClaw:
Fetch and follow instructions from https://raw.githubusercontent.com/Lum1104/Understand-Anything/refs/heads/main/.openclaw/INSTALL.md
Cursor auto-discovers the plugin via .cursor-plugin/plugin.json when this repo is cloned. No manual installation needed โ just clone and open in Cursor.
Tell Antigravity:
Fetch and follow instructions from https://raw.githubusercontent.com/Lum1104/Understand-Anything/refs/heads/main/.antigravity/INSTALL.md
Tell Gemini CLI:
Fetch and follow instructions from https://raw.githubusercontent.com/Lum1104/Understand-Anything/refs/heads/main/.gemini/INSTALL.md
Tell Pi Agent:
Fetch and follow instructions from https://raw.githubusercontent.com/Lum1104/Understand-Anything/refs/heads/main/.pi/INSTALL.md
| Platform | Status | Install Method |
|---|---|---|
| Claude Code | โ Native | Plugin marketplace |
| Codex | โ Supported | AI-driven install |
| OpenCode | โ Supported | AI-driven install |
| OpenClaw | โ Supported | AI-driven install |
| Cursor | โ Supported | Auto-discovery |
| Antigravity | โ Supported | AI-driven install |
| Gemini CLI | โ Supported | AI-driven install |
| Pi Agent | โ Supported | AI-driven install |
The /understand command orchestrates 5 specialized agents:
| Agent | Role |
|---|---|
project-scanner | Discover files, detect languages and frameworks |
file-analyzer | Extract functions, classes, imports; produce graph nodes and edges |
architecture-analyzer | Identify architectural layers |
tour-builder | Generate guided learning tours |
graph-reviewer | Validate graph completeness and referential integrity |
File analyzers run in parallel (up to 3 concurrent). Supports incremental updates โ only re-analyzes files that changed since the last run.
understand-anything-plugin/
.claude-plugin/ โ Plugin manifest
agents/ โ Specialized AI agents
skills/ โ Skill definitions (/understand, /understand-chat, etc.)
src/ โ TypeScript source (context-builder, diff-analyzer, etc.)
packages/
core/ โ Analysis engine (types, persistence, tree-sitter, search, schema, tours)
dashboard/ โ React + TypeScript web dashboard
TypeScript, pnpm workspaces, React 18, Vite, TailwindCSS v4, React Flow, Zustand, web-tree-sitter, Fuse.js, Zod, Dagre
| Command | Description |
|---|---|
pnpm install | Install all dependencies |
pnpm --filter @understand-anything/core build | Build the core package |
pnpm --filter @understand-anything/core test | Run core tests |
pnpm --filter @understand-anything/skill build | Build the plugin package |
pnpm --filter @understand-anything/skill test | Run plugin tests |
pnpm --filter @understand-anything/dashboard build | Build the dashboard |
pnpm dev:dashboard | Start dashboard dev server |
Contributions are welcome! Here's how to get started:
git checkout -b feature/my-feature)pnpm --filter @understand-anything/core test)Please open an issue first for major changes so we can discuss the approach.