@karmaniverous/jeeves-watcher-openclaw 0.6.0 → 0.6.1
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.
|
@@ -663,6 +663,12 @@ Each inference rule has:
|
|
|
663
663
|
3. Apply: `watcher_config_apply` — validates, writes, triggers reindex
|
|
664
664
|
4. Monitor: `watcher_issues` for runtime embedding failures
|
|
665
665
|
|
|
666
|
+
### Reindex Concurrency
|
|
667
|
+
|
|
668
|
+
Reindex operations process files concurrently using `reindex.concurrency` (default 50). This applies to full reindex, rules reindex, issues reindex, and the `POST /reindex` endpoint. The watcher's incremental file processing (chokidar) uses a separate `embedding.concurrency` setting.
|
|
669
|
+
|
|
670
|
+
Progress is reported via `watcher_status` (`reindex.filesProcessed` / `reindex.totalFiles`).
|
|
671
|
+
|
|
666
672
|
### When to Reindex
|
|
667
673
|
- **Rules scope** (`"rules"`): Changed rule matching patterns, set expressions, schema mappings. No re-embedding needed.
|
|
668
674
|
- **Full scope** (`"full"`): Changed embedding config, added watch paths, broad schema restructuring. Re-embeds everything.
|
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.6.
|
|
5
|
+
"version": "0.6.1",
|
|
6
6
|
"skills": [
|
|
7
7
|
"dist/skills/jeeves-watcher"
|
|
8
8
|
],
|
package/package.json
CHANGED