4a58aa1657
- Type renames: CIConfig → CIAgentConfig, DEFAULT_CI_CONFIG → DEFAULT_CIAGENT_CONFIG - Type renames: CiMetadata → CIAgentMetadata, ParsedCiCommit → ParsedCIAgentCommit - Function renames: initCI → initCIAgent, isCIInitialized → isCIAgentInitialized - Function renames: extractCiBlock → extractCIAgentBlock, parseCiBlock → parseCIAgentBlock - Class renames: CiFiles → CIAgentFiles - Import paths: ci-files.js → ciagent-files.js - Directory paths: .ci/ → .ciagent/ across all source and test files - Check names: ".ci directory exists" → ".ciagent directory exists" - Check names: "CI config valid" → "CIAgent config valid" - Temp dir names: ci-*-test- → ciagent-*-test- - CLI examples: "ci init" → "ciagent init" - Fix deepMerge infinite recursion bug in config.ts - ---ci---/---/ci--- block markers preserved unchanged - All 31 test suites, 370 tests passing ---ci--- phase: 1 milestone: v0.5 plan: 07 task: 07-01-01 status: execute ---/ci---
96 lines
2.1 KiB
TypeScript
96 lines
2.1 KiB
TypeScript
import { AgentName, PhaseName } from "./config.js";
|
|
|
|
export type PipelineStage =
|
|
| "specify"
|
|
| "clarify"
|
|
| "research"
|
|
| "plan"
|
|
| "execute"
|
|
| "test"
|
|
| "verify"
|
|
| "complete";
|
|
|
|
export interface PipelineState {
|
|
project_path: string;
|
|
current_stage: PipelineStage;
|
|
current_phase: number;
|
|
phases_completed: number[];
|
|
specification_loaded: boolean;
|
|
clarify_completed: boolean;
|
|
research_completed: boolean;
|
|
plan_completed: boolean;
|
|
execute_completed: boolean;
|
|
test_completed: boolean;
|
|
verify_completed: boolean;
|
|
errors: PipelineError[];
|
|
started_at: string;
|
|
last_updated: string;
|
|
}
|
|
|
|
export interface PipelineError {
|
|
stage: PipelineStage;
|
|
phase: number;
|
|
message: string;
|
|
timestamp: string;
|
|
retry_count: number;
|
|
resolved: boolean;
|
|
}
|
|
|
|
export interface PhaseResult {
|
|
phase: number;
|
|
stage: PipelineStage;
|
|
success: boolean;
|
|
artifacts_created: string[];
|
|
decisions_made: number;
|
|
escalations_raised: number;
|
|
duration_ms: number;
|
|
error?: string;
|
|
}
|
|
|
|
export interface OrchestratorResult {
|
|
success: boolean;
|
|
pipeline_state: PipelineState;
|
|
phase_results: PhaseResult[];
|
|
total_decisions: number;
|
|
total_escalations: number;
|
|
total_duration_ms: number;
|
|
completion_report: string;
|
|
}
|
|
|
|
export const STAGE_ORDER: PipelineStage[] = [
|
|
"specify",
|
|
"clarify",
|
|
"research",
|
|
"plan",
|
|
"execute",
|
|
"test",
|
|
"verify",
|
|
"complete",
|
|
];
|
|
|
|
export function getNextStage(current: PipelineStage): PipelineStage | null {
|
|
const idx = STAGE_ORDER.indexOf(current);
|
|
if (idx < 0 || idx >= STAGE_ORDER.length - 1) return null;
|
|
return STAGE_ORDER[idx + 1];
|
|
}
|
|
|
|
export function createInitialPipelineState(
|
|
project_path: string
|
|
): PipelineState {
|
|
return {
|
|
project_path,
|
|
current_stage: "specify",
|
|
current_phase: 0,
|
|
phases_completed: [],
|
|
specification_loaded: false,
|
|
clarify_completed: false,
|
|
research_completed: false,
|
|
plan_completed: false,
|
|
execute_completed: false,
|
|
test_completed: false,
|
|
verify_completed: false,
|
|
errors: [],
|
|
started_at: new Date().toISOString(),
|
|
last_updated: new Date().toISOString(),
|
|
};
|
|
} |