Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计通过

pipeline-router管道路由器

Agent Skill

pipeline-router 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

881

周安装

36

GitHub Stars

422

下载量

285
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:pipeline-router(管道路由器)
来源仓库:https://github.com/willoscar/research-units-pipeline-skills
仓库路径:skills/pipeline-router
安装命令:
npx skills add https://github.com/willoscar/research-units-pipeline-skills --skill pipeline-router
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/willoscar/research-units-pipeline-skills --skill pipeline-router

简介

pipeline-router 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于关键词搜索、任务场景匹配或来源线索梳理等研究检索场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态,注意是否涉及联网、命令执行或文件读写操作。
  • 建议结合原始 README 和仓库内容进一步核验具体功能和使用边界。

SKILL.md

Pipeline Router

“Routing” usually means two different things:

  • Pipeline selection + lock: choose a single pipeline and write PIPELINE.lock.md.
  • Checkpoint routing: keep the run auditable by drafting/updating checkpoint blocks in DECISIONS.md (and, for C0, seeding queries.md from GOAL.md).

This skill supports both, but keeps the semantic choice LLM-first and the repetitive checkpoint scaffolding scriptable.

Inputs

Workspace context (when available):

  • GOAL.md
  • STATUS.md
  • DECISIONS.md
  • PIPELINE.lock.md

Optional template:

  • assets/pipeline-selection-form.md

Outputs

  • PIPELINE.lock.md (Mode A; selection + lock)
  • Updates to DECISIONS.md (all modes; checkpoint blocks + approvals checklist)
  • queries.md (best-effort for C0; seeded from GOAL.md)
  • Optional: updates to STATUS.md

Decision tree (selection)

User goal → choose:

  • “survey / 综述 / 调研” → pipelines/arxiv-survey.pipeline.md
  • “survey + PDF / LaTeX / 可编译” → pipelines/arxiv-survey-latex.pipeline.md
  • “research brief / briefing / rapid review / 速览” → pipelines/research-brief.pipeline.md
  • “paper review / critique / referee / 审稿” → pipelines/paper-review.pipeline.md
  • “evidence review / systematic review / PRISMA / 系统综述” → pipelines/evidence-review.pipeline.md
  • “tutorial / 教程 / source-tutorial” → pipelines/source-tutorial.pipeline.md
  • “idea / ideation / brainstorm / 找 idea / 选题 / 点子” → pipelines/idea-brainstorm.pipeline.md

Workflow

Mode A — selection + lock (LLM-first)

  1. Read the goal from GOAL.md (or the user message).
  2. If key details are missing, use assets/pipeline-selection-form.md to draft a concise question list into DECISIONS.md and stop.
  3. Select exactly one pipeline under pipelines/*.pipeline.md.
  4. Write PIPELINE.lock.md with:

- pipeline: <path> - units_template: <path from pipeline front matter> - locked_at: <YYYY-MM-DD>

  1. Update STATUS.md (“Current pipeline” + checkpoint).

Mode B — checkpoint blocks (script helper)

Use the helper to keep DECISIONS.md in sync with checkpoints:

  • Kickoff questions + seed queries (C0):

- python.codex/skills/pipeline-router/scripts/run.py --workspace <ws> --checkpoint C0

  • Scope/outline approval summary (C2):

- python.codex/skills/pipeline-router/scripts/run.py --workspace <ws> --checkpoint C2

  • Other checkpoints:

- python.codex/skills/pipeline-router/scripts/run.py --workspace <ws> --checkpoint C1

Quality checklist

  • DECISIONS.md has a checkpoint block for the active C*.
  • Approvals checklist exists and includes Approve C* checkboxes.
  • If selection was needed, PIPELINE.lock.md points to exactly one pipeline file.
  • If the run is retrieval-based, queries.md is non-empty after C0 seeding.

Side effects

  • Allowed: create/update PIPELINE.lock.md; edit STATUS.md; append/update DECISIONS.md; seed queries.md.
  • Not allowed: modify files under .codex/skills/ assets/templates.

Script

Quick Start

  • python.codex/skills/pipeline-router/scripts/run.py --help
  • python.codex/skills/pipeline-router/scripts/run.py --workspace <workspace_dir> --checkpoint C0

All Options

  • --checkpoint <C0|C1|C2|...>: which checkpoint block to draft/update (unknown checkpoints get a generic template)

Examples

  • Kickoff questions + seed queries:

- python.codex/skills/pipeline-router/scripts/run.py --workspace <ws> --checkpoint C0

  • Generic protocol approval block (systematic review C1):

- python.codex/skills/pipeline-router/scripts/run.py --workspace <ws> --checkpoint C1

  • Scope/outline approval summary:

- python.codex/skills/pipeline-router/scripts/run.py --workspace <ws> --checkpoint C2

Notes

  • python scripts/pipeline.py kickoff|init writes PIPELINE.lock.md and then (best-effort) runs this script for C0.
  • The script reads PIPELINE.lock.md (if present) to display the pipeline in the kickoff block; it does not choose the pipeline.

Troubleshooting

Issue: PIPELINE.lock.md points to one pipeline but UNITS.csv looks like another

Cause:

  • Workspace was initialized from one pipeline and later re-pointed without updating UNITS.csv.

Fix:

  • Re-run python scripts/pipeline.py init --workspace <ws> --pipeline <name> --overwrite-units, or copy the correct templates/UNITS.*.csv into UNITS.csv.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

26.52%
按下载量换算76

Gemini CLI

22.94%
按下载量换算65

Cursor

18.21%
按下载量换算52

Codex

10.55%
按下载量换算30

OpenCode

7.16%
按下载量换算20

Antigravity

3.16%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills