一键导入
pattern-promoter
从 Evidence Graph 中自动识别高频 claim,提升为 Knowledge Graph 节点。实现渐进式 KG 构建,零冷启动。当 evidence_graph.json 中 claims 达到阈值时自动触发,或用户要求构建领域知识图谱时触发。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
从 Evidence Graph 中自动识别高频 claim,提升为 Knowledge Graph 节点。实现渐进式 KG 构建,零冷启动。当 evidence_graph.json 中 claims 达到阈值时自动触发,或用户要求构建领域知识图谱时触发。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
SDP 双模型 6 审稿人 + 交叉审核系统。含拒稿信预演。当用户说"审稿"、"review"、"帮我看看这篇论文写得怎么样"时触发。
Nexus 统一入口。意图识别 + 模式路由 + 首次引导 + Autopilot 模式。当用户提出任何学术研究相关请求时触发(调研、找论文、构思 idea、写论文、审稿、做实验等)。
基于 Evidence Graph + Knowledge Graph 进行学术 idea 构思与评估。双阶段流程:Phase 1 用 ToT 思维树系统性探索,Phase 2 用 SDP 跨模型红队攻击。当用户说"帮我想 idea"、"brainstorm"、"研究方向"、"有什么可以做的"时触发。
Review code changes for correctness, regressions, edge cases, style issues, and unnecessary churn. Use when checking diffs, reviewing pull-request-like changes, or doing independent quality review. Triggers on "review this", "check my changes", "code review", "代码审查".
Perform safe, reviewable refactors. Use when restructuring code, moving responsibilities, renaming across modules, or reducing duplication without intended behavior changes. Triggers on "refactor X", "rename Y across the project", "extract helper", "重构".
typed knowledge-graph 抽象层 (Wave B.3)。把分散在 evidence_graph / corpus_ledger / story_skeleton 的结构升级成 paper / idea / claim / experiment / mechanism / baseline 节点 + supports / contradicts / derives_from / cites / replicates / falsifies 边。通过 4 个 MCP tool 维护 artifacts/research_wiki.json,并用 export_to_evidence_graph 投影回 evidence_graph schema。
| name | pattern-promoter |
| description | 从 Evidence Graph 中自动识别高频 claim,提升为 Knowledge Graph 节点。实现渐进式 KG 构建,零冷启动。当 evidence_graph.json 中 claims 达到阈值时自动触发,或用户要求构建领域知识图谱时触发。 |
扫描 evidence_graph.json,将高频出现的 claim 模式提升为 knowledge_graph.json 中的 Pattern/Method/Idea 节点。
evidence_graph.json 全部 claimstext 语义相似度聚类method claims → KG method 节点result + observation claims → KG finding 节点pattern 节点builds_on 边alternative_to 边improves_upon 边knowledge_graph.json
source_claims 列表便于溯源{
"nodes": [{
"id": "pattern-001",
"type": "method",
"label": "Multi-Head Self-Attention",
"description": "并行多头注意力机制",
"source_claims": ["claim-001", "claim-015", "claim-042"],
"frequency": 12,
"promoted_at": "2026-03-14T19:00:00Z"
}],
"edges": [{
"source": "pattern-001",
"target": "pattern-003",
"relation": "improves_upon"
}]
}
Idea2Paper 需要预构建 KG(ICLR/NeurIPS 数据集),冷启动成本高。 本 Skill 从用户自己的 Evidence Graph 中自然生长 KG,零冷启动、自动覆盖用户研究的领域。
此 skill 在 survey_fetch 阶段末尾自动触发(当 claims 数达到阈值时)。
不独立占用 pipeline stage,不需要调用 complete_stage()。