Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计提醒

context7-auto-researchcontext7 汽车研究

Agent Skill

context7-auto-research 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,568

周安装

411

GitHub Stars

16

下载量

3,354
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:context7-auto-research(context7 汽车研究)
来源仓库:https://github.com/benedictking/context7-auto-research
仓库路径:skills/context7-auto-research
安装命令:
npx skills add https://github.com/benedictking/context7-auto-research --skill context7-auto-research
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/benedictking/context7-auto-research --skill context7-auto-research

简介

当用户询问库、框架或代码示例时,自动从 Context7 获取当前文档。

  • 主动触发实施查询、配置请求、文档查找、库提及和中英文代码生成提示
  • 从用户查询中提取库名称和版本,搜索 Context7 API,并按名称、信任评分和版本特异性选择最佳匹配
  • 获取相关文档片段并将其集成到具有实际代码示例和版本上下文的响应中
  • 使用具有独立 API 调用子技能的两阶段架构,减少令牌消耗并支持跨多个库的并行请求

SKILL.md

Context7 Auto Research Skill

This skill automatically fetches current documentation from Context7 API when detecting library/framework-related queries, ensuring responses use up-to-date information instead of potentially outdated training data.

Automatic Activation Triggers

This skill should activate proactively when the user's message contains:

Implementation Queries (实现相关)

  • "如何实现" / "怎么写" / "怎么做"
  • "How do I..." / "How to..." / "How can I..."
  • "Show me how to..." / "Write code for..."

Configuration & Setup (配置相关)

  • "配置" / "设置" / "安装"
  • "configure" / "setup" / "install"
  • "初始化" / "initialize"

Documentation Requests (文档相关)

  • "文档" / "参考" / "API"
  • "documentation" / "docs" / "reference"
  • "查看" / "look up"

Library/Framework Mentions (库/框架提及)

  • React, Vue, Angular, Svelte, Solid
  • Next.js, Nuxt, Remix, Astro
  • Express, Fastify, Koa, Hono
  • Prisma, Drizzle, TypeORM
  • Supabase, Firebase, Clerk
  • Tailwind, shadcn/ui, Radix
  • Any npm package or GitHub repository

Code Generation Requests (代码生成)

  • "生成代码" / "写一个" / "创建"
  • "generate" / "create" / "build"
  • "implement" / "add feature"

Research Process

When triggered, follow this workflow:

Step 1: Extract Library Information

Identify the library/framework from the user's query:

  • Library name (e.g., "react", "next.js", "prisma")
  • Version if specified (e.g., "React 19", "Next.js 15")
  • Specific feature/API mentioned (e.g., "useEffect", "middleware", "relations")

Step 2: Search for Library

Use Task tool to call context7-fetcher sub-skill:

Task parameters:
- subagent_type: Bash
- description: "Search Context7 for library"
- prompt: node .claude/skills/context7-auto-research/context7-api.cjs search "<library-name>" "<user-query>"

Example:

Task: Search for Next.js
Prompt: node .claude/skills/context7-auto-research/context7-api.cjs search "next.js" "How to configure middleware in Next.js 15"

Response format:

{
  "libraries": [
    {
      "id": "/vercel/next.js",
      "name": "Next.js",
      "description": "The React Framework",
      "trustScore": 95,
      "versions": ["v15.1.8", "v14.2.0", "v13.5.0"]
    }
  ]
}

Why use Task tool?

  • Uses context: fork from context7-fetcher sub-skill
  • Avoids carrying conversation history to API calls
  • Reduces Token consumption

Step 3: Select Best Match

From search results, choose the library based on:

  1. Exact name match to user's query
  2. Highest trust score (indicates quality/popularity)
  3. Version match if user specified (e.g., "Next.js 15" → prefer v15.x)
  4. Official packages over community forks

Step 4: Fetch Documentation

Use Task tool to call context7-fetcher sub-skill:

Task parameters:
- subagent_type: Bash
- description: "Fetch documentation from Context7"
- prompt: node .claude/skills/context7-auto-research/context7-api.cjs context "<library-id>" "<specific-query>"

Example:

Task: Fetch Next.js middleware docs
Prompt: node .claude/skills/context7-auto-research/context7-api.cjs context "/vercel/next.js" "middleware configuration"

Response format:

{
  "results": [
    {
      "title": "Middleware",
      "content": "Middleware allows you to run code before a request is completed...",
      "source": "docs/app/building-your-application/routing/middleware.md",
      "relevance": 0.95
    }
  ]
}

Why use Task tool?

  • Independent context for API calls
  • No conversation history overhead
  • Faster execution

Step 5: Integrate into Response

Use the fetched documentation to:

  1. Answer accurately with current information
  2. Include code examples from the docs
  3. Cite version when relevant
  4. Provide context about the feature/API

Helper Script Usage

The context7-api.cjs script provides two commands:

Search Library

node context7-api.cjs search <libraryName> <query>
  • Returns matching libraries with metadata
  • Use for initial library resolution

Get Context

node context7-api.cjs context <libraryId> <query>
  • Returns relevant documentation snippets
  • Use after selecting a library

Environment Setup

The script supports two ways to configure the API key:

Option 1:.env File (Recommended)

Create a .env file in the skill directory:

# In .claude/skills/context7-auto-research/.env
CONTEXT7_API_KEY=your_api_key_here

You can copy from the example:

cp .env.example .env
# Then edit .env with your actual API key

Option 2: Environment Variable

export CONTEXT7_API_KEY="your-api-key"

Priority: Environment variable >.env file

Get API Key: Visit context7.com/dashboard to register and obtain your API key.

If not set, the API will use public rate limits (lower quota).

Best Practices

Query Specificity

  • Pass the full user question as the query parameter for better relevance
  • Include specific feature names (e.g., "useEffect cleanup" vs just "useEffect")

Version Awareness

  • When users mention versions, use version-specific library IDs
  • Example: /vercel/next.js/v15.1.8 instead of /vercel/next.js

Error Handling

  • If library search returns no results, inform user and suggest alternatives
  • If API fails, fall back to training data but mention it may be outdated
  • Handle rate limits gracefully (429 errors)

Response Quality

  • Don't dump entire documentation - extract relevant parts
  • Combine multiple doc snippets if needed for complete answer
  • Always include practical code examples

Example Workflows

Example 1: React Hook Question

User: "How do I use useEffect to fetch data in React 19?"

Skill Actions:

  1. Detect trigger: "How do I use" + "useEffect" + "React 19"
  2. Search: node context7-api.cjs search "react" "useEffect fetch data"
  3. Select: /facebook/react/v19.0.0 (version match)
  4. Fetch: node context7-api.cjs context "/facebook/react/v19.0.0" "useEffect data fetching"
  5. Respond with current React 19 patterns (e.g., using use() hook if applicable)

Example 2: Next.js Configuration

User: "配置 Next.js 15 的中间件"

Skill Actions:

  1. Detect trigger: "配置" + "Next.js 15" + "中间件"
  2. Search: node context7-api.cjs search "next.js" "middleware configuration"
  3. Select: /vercel/next.js/v15.1.8
  4. Fetch: node context7-api.cjs context "/vercel/next.js/v15.1.8" "middleware"
  5. Respond with Next.js 15 middleware setup

Example 3: Prisma Relations

User: "Show me how to define one-to-many relations in Prisma"

Skill Actions:

  1. Detect trigger: "Show me how" + "Prisma"
  2. Search: node context7-api.cjs search "prisma" "one-to-many relations"
  3. Select: /prisma/prisma (highest trust score)
  4. Fetch: node context7-api.cjs context "/prisma/prisma" "one-to-many relations"
  5. Respond with Prisma schema examples

Architecture: Context Separation

Why Split into Two Skills?

This skill adopts a two-phase architecture:

  1. Main Skill (context7-auto-research) - Needs conversation context:

- Detect trigger keywords in user message - Extract user query intent - Select best matching library (version, name, trust score) - Integrate documentation into response

  1. Sub-Skill (context7-fetcher) - Independent context (context: fork):

- Execute API calls to Context7 - Pure HTTP requests, no conversation history needed - Reduce Token consumption

Benefits

AspectMain SkillSub-Skill
ContextFull conversationFork (independent)
PurposeIntent analysisAPI execution
Token usageHigherLower
ExecutionSequentialCan be parallel

Call Flow

User Query → Main Skill (detect + analyze)
                ↓
           Task Tool → Sub-Skill (API search)
                ↓
           Main Skill (select best match)
                ↓
           Task Tool → Sub-Skill (API fetch docs)
                ↓
           Main Skill (integrate + respond)

Integration with Existing Skills

This skill complements the existing documentation-lookup skill:

  • auto-research: Proactive, automatic activation
  • documentation-lookup: Manual, user-invoked via /context7:docs

Both can coexist - use auto-research for seamless UX, documentation-lookup for explicit queries.

Performance Considerations

  • Cache responses: Documentation changes infrequently
  • Parallel requests: If user asks about multiple libraries, fetch in parallel using multiple Task calls
  • Timeout handling: Set reasonable timeouts (5-10s) for API calls
  • Fallback strategy: If API unavailable, use training data with disclaimer
  • Context efficiency: Sub-skill uses fork context to minimize Token consumption

Limitations

  • Requires internet connection for API access
  • Subject to Context7 API rate limits
  • May not have documentation for very new or obscure libraries
  • Documentation quality depends on source repository structure

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

27.26%
按下载量换算914

OpenCode

23.83%
按下载量换算799

Gemini CLI

18.79%
按下载量换算630

Codex

12.85%
按下载量换算431

Antigravity

7.14%
按下载量换算239

Cursor

3.93%
按下载量换算132

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills