@karmaniverous/jeeves-watcher-openclaw 0.5.6 → 0.5.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/README.md +6 -4
- package/dist/index.js +1 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -38,10 +38,14 @@ Set the `apiUrl` in the plugin configuration to point at your jeeves-watcher ser
|
|
|
38
38
|
|
|
39
39
|
```json
|
|
40
40
|
{
|
|
41
|
-
"apiUrl": "http://127.0.0.1:
|
|
41
|
+
"apiUrl": "http://127.0.0.1:1936"
|
|
42
42
|
}
|
|
43
43
|
```
|
|
44
44
|
|
|
45
|
+
## Dynamic TOOLS.md Injection
|
|
46
|
+
|
|
47
|
+
On startup, the plugin writes a `## Watcher` section to `TOOLS.md` in the agent's workspace, providing a live menu of indexed content, score thresholds, and escalation rules. This refreshes every 60 seconds. On uninstall, the CLI removes the section.
|
|
48
|
+
|
|
45
49
|
## Tools
|
|
46
50
|
|
|
47
51
|
| Tool | Description |
|
|
@@ -49,13 +53,11 @@ Set the `apiUrl` in the plugin configuration to point at your jeeves-watcher ser
|
|
|
49
53
|
| `watcher_status` | Service health, uptime, and collection stats |
|
|
50
54
|
| `watcher_search` | Semantic search across indexed documents |
|
|
51
55
|
| `watcher_enrich` | Enrich document metadata via rules engine |
|
|
52
|
-
| `watcher_query` |
|
|
56
|
+
| `watcher_query` | Query the merged virtual document via JSONPath |
|
|
53
57
|
| `watcher_validate` | Validate a watcher configuration |
|
|
54
58
|
| `watcher_config_apply` | Apply a new configuration |
|
|
55
59
|
| `watcher_reindex` | Trigger a full reindex |
|
|
56
60
|
| `watcher_issues` | List indexing issues and errors |
|
|
57
|
-
| `memory_search` | Semantically search memory files (MEMORY.md and memory/*.md) |
|
|
58
|
-
| `memory_get` | Read content from memory files with optional line range |
|
|
59
61
|
|
|
60
62
|
## Documentation
|
|
61
63
|
|
package/dist/index.js
CHANGED
|
@@ -133,6 +133,7 @@ async function generateWatcherMenu(apiUrl) {
|
|
|
133
133
|
const lines = [
|
|
134
134
|
`This environment includes a semantic search index (\`watcher_search\`) covering ${pointCount.toLocaleString()} document chunks.`,
|
|
135
135
|
'**Escalation Rule:** Use `memory_search` for personal operational notes, decisions, and rules. Escalate to `watcher_search` when memory is thin, or when searching the broader archive (tickets, docs, code). ALWAYS use `watcher_search` BEFORE filesystem commands (exec, grep) when looking for information that matches the indexed categories below.',
|
|
136
|
+
'**Search-first rule:** When a task involves finding, reading, or modifying files in indexed paths, run `watcher_search` FIRST — even if you already know the file path. Search surfaces related files you may not have considered and catches stale artifacts. Direct filesystem access is for acting on search results, not bypassing them.',
|
|
136
137
|
'',
|
|
137
138
|
'### Score Interpretation:',
|
|
138
139
|
'* **Strong:** >= 0.75',
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "jeeves-watcher-openclaw",
|
|
3
3
|
"name": "Jeeves Watcher",
|
|
4
4
|
"description": "Semantic search, metadata enrichment, and instance administration for a jeeves-watcher deployment.",
|
|
5
|
-
"version": "0.5.
|
|
5
|
+
"version": "0.5.7",
|
|
6
6
|
"skills": [
|
|
7
7
|
"dist/skills/jeeves-watcher"
|
|
8
8
|
],
|
package/package.json
CHANGED