edsger 0.19.0 → 0.19.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.
|
@@ -4,5 +4,5 @@
|
|
|
4
4
|
import { EdsgerConfig } from '../../../types/index.js';
|
|
5
5
|
import { PipelinePhaseOptions, PipelineResult, PhaseConfig } from '../../../types/pipeline.js';
|
|
6
6
|
export declare const createPhaseRunner: (phaseConfig: PhaseConfig) => (options: PipelinePhaseOptions, config: EdsgerConfig) => Promise<PipelineResult>;
|
|
7
|
-
declare const runFeatureAnalysisPhase: (options: PipelinePhaseOptions, config: EdsgerConfig) => Promise<PipelineResult>, runTechnicalDesignPhase: (options: PipelinePhaseOptions, config: EdsgerConfig) => Promise<PipelineResult>, runCodeImplementationPhase: (options: PipelinePhaseOptions, config: EdsgerConfig) => Promise<PipelineResult>, runFunctionalTestingPhase: (options: PipelinePhaseOptions, config: EdsgerConfig) => Promise<PipelineResult>, runCodeTestingPhase: (options: PipelinePhaseOptions, config: EdsgerConfig) => Promise<PipelineResult>, runCodeRefinePhase: (options: PipelinePhaseOptions, config: EdsgerConfig) => Promise<PipelineResult>, runCodeRefineVerificationPhase: (options: PipelinePhaseOptions, config: EdsgerConfig) => Promise<PipelineResult>, runCodeReviewPhase: (options: PipelinePhaseOptions, config: EdsgerConfig) => Promise<PipelineResult>;
|
|
8
|
-
export { runFeatureAnalysisPhase, runTechnicalDesignPhase, runCodeImplementationPhase, runFunctionalTestingPhase, runCodeTestingPhase, runCodeRefinePhase, runCodeRefineVerificationPhase, runCodeReviewPhase, };
|
|
7
|
+
declare const runFeatureAnalysisPhase: (options: PipelinePhaseOptions, config: EdsgerConfig) => Promise<PipelineResult>, runTechnicalDesignPhase: (options: PipelinePhaseOptions, config: EdsgerConfig) => Promise<PipelineResult>, runBranchPlanningPhase: (options: PipelinePhaseOptions, config: EdsgerConfig) => Promise<PipelineResult>, runCodeImplementationPhase: (options: PipelinePhaseOptions, config: EdsgerConfig) => Promise<PipelineResult>, runFunctionalTestingPhase: (options: PipelinePhaseOptions, config: EdsgerConfig) => Promise<PipelineResult>, runCodeTestingPhase: (options: PipelinePhaseOptions, config: EdsgerConfig) => Promise<PipelineResult>, runCodeRefinePhase: (options: PipelinePhaseOptions, config: EdsgerConfig) => Promise<PipelineResult>, runCodeRefineVerificationPhase: (options: PipelinePhaseOptions, config: EdsgerConfig) => Promise<PipelineResult>, runCodeReviewPhase: (options: PipelinePhaseOptions, config: EdsgerConfig) => Promise<PipelineResult>;
|
|
8
|
+
export { runFeatureAnalysisPhase, runTechnicalDesignPhase, runBranchPlanningPhase, runCodeImplementationPhase, runFunctionalTestingPhase, runCodeTestingPhase, runCodeRefinePhase, runCodeRefineVerificationPhase, runCodeReviewPhase, };
|
|
@@ -262,6 +262,6 @@ export const createPhaseRunner = (phaseConfig) => async (options, config) => {
|
|
|
262
262
|
}
|
|
263
263
|
};
|
|
264
264
|
// Create phase runners using the configuration
|
|
265
|
-
const [runFeatureAnalysisPhase, runTechnicalDesignPhase, runCodeImplementationPhase, runFunctionalTestingPhase, runCodeTestingPhase, runCodeRefinePhase, runCodeRefineVerificationPhase, runCodeReviewPhase,] = phaseConfigs.map(createPhaseRunner);
|
|
265
|
+
const [runFeatureAnalysisPhase, runTechnicalDesignPhase, runBranchPlanningPhase, runCodeImplementationPhase, runFunctionalTestingPhase, runCodeTestingPhase, runCodeRefinePhase, runCodeRefineVerificationPhase, runCodeReviewPhase,] = phaseConfigs.map(createPhaseRunner);
|
|
266
266
|
// Export individual phase runners for granular control
|
|
267
|
-
export { runFeatureAnalysisPhase, runTechnicalDesignPhase, runCodeImplementationPhase, runFunctionalTestingPhase, runCodeTestingPhase, runCodeRefinePhase, runCodeRefineVerificationPhase, runCodeReviewPhase, };
|
|
267
|
+
export { runFeatureAnalysisPhase, runTechnicalDesignPhase, runBranchPlanningPhase, runCodeImplementationPhase, runFunctionalTestingPhase, runCodeTestingPhase, runCodeRefinePhase, runCodeRefineVerificationPhase, runCodeReviewPhase, };
|
|
@@ -13,13 +13,14 @@ 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, runTechnicalDesignPhase, runCodeImplementationPhase, runFunctionalTestingPhase, runCodeRefinePhase, runCodeReviewPhase, } from './executors/phase-executor.js';
|
|
16
|
+
import { runFeatureAnalysisPhase, runTechnicalDesignPhase, runBranchPlanningPhase, runCodeImplementationPhase, runFunctionalTestingPhase, runCodeRefinePhase, runCodeReviewPhase, } from './executors/phase-executor.js';
|
|
17
17
|
/**
|
|
18
18
|
* Map workflow phase names (underscore format) to phase runner functions
|
|
19
19
|
*/
|
|
20
20
|
const PHASE_RUNNERS = {
|
|
21
21
|
feature_analysis: runFeatureAnalysisPhase,
|
|
22
22
|
technical_design: runTechnicalDesignPhase,
|
|
23
|
+
branch_planning: runBranchPlanningPhase,
|
|
23
24
|
code_implementation: runCodeImplementationPhase,
|
|
24
25
|
functional_testing: runFunctionalTestingPhase,
|
|
25
26
|
code_review: runCodeReviewPhase,
|
|
@@ -27,6 +27,8 @@ export const STATUS_PROGRESSION_ORDER = [
|
|
|
27
27
|
'feature_analysis_verification',
|
|
28
28
|
'technical_design',
|
|
29
29
|
'technical_design_verification',
|
|
30
|
+
'branch_planning',
|
|
31
|
+
'branch_planning_verification',
|
|
30
32
|
'code_implementation',
|
|
31
33
|
'code_implementation_verification',
|
|
32
34
|
'code_refine',
|
|
@@ -59,6 +61,8 @@ export const PHASE_STATUS_MAP = {
|
|
|
59
61
|
'feature-analysis-verification': 'feature_analysis_verification',
|
|
60
62
|
'technical-design': 'technical_design',
|
|
61
63
|
'technical-design-verification': 'technical_design_verification',
|
|
64
|
+
'branch-planning': 'branch_planning',
|
|
65
|
+
'branch-planning-verification': 'branch_planning_verification',
|
|
62
66
|
'code-implementation': 'code_implementation',
|
|
63
67
|
'code-implementation-verification': 'code_implementation_verification',
|
|
64
68
|
'code-refine': 'code_refine',
|
|
@@ -90,6 +94,7 @@ export const HUMAN_SELECTABLE_STATUSES = [
|
|
|
90
94
|
'ready_for_ai',
|
|
91
95
|
'feature_analysis',
|
|
92
96
|
'technical_design',
|
|
97
|
+
'branch_planning',
|
|
93
98
|
'code_implementation',
|
|
94
99
|
'code_refine',
|
|
95
100
|
'bug_fixing',
|
package/dist/types/index.d.ts
CHANGED
|
@@ -130,4 +130,4 @@ export interface FeatureAnalysisDisplayResult {
|
|
|
130
130
|
createdUserStories?: DisplayUserStory[];
|
|
131
131
|
createdTestCases?: DisplayTestCase[];
|
|
132
132
|
}
|
|
133
|
-
export type FeatureStatus = 'backlog' | 'ready_for_ai' | 'feature_analysis' | 'feature_analysis_verification' | 'technical_design' | 'technical_design_verification' | 'code_implementation' | 'code_implementation_verification' | 'code_refine' | 'code_refine_verification' | 'bug_fixing' | 'code_review' | 'pull_request' | 'functional_testing' | 'ready_for_review' | 'shipped' | 'testing_in_progress' | 'testing_passed' | 'testing_failed';
|
|
133
|
+
export type FeatureStatus = 'backlog' | 'ready_for_ai' | 'feature_analysis' | 'feature_analysis_verification' | 'technical_design' | 'technical_design_verification' | 'branch_planning' | 'branch_planning_verification' | 'code_implementation' | 'code_implementation_verification' | 'code_refine' | 'code_refine_verification' | 'bug_fixing' | 'code_review' | 'pull_request' | 'functional_testing' | 'ready_for_review' | 'shipped' | 'testing_in_progress' | 'testing_passed' | 'testing_failed';
|