wiki-research-loop
仓库创建 2026年2月2日最近提交 6 天前SkillHot 收录 20 天前
▸ 精选理由
自动化扩展知识库,支持多源抓取与去重
▸ 风险提示
会从外部网站/代码仓库抓取数据,需注意版权与网络安全
这个 Skill 做什么
基于可插拔抓取器自动扩展 wiki,迭代生成或更新页面。
把研究任务变成自动扩展的 wiki:用广度优先循环抓取 web、arXiv、GitHub 等来源,抽取主张、去重比对并生成或更新页面,同时把后续种子入队。适合想让知识库在夜间自动成长、做大规模背景研究或构建自驱动知识库时使用。循环在预算上限、深度限制或收敛时停掉,避免重复写作并保留可审计来源。
▸ 展开 SKILL.md 英文原文
Auto-grow a pro-workflow wiki by running a budget-capped BFS research loop over pluggable source fetchers (web, arXiv, GitHub). Each iteration pops a seed from the queue, fetches sources, drafts a wiki page, dedupes claims against existing pages, enqueues follow-up seeds. Halts on budget cap, depth cap, or convergence. Use when the user says "research <topic>", "grow the <slug> wiki", "auto-research", or wants a knowledge base that builds itself overnight.
2.7k
Stars
257
Forks
40
仓库内 Skill
+55
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/rohitg00/pro-workflow/main/skills/wiki-research-loop/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/rohitg00/pro-workflow/main/skills/wiki-research-loop/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Wiki Research Loop Driver that turns a wiki into an auto-grown knowledge base. Layers on top of `wiki-builder` and `wiki-query`. ## Loop semantics ``` seed-queue (pending) → next-seed → fetch sources via plugins (web | arxiv | github) → extract claims → dedupe vs index (FTS5; later vector via 3.3.2) → compile new page or amend existing → upsert page (auto-FTS-index) → enqueue follow-up seeds (max-depth gate) → mark seed done → if budget OR convergence OR kill-switch → halt ``` ## Halt conditions (any one trips) - `budget_usd` exceeded (loop tracks per-fetcher cost estimate) - `max_pages_per_run` written - `max_depth` reached on every active branch - 3 consecutive pages
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有