tmux-watch 2026.2.6 → 2026.2.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/skills/SKILL.md +9 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tmux-watch",
3
- "version": "2026.2.6",
3
+ "version": "2026.2.7",
4
4
  "type": "module",
5
5
  "description": "OpenClaw tmux output watchdog plugin",
6
6
  "license": "MIT",
package/skills/SKILL.md CHANGED
@@ -65,6 +65,13 @@ tmux capture-pane -p -J -t <session:window.pane> -S -200
65
65
  Use `openclaw tmux-watch capture` to capture text/images from a tmux target. The plugin selects
66
66
  `cryosnap` first, then falls back to `freeze`.
67
67
 
68
+ Default behavior when the user asks for a screenshot:
69
+
70
+ - Use `format=image` by default.
71
+ - Only use `format=text` if the user explicitly asks for text output.
72
+ - Do not return only a file path. **After capturing an image, immediately send the image via the
73
+ same channel used by the user.**
74
+
68
75
  Priority detection order:
69
76
 
70
77
  1. System-level PATH (`cryosnap` / `freeze`)
@@ -98,6 +105,8 @@ Notes:
98
105
 
99
106
  - Temporary images default to a 10-minute TTL. Override with `--ttl-seconds`.
100
107
  - Use `--image-format png|svg|webp` to select output format.
108
+ - If an image is captured, send the image immediately using the channel’s image-send capability
109
+ (not just a path).
101
110
 
102
111
  ## Tool: tmux-watch
103
112