edsger 0.26.1 → 0.26.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -13,7 +13,7 @@ import { getFeature } from '../../api/features/get-feature.js';
|
|
|
13
13
|
import { markWorkflowPhaseCompleted } from '../../api/features/update-feature.js';
|
|
14
14
|
import { logError, logInfo, logWarning } from '../../utils/logger.js';
|
|
15
15
|
import { logPhaseResult } from '../../utils/pipeline-logger.js';
|
|
16
|
-
import { runFeatureAnalysisPhase, runUserStoriesAnalysisPhase, runTestCasesAnalysisPhase, runTechnicalDesignPhase, runBranchPlanningPhase, runCodeImplementationPhase, runFunctionalTestingPhase, runCodeRefinePhase, runCodeReviewPhase, runAutonomousPhase, } from './executors/phase-executor.js';
|
|
16
|
+
import { runFeatureAnalysisPhase, runUserStoriesAnalysisPhase, runTestCasesAnalysisPhase, runTechnicalDesignPhase, runBranchPlanningPhase, runCodeImplementationPhase, runPRSplittingPhase, runPRExecutionPhase, runFunctionalTestingPhase, runCodeRefinePhase, runCodeReviewPhase, runAutonomousPhase, } from './executors/phase-executor.js';
|
|
17
17
|
/**
|
|
18
18
|
* Map workflow phase names (underscore format) to phase runner functions
|
|
19
19
|
* Note: code_refine includes built-in verification loop (similar to technical_design)
|
|
@@ -25,6 +25,8 @@ const PHASE_RUNNERS = {
|
|
|
25
25
|
technical_design: runTechnicalDesignPhase,
|
|
26
26
|
branch_planning: runBranchPlanningPhase,
|
|
27
27
|
code_implementation: runCodeImplementationPhase,
|
|
28
|
+
pr_splitting: runPRSplittingPhase,
|
|
29
|
+
pr_execution: runPRExecutionPhase,
|
|
28
30
|
functional_testing: runFunctionalTestingPhase,
|
|
29
31
|
code_review: runCodeReviewPhase,
|
|
30
32
|
code_refine: runCodeRefinePhase,
|