edsger 0.19.1 → 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.
@@ -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',
@@ -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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edsger",
3
- "version": "0.19.1",
3
+ "version": "0.19.2",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "edsger": "dist/index.js"