Loading...
Loading...
Configurable pipeline orchestrator for sequencing stages
npx skill4agent add yeachan-heo/oh-my-codex pipeline$pipelinePipelineStageRALPLAN (consensus planning) -> team-exec (Codex CLI workers) -> ralph-verify (architect verification)| Parameter | Default | Description |
|---|---|---|
| 10 | Ralph verification iteration ceiling |
| 2 | Number of Codex CLI team workers |
| | Agent type for team workers |
PipelineStageinterface PipelineStage {
readonly name: string;
run(ctx: StageContext): Promise<StageResult>;
canSkip?(ctx: StageContext): boolean;
}StageContextStageResultprd-*.mdtest-spec-*.mddeep-interview-*.md.omx/state/pipeline-state.jsonstate_write({mode: "pipeline", active: true, current_phase: "stage:ralplan"})state_write({mode: "pipeline", current_phase: "stage:<name>"})state_write({mode: "pipeline", active: false, current_phase: "complete"})import {
runPipeline,
createAutopilotPipelineConfig,
createRalplanStage,
createTeamExecStage,
createRalphVerifyStage,
} from './pipeline/index.js';
const config = createAutopilotPipelineConfig('build feature X', {
stages: [
createRalplanStage(),
createTeamExecStage({ workerCount: 3, agentType: 'executor' }),
createRalphVerifyStage({ maxIterations: 15 }),
],
});
const result = await runPipeline(config);