taskplane 0.22.0 → 0.22.1
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.
|
@@ -1946,7 +1946,7 @@ export default function (pi: ExtensionAPI) {
|
|
|
1946
1946
|
// ── TP-076: Supervisor alert handler — injects alerts as user messages ──
|
|
1947
1947
|
(alert) => {
|
|
1948
1948
|
if (!supervisorState.active) return; // Don't send orphaned messages
|
|
1949
|
-
|
|
1949
|
+
pi.sendUserMessage(alert.summary, { deliverAs: "followUp" });
|
|
1950
1950
|
},
|
|
1951
1951
|
);
|
|
1952
1952
|
|
|
@@ -2166,7 +2166,7 @@ export default function (pi: ExtensionAPI) {
|
|
|
2166
2166
|
// ── TP-076: Supervisor alert handler — injects alerts as user messages ──
|
|
2167
2167
|
(alert) => {
|
|
2168
2168
|
if (!supervisorState.active) return; // Don't send orphaned messages
|
|
2169
|
-
|
|
2169
|
+
pi.sendUserMessage(alert.summary, { deliverAs: "followUp" });
|
|
2170
2170
|
},
|
|
2171
2171
|
);
|
|
2172
2172
|
|