updates to install procedures

This commit is contained in:
2026-04-11 16:58:46 -04:00
parent 078576eedc
commit de3b9c1c12
3 changed files with 166 additions and 36 deletions

View File

@@ -66,7 +66,7 @@ The system is structured in four protocol layers, each with its own contract:
The plugin follows OpenClaw's standard plugin lifecycle:
1. **INSTALL**`openclaw plugins install clawhub:obsidian-rag` downloads the plugin and reads `openclaw.plugin.json`
1. **INSTALL**Link plugin to `~/.openclaw/extensions/obsidian-rag` or `<workspace>/.openclaw/extensions/obsidian-rag`. OpenClaw reads `openclaw.plugin.json` on discovery.
2. **REGISTER** — Plugin registers 4 tools with OpenClaw's Tool Registry: `obsidian_rag_search`, `obsidian_rag_index`, `obsidian_rag_status`, `obsidian_rag_memory_store`. Each tool declares: name, description, parameterSchema, requiredPermissions.
3. **SERVE** — OpenClaw agent calls tools based on user intent.
4. **HEALTH CHECK**`Plugin.onLoad()` probes Ollama, LanceDB, and the vault, then reports `healthy | degraded | unavailable`.
@@ -562,7 +562,7 @@ clawhub skill publish ./skill --slug obsidian-rag --version 1.0.0
clawhub package publish santhosh/obsidian-rag
```
Install: `openclaw plugins install clawhub:obsidian-rag`
Install: Link plugin to `~/.openclaw/extensions/obsidian-rag` or use `openclaw plugins install --link /path/to/obsidian-rag`
## Windows Development Notes