taskplane 0.2.4 → 0.2.5

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.
@@ -78,6 +78,9 @@ export function parseMergeResult(resultPath: string): MergeResult {
78
78
  );
79
79
  }
80
80
 
81
+ // Normalize status to uppercase (merge agents may write lowercase)
82
+ parsed.status = String(parsed.status).toUpperCase();
83
+
81
84
  // Validate status value
82
85
  if (!VALID_MERGE_STATUSES.has(parsed.status)) {
83
86
  execLog("merge", "parse", `unknown merge status "${parsed.status}" — treating as BUILD_FAILURE`, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taskplane",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "AI agent orchestration for pi — parallel task execution with checkpoint discipline",
5
5
  "keywords": [
6
6
  "pi-package",