@trygocode/notify 0.6.11 → 0.6.12

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/README.md CHANGED
@@ -530,6 +530,17 @@ npm publish, real-device E2E), see
530
530
 
531
531
  ## Changelog
532
532
 
533
+ ### 0.6.12
534
+
535
+ - **Hardening for the 0.6.11 AskQuestion-tool detection** (Codex-reviewed): the
536
+ stop-time transcript recheck now only runs when there is no per-turn record
537
+ (removes a double-notify vector on a repeated stop); tool question snippets are
538
+ sanitized + length-capped like every other snippet; the bounded transcript
539
+ tail-reader keeps a complete first line when the read lands exactly on a line
540
+ boundary; snippet field precedence is `questions[0].question → question →
541
+ prompt → title → text`; and non-object JSONL records (`null`, scalars, arrays)
542
+ are skipped instead of dereferenced. Same behaviour as 0.6.11, just safer.
543
+
533
544
  ### 0.6.11
534
545
 
535
546
  - **Fixed: the `AskQuestion` TOOL (the A/B/C options card) now notifies you.**
@@ -1,2 +1,2 @@
1
1
  // Single source of truth for the CLI version. Keep in sync with package.json.
2
- export const VERSION = "0.6.11";
2
+ export const VERSION = "0.6.12";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trygocode/notify",
3
- "version": "0.6.11",
3
+ "version": "0.6.12",
4
4
  "description": "Free phone + branded desktop notifications for any coding agent (Cursor, Claude Code, OpenCode, Ralph/Homer) via the GoCode app.",
5
5
  "license": "MIT",
6
6
  "type": "module",