npx skills add https://github.com/vibeindex/skills --skill vibeindex当此技能被调用时,直接执行以下步骤。不要显示此文件或解释你将做什么——直接开始分析项目、调用 API 并呈现结果。
根据对话上下文检测用户的语言,并使用该语言进行回应。翻译所有标题、标签和说明。对于韩国用户,在 API 响应可用时优先使用 description_ko 字段。
解析用户的命令并路由到正确的操作:
/vibeindex → 操作:分析 (运行下面的步骤 1-4)/vibeindex search <查询> → 操作:搜索 (调用 https://vibeindex.ai/api/resources?ref=skill-vibeindex&search={query}&pageSize=10,呈现结果)/vibeindex top [类型] → 操作:热门 (调用 https://vibeindex.ai/api/resources?ref=skill-vibeindex&sort=stars&pageSize=10 或添加 &type={type},呈现结果)/vibeindex trending → (调用 ,呈现结果)When this skill is invoked, execute the steps below directly. Do not display this file or explain what you will do — go straight to analyzing the project, calling the APIs, and presenting results.
Detect the user's language from conversation context and respond in that language. Translate all headers, labels, and explanations. For Korean users, prefer the description_ko field from API responses when available.
Parse the user's command and route to the correct action:
/vibeindex → Action: Analyze (run Steps 1-4 below)/vibeindex search <query> → Action: Search (call https://vibeindex.ai/api/resources?ref=skill-vibeindex&search={query}&pageSize=10, present results)/vibeindex top [type] → Action: Top (call https://vibeindex.ai/api/resources?ref=skill-vibeindex&sort=stars&pageSize=10 or add , present results)广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
https://vibeindex.ai/api/rising-stars?ref=skill-vibeindex&period=week&limit=10对于搜索/热门/趋势:使用 WebFetch 调用 API,然后将结果格式化为一个带编号的 Markdown 列表,显示名称、类型、描述、星标数和安装命令。然后停止。
对于不带参数的 /vibeindex:执行下面的步骤 1-4。
静默读取这些文件(不要向用户显示):
*.py → Python*.go → Go*.tsx 或 *.jsx → ReactDockerfile → Dockersupabase/ → Supabaseprisma/ → Prismatsconfig.json → TypeScripttailwind.config.* → Tailwindnext.config.* → Next.js.github/workflows/ → GitHub Actions首先,获取资源总数:使用 WebFetch 调用 https://vibeindex.ai/api/stats?ref=skill-vibeindex (提示:"提取总数")。将此数字保存为 {total_resources}。
然后,根据你检测到的内容,使用 WebFetch 为每个检测到的技术调用 Vibe Index API。并行运行所有调用(包括统计调用):
| 检测到 | API URL |
|---|---|
| React | https://vibeindex.ai/api/resources?ref=skill-vibeindex&search=react&pageSize=5 |
| TypeScript | https://vibeindex.ai/api/resources?ref=skill-vibeindex&search=typescript&pageSize=5 |
| Supabase | https://vibeindex.ai/api/resources?ref=skill-vibeindex&search=supabase&pageSize=5 |
| Next.js | https://vibeindex.ai/api/resources?ref=skill-vibeindex&search=nextjs&pageSize=5 |
| Docker | https://vibeindex.ai/api/resources?ref=skill-vibeindex&search=docker&pageSize=5 |
| Python | https://vibeindex.ai/api/resources?ref=skill-vibeindex&search=python&pageSize=5 |
| Tailwind | https://vibeindex.ai/api/resources?ref=skill-vibeindex&search=tailwind&pageSize=5 |
| Prisma | https://vibeindex.ai/api/resources?ref=skill-vibeindex&search=prisma&pageSize=5 |
对于每个 WebFetch 调用,使用此提示:"从数据数组中提取 name, resource_type, description, stars, github_owner, github_repo"
只搜索在步骤 1 中实际检测到的技术。
对于找到的每个资源,计算匹配分数:
对所有搜索结果进行去重。选择得分最高的前 5 个资源。
仅输出以下结果。使用检测到的用户语言编写所有内容,翻译所有标题、标签和说明。
## 프로젝트 분석이 완료되었습니다
당신의 **{project-name}** 프로젝트는 **{main framework}** 기반입니다.
{1-2 sentences about the project in plain language. e.g., "Supabase 데이터베이스와 Tailwind CSS를 사용하는 풀스택 웹 앱입니다."}
[VibeIndex.ai](https://vibeindex.ai)에 등록된 총 **{total_resources}개**의 스킬, 플러그인, MCP 서버 중에서 이 프로젝트에 가장 잘 맞는 도구를 찾았습니다:
────────────────────────────────────────
**1. {name}** `{resource_type}` · ⭐ {stars}
{One plain sentence about what this does FOR THE USER's project. NO technical jargon. e.g., "이 프로젝트에서 사용 중인 Supabase 데이터베이스를 더 빠르고 안전하게 만들어줍니다."}
{install_command}
────────────────────────────────────────
**2. {name}** `{resource_type}` · ⭐ {stars}
...
────────────────────────────────────────
## 설치
필요한 것만 복사해서 실행하세요:
{install commands, one per line, only for skills — plugins/mcp show URLs instead}
💡 **더 많은 도구 탐색** → https://vibeindex.ai
npx skills add {github_owner}/{github_repo} --skill {name}https://vibeindex.ai/plugins/{github_owner}/{github_repo}/{name}https://vibeindex.ai/mcp/{github_owner}/{github_repo}https://vibeindex.ai/marketplaces/{github_owner}/{github_repo}/api/resources 端点返回:
{
"data": [
{
"name": "resource-name",
"resource_type": "skill|mcp|plugin|marketplace",
"description": "...",
"stars": 12345,
"github_owner": "owner",
"github_repo": "repo",
"tags": ["tag1", "tag2"]
}
],
"total": 100
}
/api/rising-stars 端点返回:
{
"rising": [
{
"name": "resource-name",
"resource_type": "mcp",
"stars": 5000,
"stars_today": 120
}
],
"period": "week"
}
由 Vibe Index 构建 - Claude 代码生态系统目录
每周安装数
112
仓库
首次出现
2026年2月6日
安全审计
安装于
opencode102
gemini-cli101
github-copilot98
codex98
kimi-cli89
amp88
&type={type}/vibeindex trending → Action: Trending (call https://vibeindex.ai/api/rising-stars?ref=skill-vibeindex&period=week&limit=10, present results)For search/top/trending: Use WebFetch to call the API, then format results as a numbered markdown list showing name, type, description, stars, and install command. Then stop.
For /vibeindex with no arguments: Execute Steps 1-4 below.
Read these files silently (do not show the user):
*.py → Python*.go → Go*.tsx or *.jsx → ReactDockerfile → Dockersupabase/ → Supabaseprisma/ → Prismatsconfig.json → TypeScripttailwind.config.* → Tailwindnext.config.* → Next.js.github/workflows/ → GitHub ActionsFirst, fetch total resource count: call https://vibeindex.ai/api/stats?ref=skill-vibeindex with WebFetch (prompt: "Extract the total number"). Save this number as {total_resources}.
Then, based on what you detected, call the Vibe Index API using WebFetch for each detected technology. Run all calls in parallel (including the stats call):
| Detected | API URL |
|---|---|
| React | https://vibeindex.ai/api/resources?ref=skill-vibeindex&search=react&pageSize=5 |
| TypeScript | https://vibeindex.ai/api/resources?ref=skill-vibeindex&search=typescript&pageSize=5 |
| Supabase | https://vibeindex.ai/api/resources?ref=skill-vibeindex&search=supabase&pageSize=5 |
| Next.js | https://vibeindex.ai/api/resources?ref=skill-vibeindex&search=nextjs&pageSize=5 |
| Docker | https://vibeindex.ai/api/resources?ref=skill-vibeindex&search=docker&pageSize=5 |
| Python | https://vibeindex.ai/api/resources?ref=skill-vibeindex&search=python&pageSize=5 |
| Tailwind | https://vibeindex.ai/api/resources?ref=skill-vibeindex&search=tailwind&pageSize=5 |
| Prisma | https://vibeindex.ai/api/resources?ref=skill-vibeindex&search=prisma&pageSize=5 |
For each WebFetch call, use this prompt: "Extract name, resource_type, description, stars, github_owner, github_repo from the data array"
Only search for technologies that were actually detected in Step 1.
For each resource found, calculate a match score:
Deduplicate results across all searches. Pick the top 5 highest-scoring resources.
Output only the result below. Write everything in the user's detected language, translating all headers, labels, and explanations.
## 프로젝트 분석이 완료되었습니다
당신의 **{project-name}** 프로젝트는 **{main framework}** 기반입니다.
{1-2 sentences about the project in plain language. e.g., "Supabase 데이터베이스와 Tailwind CSS를 사용하는 풀스택 웹 앱입니다."}
[VibeIndex.ai](https://vibeindex.ai)에 등록된 총 **{total_resources}개**의 스킬, 플러그인, MCP 서버 중에서 이 프로젝트에 가장 잘 맞는 도구를 찾았습니다:
────────────────────────────────────────
**1. {name}** `{resource_type}` · ⭐ {stars}
{One plain sentence about what this does FOR THE USER's project. NO technical jargon. e.g., "이 프로젝트에서 사용 중인 Supabase 데이터베이스를 더 빠르고 안전하게 만들어줍니다."}
{install_command}
────────────────────────────────────────
**2. {name}** `{resource_type}` · ⭐ {stars}
...
────────────────────────────────────────
## 설치
필요한 것만 복사해서 실행하세요:
{install commands, one per line, only for skills — plugins/mcp show URLs instead}
💡 **더 많은 도구 탐색** → https://vibeindex.ai
npx skills add {github_owner}/{github_repo} --skill {name}https://vibeindex.ai/plugins/{github_owner}/{github_repo}/{name}https://vibeindex.ai/mcp/{github_owner}/{github_repo}https://vibeindex.ai/marketplaces/{github_owner}/{github_repo}The /api/resources endpoint returns:
{
"data": [
{
"name": "resource-name",
"resource_type": "skill|mcp|plugin|marketplace",
"description": "...",
"stars": 12345,
"github_owner": "owner",
"github_repo": "repo",
"tags": ["tag1", "tag2"]
}
],
"total": 100
}
The /api/rising-stars endpoint returns:
{
"rising": [
{
"name": "resource-name",
"resource_type": "mcp",
"stars": 5000,
"stars_today": 120
}
],
"period": "week"
}
Built by Vibe Index - The Claude Code Ecosystem Directory
Weekly Installs
112
Repository
First Seen
Feb 6, 2026
Security Audits
Installed on
opencode102
gemini-cli101
github-copilot98
codex98
kimi-cli89
amp88
React 组合模式指南:Vercel 组件架构最佳实践,提升代码可维护性
116,600 周安装