@karmaniverous/jeeves-watcher-openclaw 0.14.10 → 0.15.0

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
@@ -74,6 +74,13 @@ This plugin integrates with [`@karmaniverous/jeeves`](https://www.npmjs.com/pack
74
74
  | `watcher_scan` | Filter-only point query with cursor pagination |
75
75
  | `watcher_issues` | List indexing issues and errors |
76
76
  | `watcher_service` | Manage watcher background service (install/uninstall/start/stop/restart/status) |
77
+ | `watcher_vcs_status` | Version tracking health: enabled state, tracked roots, remote status |
78
+ | `watcher_vcs_history` | Query change history by path or glob with optional date range |
79
+ | `watcher_vcs_show` | Retrieve file content at a specific version |
80
+ | `watcher_vcs_diff` | Show changes between two versions, or between a version and current |
81
+ | `watcher_vcs_revert` | Undo changes by restoring files to a specific version |
82
+ | `watcher_vcs_exclude` | Exclude or re-include paths from version tracking |
83
+ | `watcher_vcs_check` | Check whether a path is excluded from version tracking and why |
77
84
 
78
85
  ## Documentation
79
86
 
@@ -24,6 +24,20 @@ When editing files outside the workspace, use the bridge pattern: copy in → ed
24
24
 
25
25
  **Cross-channel sends:** Use the `message` tool with an explicit `target` to send to a different channel or DM.
26
26
 
27
+ ### Slack File Downloads
28
+
29
+ To download a Slack-hosted file, first try the `message` tool's `download-file` action. If that fails, fall back to a direct HTTP fetch using the bot token:
30
+
31
+ ```js
32
+ fetch(url_private_download, {
33
+ headers: { Authorization: 'Bearer ' + botToken },
34
+ });
35
+ ```
36
+
37
+ The bot token is at `channels.slack.accounts.default.botToken` in `openclaw.json`.
38
+
39
+ Never tell the user a file can't be downloaded until both methods have been tried.
40
+
27
41
  ### Plugin Lifecycle
28
42
 
29
43
  ```bash