forked from vouchdev/vouch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
25 lines (25 loc) · 950 Bytes
/
Copy pathopenclaw.plugin.json
File metadata and controls
25 lines (25 loc) · 950 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"id": "vouch",
"name": "Vouch",
"version": "1.2.2",
"description": "Git-native, review-gated knowledge base. Registers vouch's context engine (cited retrieval + salience reflex + hot memory) and the vouch skills. The kb.* MCP server is deployment config: `openclaw mcp add vouch -- vouch serve`.",
"kind": "context-engine",
"skills": [
"adapters/openclaw/skills"
],
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"kb_path": {
"type": "string",
"description": "Absolute path to the project root containing .vouch/. When unset, vouch walks up from the workspace directory to find the nearest KB."
},
"agent": {
"type": "string",
"default": "openclaw",
"description": "Identity string recorded on every proposal + audit event when this plugin is the writer. Exported as VOUCH_AGENT to the child process."
}
}
}
}