Token导航 LogoToken导航TokenDH.com
开发执行命令github未标认证来源可访问许可证需确认审计通过

speculative-pipeline投机管道

Agent Skill

speculative-pipeline 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

326

周安装

14

GitHub Stars

798

下载量

114
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/juliusbrussee/cavekit --skill speculative-pipeline

简介

speculative-pipeline 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中整理项目状态。

  • 适用于围绕仓库变更、协作事项或代码状态进行信息梳理的场景。
  • 可通过安装命令或访问原始仓库获取具体功能说明。
  • 使用前需确认权限范围、维护状态及是否涉及敏感数据访问。
  • 建议结合真实环境测试其准确性和稳定性。

SKILL.md

Speculative-pipeline Strategy

Run pipeline stages with staggered timing instead of sequentially. The leader starts first; followers start after a configurable delay and build from whatever upstream output exists at that point. Combined with convergence loops, followers self-correct as upstream artifacts arrive and stabilize.

Core Principle

Start downstream work early with partial upstream output. Convergence loops correct the errors introduced by working from incomplete input.

The insight is that waiting for perfect upstream output is wasteful. A follower working from 80% of the upstream artifacts will produce output that is ~60-70% correct on the first pass. But with convergence loops running, the follower re-reads the upstream artifacts on each iteration and corrects course. By the time the leader finishes, the follower is already most of the way done.


The Pattern

Sequential (Traditional)

Stage 1: Specs     ████████████████████                          (5 hours)
Stage 2: Plans                         ████████████████          (4 hours)
Stage 3: Implement                                     ████████  (3 hours)
                   ─────────────────────────────────────────────
                   Total: 12 hours

Speculative-pipeline (Staggered)

Stage 1: Specs     ████████████████████                          (5 hours)
Stage 2: Plans            ████████████████                       (4 hours, started 1.5h after Stage 1)
Stage 3: Implement              ████████████                     (3 hours, started 3h after Stage 1)
                   ─────────────────────────────────────────────
                   Total: ~7 hours

Why It Works

  1. Stage 2 starts after a 1.5-hour offset. By then, Stage 1 has produced a meaningful set of partial specs.
  2. Stage 2 generates plans from whatever specs are available. Some plans will be built on incomplete information.
  3. Stage 1 keeps refining specs. When Stage 2 loops back for its next pass, it picks up the newly completed specs and adjusts its plans accordingly.
  4. Stage 3 starts after a 3-hour offset. By then, both specs and plans exist in draft form.
  5. All stages self-correct through iteration. Each pass re-reads the latest upstream artifacts. Mistakes caused by working from partial input are washed out on subsequent passes.

The key mechanism is convergence -- the iterative loop that re-reads inputs each pass. Without convergence loops, speculative-pipeline would produce garbage. With them, early errors wash out over iterations.


Example: 3-Stage Pipeline

Directory Structure

context/
├── specs/              # Stage 1 output: implementation-agnostic specs
├── plans/              # Stage 2 output: framework-specific plans
├── impl/               # Stage 3 output: implementation tracking
└── prompts/
    ├── 001-generate-specs.md       # Stage 1 prompt
    ├── 002-generate-plans.md       # Stage 2 prompt
    └── 003-implement.md            # Stage 3 prompt

Terminal Commands

Open three terminal windows (or use tmux panes):

# Terminal 1: Specs from reference materials (leader -- starts immediately)
{LOOP_TOOL} context/prompts/001-generate-specs.md -n 5 -t 2h

# Terminal 2: Plans from specs (follower -- starts after 1-hour delay)
{LOOP_TOOL} context/prompts/002-generate-plans.md -n 5 -t 2h -d 1h

# Terminal 3: Implementation from plans (follower -- starts after 2-hour delay)
{LOOP_TOOL} context/prompts/003-implement.md -n 10 -t 1h -d 2h

Parameter reference:

  • -n 5 -- Run up to 5 convergence iterations
  • -t 2h -- Time budget per iteration (max total time = iterations x budget)
  • -d 1h -- Delay before starting (speculative-pipeline offset)

Replace {LOOP_TOOL} with your convergence loop runner (any script or tool that repeatedly executes a prompt against the codebase, committing between iterations).

What Happens Chronologically

TimeStage 1 (Specs)Stage 2 (Plans)Stage 3 (Implement)
0:00Starts. Reads refs, begins generating specs.Waiting (1.5h delay).Waiting (3h delay).
1:30Iteration 1 complete. ~50% of specs written. Committed.Starts. Reads partial specs, begins generating plans.Waiting.
3:00Iteration 2. Specs ~80% complete.Iteration 1 complete. Plans based on partial specs. Some plans will need correction.Starts. Reads partial specs + plans, begins implementing.
4:00Iteration 3. Specs ~92% complete, converging.Iteration 2. Re-reads updated specs. Corrects plans. Plans ~65% correct.Iteration 1 complete. Some implementation based on incomplete plans.
5:00Converged. Specs complete. Done.Iteration 3. Re-reads final specs. Plans ~88% correct.Iteration 2. Re-reads corrected plans. Fixes implementation.
5:30--Iteration 4. Plans converged. Done.Iteration 3. Implementation ~75% correct.
7:00----Iteration 4-5. Implementation converges. Done.

Result: ~7 hours total versus ~12 hours sequential.


Choosing Delay Values

The delay determines how much upstream work exists when the follower starts. Too short and the follower wastes iterations on garbage input. Too long and you lose the time savings.

Guidelines

Upstream Stage DurationRecommended DelayRationale
1-2 hours15-30 minutesShort stages produce useful partial output quickly
2-4 hours1 hourEnough time for the first iteration to complete and commit
4+ hours1-2 hoursFirst iteration should have substantial output

Rules of Thumb

  1. Delay >= 1 upstream iteration. The follower should not start until the leader has completed at least one full iteration and committed results.
  2. Delay < 50% of upstream duration. If the delay is longer than half the upstream time, the time savings are marginal.
  3. More follower iterations compensate for shorter delays. If you start the follower early (aggressive delay), give it more iterations to converge.

Multi-Stage Pipelines (4+ Stages)

For pipelines with more than 3 stages, stagger each stage relative to Stage 1:

# 5-stage pipeline example
{LOOP_TOOL} {PROMPT_001} -n 5 -t 2h           # Stage 1: starts immediately
{LOOP_TOOL} {PROMPT_002} -n 5 -t 2h -d 1h     # Stage 2: 1h delay
{LOOP_TOOL} {PROMPT_003} -n 8 -t 1h -d 2h     # Stage 3: 2h delay
{LOOP_TOOL} {PROMPT_004} -n 8 -t 1h -d 3h     # Stage 4: 3h delay
{LOOP_TOOL} {PROMPT_005} -n 10 -t 45m -d 4h   # Stage 5: 4h delay

Notice the pattern:

  • Later stages get more iterations (they need more correction cycles)
  • Later stages get shorter time budgets per iteration (less work per stage)
  • Delays increase linearly (each stage offset by roughly 1 hour)

When Speculative-pipeline Works Best

Good Fit

  • Long pipelines (3+ stages): The time savings scale with pipeline depth
  • Stages that share a git repo: Followers read upstream commits automatically
  • Stages with convergence loops: The self-correction mechanism is essential
  • Specs that are mostly stable after 1-2 iterations: Partial specs are useful early

Poor Fit

  • Stages with hard dependencies: If Stage 2 literally cannot start without Stage 1's complete output (e.g., code generation that requires a fully resolved type system), the follower will produce only errors
  • Single-iteration stages: Without convergence loops, there is no self-correction
  • Very short pipelines (2 stages, <1 hour each): The overhead of staggering is not worth the small time savings

Monitoring Speculative-pipeline Execution

What to Watch

  1. Follower diff sizes per iteration. If the follower's diffs are large on every iteration (not decreasing), it is thrashing -- the delay was too short or the upstream output is too unstable.
  2. Follower convergence rate. The follower should converge within 1-2 iterations of the leader finishing. If it takes many more, the stages may have a hard dependency.
  3. Git commit frequency. Both leader and follower should be committing regularly. If commits stall, the agent may be stuck.

Convergence Signals

A speculative-pipeline pipeline has converged when:

  • All stages have completed their iteration loops
  • The final iteration of each stage produces minimal diffs
  • Build and test gates pass on the merged output

Thrashing Detection

Thrashing = the follower keeps making large changes because upstream output keeps changing.

Signs of thrashing:

  • Follower diff sizes do not decrease across iterations
  • Follower reverts changes it made in previous iterations
  • Build failures increase instead of decreasing

Fix thrashing by:

  1. Increasing the delay (give the leader more time to stabilize)
  2. Reducing follower iterations (let upstream settle first)
  3. Adding a "wait for upstream convergence" gate between stages

Combining with Agent Teams

In multi-agent setups, speculative-pipeline applies at the pipeline level, not the agent team level:

Pipeline Level (speculative-pipeline timing):
  Stage 1 (Specs)     → Single agent or agent team
  Stage 2 (Plans)     → Single agent or agent team (starts after delay)
  Stage 3 (Implement) → Agent team dispatched via Agent tool (starts after delay)

Each stage can internally use agent teams (multiple teammates working in parallel on different domains), but the *stages themselves* are staggered using speculative-pipeline timing.

Do not confuse:

  • Leader-follower: Pipeline stages overlapping in time
  • Agent teams: Multiple agents working in parallel within a single stage

They are orthogonal and composable.


Implementation Checklist

When setting up a speculative-pipeline pipeline:

  • Define the pipeline stages (typically: specs, plans, implement)
  • Create a prompt file for each stage with explicit input/output directories
  • Ensure each stage reads from upstream directories and writes to its own directory
  • Configure convergence loop for each stage with appropriate iteration counts
  • Choose delays: first follower at ~1 upstream iteration, subsequent at ~1h increments
  • Set up terminal sessions (one per stage) or use tmux
  • Monitor: watch for convergence (decreasing diffs) vs thrashing (constant large diffs)
  • After all stages complete, run full build + test validation on the merged output

Cross-References

  • prompt-pipeline -- How to design the prompt files that each stage executes
  • convergence-monitoring -- How to detect convergence vs ceiling in each stage
  • methodology -- Where speculative-pipeline fits in the Hunt lifecycle
  • validation-first -- Validation gates that run after each stage completes
  • context-architecture -- Directory structure that stages read from and write to

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.43%
按下载量换算40

Claude

30.22%
按下载量换算34

Cursor

16.26%
按下载量换算19

Gemini CLI

8.31%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/juliusbrussee/cavekit --skill speculative-pipeline 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills