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

@@ -7,6 +7,125 @@
"author": "Santhosh Janardhanan",
"openclaw": "^2026.4.9",
"main": "dist/index.js",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"vault_path": {
"type": "string",
"description": "Path to Obsidian vault"
},
"embedding": {
"type": "object",
"additionalProperties": false,
"properties": {
"provider": {
"type": "string",
"enum": ["ollama"]
},
"model": {
"type": "string"
},
"base_url": {
"type": "string",
"format": "uri"
},
"dimensions": {
"type": "integer",
"minimum": 1
},
"batch_size": {
"type": "integer",
"minimum": 1
}
}
},
"vector_store": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": ["lancedb"]
},
"path": {
"type": "string"
}
}
},
"indexing": {
"type": "object",
"additionalProperties": false,
"properties": {
"chunk_size": {
"type": "integer",
"minimum": 1
},
"chunk_overlap": {
"type": "integer",
"minimum": 0
},
"file_patterns": {
"type": "array",
"items": {
"type": "string"
}
},
"deny_dirs": {
"type": "array",
"items": {
"type": "string"
}
},
"allow_dirs": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"security": {
"type": "object",
"additionalProperties": false,
"properties": {
"require_confirmation_for": {
"type": "array",
"items": {
"type": "string"
}
},
"sensitive_sections": {
"type": "array",
"items": {
"type": "string"
}
},
"local_only": {
"type": "boolean"
}
}
},
"memory": {
"type": "object",
"additionalProperties": false,
"properties": {
"auto_suggest": {
"type": "boolean"
},
"patterns": {
"type": "object",
"additionalProperties": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
},
"tools": [
{
"name": "obsidian_rag_search",