-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
76 lines (76 loc) · 2.56 KB
/
Copy pathopenclaw.plugin.json
File metadata and controls
76 lines (76 loc) · 2.56 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"id": "indexnetwork-openclaw-plugin",
"name": "Index Network",
"description": "Index Network — find the right people and let them find you. Registers the Index Network MCP server on first use and hands off to its guidance.",
"version": "0.29.9",
"configSchema": {
"type": "object",
"properties": {
"agentId": {
"type": "string",
"description": "Your Index Network agent ID. Found on the Agents page."
},
"apiKey": {
"type": "string",
"description": "API key linked to your Index Network agent. Generated on the Agents page."
},
"url": {
"type": "string",
"format": "uri",
"default": "https://index.network",
"description": "Index Network URL. Protocol and frontend URLs are derived automatically."
},
"protocolUrl": {
"type": "string",
"format": "uri",
"description": "Deprecated — migrated to 'url' on next setup run."
},
"negotiationMode": {
"type": "string",
"enum": ["enabled", "disabled"],
"default": "enabled",
"description": "When set to \"disabled\", pending turns are skipped — Index Network falls back to its system negotiator."
},
"mainAgentToolUse": {
"type": "string",
"enum": ["disabled", "enabled"],
"default": "disabled",
"description": "If 'enabled', the main agent may call MCP tools while rendering Index Network notifications."
},
"digestEnabled": {
"type": "string",
"enum": ["true", "false"],
"default": "true",
"description": "Set to \"false\" to disable daily digest."
},
"digestTime": {
"type": "string",
"pattern": "^([01]?[0-9]|2[0-3]):[0-5][0-9]$",
"default": "08:00",
"description": "Time to send digest in HH:MM format (24-hour, local timezone)."
},
"nodeName": {
"type": "string",
"description": "Community name injected as branding context into all notification prompts."
},
"nodeDescription": {
"type": "string",
"description": "Short description of the community, appended to the branding context clause."
},
"nodeContext": {
"type": "string",
"description": "Focus area or context for the community, appended to the branding context clause."
}
},
"required": [],
"additionalProperties": false
},
"skills": ["./skills"],
"commandAliases": [
{ "name": "index" },
{ "name": "index-network" }
],
"activation": {
"onStartup": true
}
}