@askexenow/exe-os 0.9.90 → 0.9.91

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.
@@ -32764,9 +32764,10 @@ function registerTriageBugReport(server) {
32764
32764
  }
32765
32765
  },
32766
32766
  async ({ id, status: status2, triage_notes, linked_task_id, linked_commit, fixed_version }) => {
32767
+ const effectiveStatus = fixed_version && !status2 ? "closed" : status2;
32767
32768
  const data = await requestJson(`${endpoint()}/${encodeURIComponent(id)}`, {
32768
32769
  method: "PATCH",
32769
- body: JSON.stringify({ status: status2, triage_notes, linked_task_id, linked_commit, fixed_version })
32770
+ body: JSON.stringify({ status: effectiveStatus, triage_notes, linked_task_id, linked_commit, fixed_version })
32770
32771
  });
32771
32772
  return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }] };
32772
32773
  }
@@ -32826,9 +32827,10 @@ function registerTriageFeatureRequest(server) {
32826
32827
  }
32827
32828
  },
32828
32829
  async ({ id, status: status2, response_notes, target_version, shipped_version }) => {
32830
+ const effectiveStatus = shipped_version && !status2 ? "shipped" : status2;
32829
32831
  const data = await requestJson(`${featureEndpoint()}/${encodeURIComponent(id)}`, {
32830
32832
  method: "PATCH",
32831
- body: JSON.stringify({ status: status2, response_notes, target_version, shipped_version })
32833
+ body: JSON.stringify({ status: effectiveStatus, response_notes, target_version, shipped_version })
32832
32834
  });
32833
32835
  return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }] };
32834
32836
  }
@@ -33020,6 +33022,9 @@ function registerSupportConsolidated(server) {
33020
33022
  args.triage_notes = args.notes;
33021
33023
  delete args.notes;
33022
33024
  }
33025
+ if ((action === "triage_bug" || action === "triage_feature") && args.fixed_version && !args.status) {
33026
+ args.status = "closed";
33027
+ }
33023
33028
  return handler(args, extra);
33024
33029
  }
33025
33030
  );
@@ -29845,9 +29845,10 @@ function registerTriageBugReport(server2) {
29845
29845
  }
29846
29846
  },
29847
29847
  async ({ id, status: status2, triage_notes, linked_task_id, linked_commit, fixed_version }) => {
29848
+ const effectiveStatus = fixed_version && !status2 ? "closed" : status2;
29848
29849
  const data = await requestJson(`${endpoint()}/${encodeURIComponent(id)}`, {
29849
29850
  method: "PATCH",
29850
- body: JSON.stringify({ status: status2, triage_notes, linked_task_id, linked_commit, fixed_version })
29851
+ body: JSON.stringify({ status: effectiveStatus, triage_notes, linked_task_id, linked_commit, fixed_version })
29851
29852
  });
29852
29853
  return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }] };
29853
29854
  }
@@ -29908,9 +29909,10 @@ function registerTriageFeatureRequest(server2) {
29908
29909
  }
29909
29910
  },
29910
29911
  async ({ id, status: status2, response_notes, target_version, shipped_version }) => {
29912
+ const effectiveStatus = shipped_version && !status2 ? "shipped" : status2;
29911
29913
  const data = await requestJson(`${featureEndpoint()}/${encodeURIComponent(id)}`, {
29912
29914
  method: "PATCH",
29913
- body: JSON.stringify({ status: status2, response_notes, target_version, shipped_version })
29915
+ body: JSON.stringify({ status: effectiveStatus, response_notes, target_version, shipped_version })
29914
29916
  });
29915
29917
  return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }] };
29916
29918
  }
@@ -30092,6 +30094,9 @@ function registerSupportConsolidated(server2) {
30092
30094
  args.triage_notes = args.notes;
30093
30095
  delete args.notes;
30094
30096
  }
30097
+ if ((action === "triage_bug" || action === "triage_feature") && args.fixed_version && !args.status) {
30098
+ args.status = "closed";
30099
+ }
30095
30100
  return handler(args, extra);
30096
30101
  }
30097
30102
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@askexenow/exe-os",
3
- "version": "0.9.90",
3
+ "version": "0.9.91",
4
4
  "description": "AI employee operating system — persistent memory, task management, and multi-agent coordination for Claude Code.",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "type": "module",