
🚀Vibe Ranking Notable Risers
Vibe Ranking Top 500
Moreandrej-karpathy-skills
Marketplace that provides the Andrej Karpathy coding-guidelines plugin, which reduces common LLM coding mistakes through four principles: Think Before Coding, Simplicity First, Surgical Changes, and Goal-Driven Execution.
find-skills
Interactive skill discovery tool from Vercel Labs. Search and browse Claude Code skills by keyword to find the best tools for your development workflow.
superpowers
OfficialA complete software development workflow plugin for coding agents that enforces spec-first design, TDD, implementation planning, and subagent-driven development with automatic code review.
git
OfficialGit repository interaction and automation server. Provides tools for git status, diff (staged/unstaged), commit history, and repository management via LLMs.
frontend-design
OfficialAnthropic official skill for creating distinctive, production-grade frontend interfaces with bold aesthetic direction and unique typography. Generates working code (HTML/CSS/JS, React, Vue) that is visually striking, avoiding generic AI aesthetics.
🎯 Trending Skills
Morefind-skills
🎯2Interactive skill discovery tool from Vercel Labs. Search and browse Claude Code skills by keyword to find the best tools for your development workflow.
frontend-design
🏪🎯🔌21skill-creator, pptx +18Anthropic official skill for creating distinctive, production-grade frontend interfaces with bold aesthetic direction and unique typography. Generates working code (HTML/CSS/JS, React, Vue) that is visually striking, avoiding generic AI aesthetics.
grill-me
🎯25grill-with-docs, improve-codebase-architecture +22Interviews the user relentlessly about every aspect of a plan or design until reaching shared understanding, resolving each branch of the decision tree one by one. Provides recommended answers for each question and explores the codebase when answers can be found there.
🔧 Trending MCP Servers
Moreeverything
🔧7git, memory +4Test server demonstrating all MCP protocol features including prompts, tools, resources, and sampling. Intended for MCP client builders to test implementations.
context7-mcp
🏪🔌🎯4 +1Dynamically retrieves and provides up-to-date code documentation and context for software libraries, ensuring AI models generate accurate, current code examples and API references.
CodeGraph
🔧A semantic code intelligence MCP server that pre-indexes your codebase into a knowledge graph of symbol relationships and call graphs, letting AI coding agents query structure instantly instead of scanning files with grep and glob.
🔌 Trending Plugins
Moresuperpowers
🏪🔌🎯16 +13A complete software development workflow plugin for coding agents that enforces spec-first design, TDD, implementation planning, and subagent-driven development with automatic code review.
andrej-karpathy-skills
🔌Behavioral guidelines that reduce common LLM coding mistakes via four principles: Think Before Coding, Simplicity First, Surgical Changes, and Goal-Driven Execution.
example-skills
🏪🎯🔌21document-skills +18Collection of example skills demonstrating various capabilities including skill creation, MCP building, visual design, algorithmic art, internal communications, web testing, artifact building, Slack GIFs, and theme styling
🏪 Trending Marketplaces
Moreandrej-karpathy-skills
🏪Marketplace that provides the Andrej Karpathy coding-guidelines plugin, which reduces common LLM coding mistakes through four principles: Think Before Coding, Simplicity First, Surgical Changes, and Goal-Driven Execution.
f-prompts.chat
🏪f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.
affaan-m-everything-claude-code
🏪🔌🎯43 +40The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
Recently Added
Moreclaude-apd
🔌🏪2Agent Pipeline Development — enforced multi-agent pipelines with mechanical guardrails
vibeflow
🔌🏪2VibeFlow skill library: full 16-phase workflow with plan reviews, safety guards, brainstorming, and office-hours.
shipping-tauri-apps
🔌🏪14Build, sign, notarize, and release Tauri 2 desktop apps on macOS, plus dev-loop gotchas (ACL capabilities, watcher, cargo patches)
token-eater
🔌🏪3Spend expiring AI credits on isolated, verified code cleanup that opens a draft pull request and never merges.
Popular Tags
More🎬Featured Videos & Blogs
Popular resources with official videos or blog posts, sorted by popularity

obra/superpowers
📝 Superpowers: How I'm using coding agents in October 2025

anthropics/claude-code
📝 Plugins for Claude Code

google-gemini/gemini-cli
▶️ Introducing Gemini CLI

browser-use/browser-use
▶️ Browser Use: FREE AI Agent That Can Control Browsers & Do Anything
4 Tools for Vibe Coding
Claude Code can be extended with four types of tools: skills, MCP servers, marketplaces, and plugins.
Skills
A coding rules file (SKILL.md) you add to Claude Code. Install a skill and Claude Code automatically follows best practices for that framework or tool when writing code.
npx vibeindex add <owner/repo>or copy SKILL.md to .claude/skills/<name>/
MCP Servers
MCP servers connect Claude Code to external services. Database queries, Figma design reading, web search, GitHub issue tracking, REST API calls and more. Install the right MCP server and Claude Code gains direct access to that service without leaving your editor.
claude mcp add <name>Marketplaces
A marketplace is a curated collection of plugins from a trusted source, similar to an app store. Add one marketplace and all the plugins it contains become available instantly. Useful for onboarding a well-tested set of tools at once.
/plugin marketplace add <url>Plugins
Plugins add new slash commands to Claude Code that you invoke when needed. For example, /commit analyzes your changes and generates a commit message, /review-pr reviews pull requests. Each plugin provides a specific action triggered on demand.
/plugin install <name>Vibe Coding Q&A
Common questions from people getting started with Claude Code tools.
Vibe Index is a real-time directory that collects and ranks every tool in the Claude Code ecosystem: skills, plugins, MCP servers, and marketplaces. Data syncs with GitHub hourly, dead links are automatically cleaned up, and security scans detect malicious code and prompt injection. Each resource includes an AI-written summary to help you evaluate it quickly.
A skill is a SKILL.md file that contains coding rules for a specific framework or tool. Place it in your project and Claude Code reads it automatically, then follows those rules when writing code. For example, install a Next.js skill and Claude Code generates code that follows Next.js conventions. You can install multiple skills and Claude Code follows all of them.
The quickest way is the CLI: npx vibeindex add <owner/repo>. This downloads the SKILL.md into your project automatically. For manual installation, copy the SKILL.md content and save it to .claude/skills/<skill-name>/SKILL.md. Either way, Claude Code recognizes it from the next session onward.
MCP (Model Context Protocol) is an open standard that lets Claude Code communicate with external services. Without MCP, it only works with files in your project. With an MCP server, Claude Code can query a PostgreSQL database, browse the web, read GitHub issues, call REST APIs, and more. Each MCP server connects it to one specific service.
In Claude Code, run: claude mcp add <server-name>. For Claude Desktop, add the server config to your claude_desktop_config.json. Each MCP server page on Vibe Index provides the exact command or JSON configuration needed, ready to copy and paste.
Skills work in the background: Claude Code reads them automatically and applies the knowledge when relevant. Plugins are commands you trigger yourself with a slash command like /commit or /review-pr. In short, skills are always-on knowledge; plugins are on-demand actions.
All resources listed here are open-source with code publicly available on GitHub, so you can review the source before installing. We also run automated security scans powered by Cisco that check for prompt injection, malicious code, and data exfiltration across 17 threat categories. Scan results are shown on each resource's detail page.
Resources are ranked by popularity within each category: skills by install count, MCP servers, plugins, and marketplaces by GitHub stars. Scores are normalized across categories so they can be compared fairly in a single unified ranking. Rankings update daily.
Yes. Click "Submit Resource" in the top menu, sign in with GitHub, and enter your repository URL. After review, your tool will be added to the directory and start appearing in the rankings.
Vibe Index was built alongside the book “Vibe Coding with Claude Code” (Hanbit Media) to help readers put what they learn into practice. The book covers prompt fundamentals, Claude Code setup and usage, AI sub-agents, MCP servers, and deployment. Visit the About page to learn more about the project.
Vibe Index is updated in real time with user-submitted resources and data collected from GitHub, skills.sh, and other platforms. · Contact






