skills/727474430/techdoc-search-and-orchestrate/SKILL.md
【强制】所有技术文档查询必须使用本技能,禁止在主对话中直接使用 mcp__context7-mcp 工具。触发关键词:查询/学习/了解某个库或框架的文档、API用法、配置参数、错误解释、版本差异、代码示例、最佳实践。本技能通过 context7-researcher agent 执行查询,避免大量文档内容污染主对话上下文,保持 token 效率。
npx skillsauth add aiskillstore/marketplace techdoc-search-and-orchestrateInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
本技能负责将技术文档查询任务委派给专业的 context7-researcher agent 执行,通过 agent 隔离来保持主对话上下文的清晰,避免 token 消耗污染。
识别需要技术文档查询的场景,并将任务委派给 context7-researcher agent,该 agent 专门使用 Context7 MCP 工具检索最新的技术文档。
当需要查询技术文档时,本技能负责将任务委派给 context7-researcher agent 执行,避免技术文档检索过程污染主对话上下文。
使用 Task tool 调用 context7-researcher agent:
Task tool 参数:
- subagent_type: "context7-researcher"
- description: 简短描述任务(3-5个字)
- prompt: 详细的查询需求
当有多个技术文档查询需求时,可以选择以下两种方式:
方式一:顺序执行(单 Agent 多任务)
context7-researcher agent方式二:并行执行(多 Agent 并行)
context7-researcher agents选择建议:
示例对比:
用户问:"帮我查询 Supabase 的 realtime 如何对接和 Supabase 的 JS SDK 如何使用"
顺序执行方式:
调用 1 个 agent:
- subagent_type: "context7-researcher"
- description: "查询 Supabase 文档"
- prompt: "请完成以下查询:
1. 查询 Supabase realtime 的对接方法和示例
2. 查询 Supabase JS SDK 的使用方法和示例"
并行执行方式(推荐):
同时调用 2 个 agents:
Agent 1:
- subagent_type: "context7-researcher"
- description: "查询 Supabase realtime"
- prompt: "查询 Supabase realtime 的对接方法和示例"
Agent 2:
- subagent_type: "context7-researcher"
- description: "查询 Supabase SDK"
- prompt: "查询 Supabase JS SDK 的使用方法和示例"
这两个查询虽然都关于 Supabase,但是独立的主题(一个是 realtime 功能,一个是 SDK 使用),没有强依赖关系,应该优先选择并行执行以提高效率。
用户需求: "Supabase 怎么实现用户注册?"
执行方式:
调用 Task tool:
- subagent_type: "context7-researcher"
- description: "查询 Supabase 用户注册"
- prompt: "查询 Supabase 的用户注册 API 用法,包括代码示例"
用户需求: "Next.js 的 App Router 怎么配置和 Server Actions 如何使用?"
执行方式:
并行调用 2 个 agents(推荐):
Agent 1:
- subagent_type: "context7-researcher"
- description: "查询 App Router 配置"
- prompt: "查询 Next.js App Router 的配置方法和示例"
Agent 2:
- subagent_type: "context7-researcher"
- description: "查询 Server Actions"
- prompt: "查询 Next.js Server Actions 的使用方法和示例"
说明: 虽然都是 Next.js 的功能,但 App Router 配置和 Server Actions 是两个独立主题,没有强依赖,应优先并行查询。
用户需求: "我的 Next.js 项目报错 'Error: ENOENT: no such file or directory',这是什么原因?怎么解决?"
执行方式:
调用 1 个 agent 顺序执行:
- subagent_type: "context7-researcher"
- description: "排查 Next.js 错误"
- prompt: "请按顺序完成:
1. 先查询 Next.js 中 'ENOENT: no such file or directory' 错误的常见原因
2. 根据查到的原因,再查询对应的解决方案和最佳实践"
说明: 这是典型的强依赖场景,必须先了解错误原因,才能针对性地查询解决方案,因此使用顺序执行。
用户需求: "Next.js 13 和 14 的路由有什么区别?"
执行方式:
调用 Task tool:
- subagent_type: "context7-researcher"
- description: "对比 Next.js 路由差异"
- prompt: "对比 Next.js 13 和 14 版本的路由系统差异,说明主要变更"
说明: 这是单一查询任务,无需拆分,直接委派给一个 agent 执行。
通过本技能,主 agent 可以高效地将技术文档查询委派给专业 agent,保持对话流程清晰,优化 token 使用。
development
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.