-
Notifications
You must be signed in to change notification settings - Fork 0
Discovery and Routing
Connor edited this page Jul 3, 2026
·
2 revisions
The curator decides when to use built-in skills, installed skills, fresh GitHub search, curated indexes, or no external skill at all.
| Decision | Use When |
|---|---|
use_builtin_now |
The task is one-off, simple, or already covered by built-in/system capabilities. |
use_installed_skill |
A local specialized skill clearly matches and is not stale, noisy, or unsafe. |
search_before_execution |
The task is repeated, high-value, fidelity-sensitive, or likely to benefit from a better skill. |
ask_user_before_search |
Search might help, but the value is uncertain. |
Run the task radar for important work where missing a specialized skill can hurt quality:
python scripts/task_skill_radar.py "<task description>"Use fresh search when needed:
python scripts/task_skill_radar.py "<task description>" --run-search --force-refreshHigh-value lanes include:
- academic research and research-paper writing;
- literature review, citations, BibTeX, reviewer response, rebuttal;
- LaTeX, formulas, math notes, TikZ, compiled PDFs;
- resume/CV tailoring, ATS, cover letters, job applications;
- graduate applications, SOP/PS, scholarships;
- DOCX, PDF, XLSX, and report workflows.
Use curated indexes to reduce screening cost, not to bypass safety:
python scripts/find_curated_indexes.py "<task description>" --top 8If no strong curated index exists:
python scripts/build_skill_roundup.py "<task description>" --top 12For repeated artifact workflows such as PPTX, DOCX, PDF, and XLSX, use pinned core checks before generic search:
python scripts/ensure_core_skills.py pptxOnly install pinned or strict-tier candidates after review and approval.
Curator 的第一步不是立刻搜索 GitHub,而是判断是否真的需要新 skill。
路由原则:
| 情况 | 处理方式 |
|---|---|
| 内置能力足够 | 不搜索、不安装。 |
| 本地已安装 skill 明确匹配 | 使用本地 skill。 |
| 任务高价值、重复、需要最新工具或存在能力缺口 | 搜索候选 skill。 |
| 候选质量不明 | 只阅读和评分,不直接安装。 |
| 候选高风险 | 拒绝或建议隔离。 |
不要把它写成普通任务 skill。它的核心是 skill discovery、scoring、risk scan 和 install governance。
- Home / 首页
- Installation / 安装
- Platform Install Paths / 安装路径区别
- Cross Platform Usage / 跨平台使用
- Discovery and Routing / 发现与路由
- Scoring and Risk Scan / 评分与风险扫描
- Skill Scoring Rubric / Skill 评分标准
- Prompt Injection Risk Examples / 风险例子
- Install Governance / 安装治理
- Safe Installation Workflow / 安全安装流程
- Skill Lifecycle / 生命周期管理
- Why Not Auto Install High Star Skills / 为什么不自动安装高 star skill
- FAQ / 常见问题