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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slacklocalvibe",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "SlackLocalVibe: Codex/Claude Code turn notifications and reply→resume bridge for Slack DM (Socket Mode)",
5
5
  "bin": {
6
6
  "slacklocalvibe": "src/cli.js"
@@ -108,10 +108,13 @@ async function runNotify({ tool }) {
108
108
  String(input.assistant_text || "").startsWith("(本文抽出エラー:");
109
109
 
110
110
  if (userTextMissing) {
111
- log(LEVELS.WARNING, "notify.user_text_missing", {
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 });