slacklocalvibe 0.1.6 → 0.1.7
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.
- package/package.json +1 -1
- package/src/commands/notify.js +4 -1
package/package.json
CHANGED
package/src/commands/notify.js
CHANGED
|
@@ -108,10 +108,13 @@ async function runNotify({ tool }) {
|
|
|
108
108
|
String(input.assistant_text || "").startsWith("(本文抽出エラー:");
|
|
109
109
|
|
|
110
110
|
if (userTextMissing) {
|
|
111
|
-
log(LEVELS.
|
|
111
|
+
log(LEVELS.ERROR, "notify.user_text_missing", {
|
|
112
112
|
tool: input.tool,
|
|
113
113
|
meta: input.meta || {},
|
|
114
|
+
duration_ms: Date.now() - startedAt,
|
|
114
115
|
});
|
|
116
|
+
process.exitCode = 1;
|
|
117
|
+
return;
|
|
115
118
|
}
|
|
116
119
|
if (assistantTextMissing) {
|
|
117
120
|
log(LEVELS.WARNING, "notify.assistant_text_missing", { tool: input.tool });
|