stage-scheduler

Optimizes sub-agent dispatch performance by tuning lane concurrency and fan-out parameters.

Updated May 11, 2026
One-click install
npx skills add https://github.com/AesopScott/mojo --skill stage-scheduler
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: stage-scheduler
Source: https://github.com/AesopScott/mojo/tree/main/harnesses/skills/stage-scheduler
Command: npx skills add https://github.com/AesopScott/mojo --skill stage-scheduler

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill addresses performance bottlenecks in sub-agent dispatch systems by tuning concurrency and execution flow to prevent over-synchronization and latency.

Core Features & Use Cases

  • Concurrency Tuning: Adjusts lane concurrency and fan-out width to maximize throughput.
  • Pipeline Optimization: Shifts execution from barrier-based stages to pipeline stages to enable overlapping work.
  • Use Case: When a sub-agent workflow is stalling due to sequential processing, use this skill to reconfigure the dispatch harness for parallel execution.

Quick Start

Use the stage-scheduler skill to analyze the current Sub-agent Dispatch harness and propose a configuration change to reduce lane latency.

Frequently Asked Questions about stage-scheduler

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I reduce latency in sub-agent dispatch workflows?

To reduce sub-agent dispatch latency, tune lane concurrency and fan-out parameters to maximize throughput. Shifting execution from barrier-based stages to pipeline stages enables overlapping work, preventing sequential processing stalls.

What causes sub-agent workflows to stall during sequential processing?

Sub-agent workflows stall during sequential processing due to barrier-based stages causing over-synchronization. Reconfiguring the harness to use pipeline-based execution allows concurrent lanes to overlap, eliminating these bottlenecks.

How do I tune sub-agent concurrency for complex agentic workflows?

Tune sub-agent concurrency for complex agentic workflows by analyzing the dispatch harness and adjusting lane concurrency and fan-out width. This maximizes parallel execution throughput while adhering to safety and verification protocols.

When should I shift from barrier-based stages to pipeline stages?

Shift from barrier-based stages to pipeline stages when a sub-agent workflow is stalling due to sequential processing. Pipeline stages enable overlapping work, reducing lane latency and improving dispatch performance.

Does sub-agent dispatch optimization require specific harness configurations?

Sub-agent dispatch optimization requires precise control over harness configurations to adjust lane concurrency and fan-out width. Adherence to defined safety and verification protocols is also required to ensure secure execution.