-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
35 lines (35 loc) · 1.04 KB
/
openclaw.plugin.json
File metadata and controls
35 lines (35 loc) · 1.04 KB
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
26
27
28
29
30
31
32
33
34
35
{
"id": "nutrient-openclaw",
"name": "Nutrient Document Processing",
"description": "Process, convert, sign, redact, OCR, and extract data from documents via the Nutrient DWS API.",
"version": "0.1.1",
"repository": "github:PSPDFKit-labs/nutrient-openclaw",
"configSchema": {
"type": "object",
"required": [],
"additionalProperties": false,
"properties": {
"apiKey": {
"type": "string",
"description": "Nutrient DWS API key (from https://www.nutrient.io/)"
},
"sandboxDir": {
"type": "string",
"description": "Optional directory to restrict file reads/writes. When set, all file paths are resolved relative to this directory."
}
}
},
"uiHints": {
"apiKey": {
"label": "API Key",
"help": "Your Nutrient DWS API key",
"sensitive": true,
"placeholder": "pdf_live_..."
},
"sandboxDir": {
"label": "Sandbox Directory",
"help": "Restrict file operations to this directory (optional)",
"placeholder": "~/documents"
}
}
}