edsger 0.26.1 → 0.26.3

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,
@@ -113,7 +113,7 @@ export async function pushAndCreateGitHubPR(config, branchName, title, descripti
113
113
  body: description,
114
114
  head: prHead,
115
115
  base: prBase,
116
- draft: false,
116
+ draft: true,
117
117
  });
118
118
  if (verbose) {
119
119
  logInfo(`✅ Pull request created: ${newPR.html_url}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edsger",
3
- "version": "0.26.1",
3
+ "version": "0.26.3",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "edsger": "dist/index.js"