用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vubaolinh123/Oh-My-Link --skill external-context命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | external-context |
| description | Fetch SDK and API documentation via parallel web searches and synthesize into a reusable context file |
| triggers | fetch docs, get docs, fetch documentation, external docs, sdk docs, api docs |
<Use_When>
<Do_Not_Use_When>
.oh-my-link/context/Extract from the user's prompt:
If no library name is identifiable, ask the user to clarify before proceeding.
Generate 2-4 targeted search facets. Each facet is a focused sub-question.
Examples for "fetch docs React hooks":
Limit to 4 facets maximum to avoid redundancy.
Spawn one subagent per facet simultaneously. Each subagent:
pplx-wrapper search --query "{facet}" --recency month --limit 3 to find sourcesSubagents are leaf agents — no further spawning.
Collect all subagent outputs. Deduplicate overlapping content.
Write to .oh-my-link/context/{library-slug}.md:
# {Library Name} — External Context
Fetched: {date}
Facets: {list}
## Overview
{1 paragraph summary of the library's purpose and key concepts}
## Key APIs
{Most important API signatures and their parameters}
## Code Examples
{1-3 representative examples from the fetched docs}
## Gotchas and Constraints
{Known pitfalls, version differences, breaking changes}
## Sources
{URLs fetched}
Output:
<Tool_Usage>
pplx-wrapper search for each facet.oh-my-link/context/