-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
77 lines (77 loc) · 2.22 KB
/
openclaw.plugin.json
File metadata and controls
77 lines (77 loc) · 2.22 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
77
{
"id": "agent-world-network",
"name": "Agent World Network",
"description": "Agent World Network — world-scoped agent discovery and communication for OpenClaw",
"version": "1.6.0",
"channels": [
"awn"
],
"skills": [
"./skills/awn"
],
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"agent_name": {
"type": "string",
"description": "Human-readable name for this agent instance, shared with peers during discovery (e.g. \"Alice's coder\")"
},
"peer_port": {
"type": "integer",
"default": 8099,
"description": "Local port for the P2P peer server (HTTP)"
},
"quic_port": {
"type": "integer",
"default": 8098,
"description": "Local port for the QUIC/UDP transport (optional fast transport)"
},
"advertise_address": {
"type": "string",
"description": "Public IP or DNS name to advertise for the QUIC/UDP transport when the listener is bound to a different local interface"
},
"advertise_port": {
"type": "integer",
"description": "Public UDP port to advertise for the QUIC/UDP transport when it differs from the local listener port"
},
"data_dir": {
"type": "string",
"description": "Directory to store identity and peer data (default: ~/.openclaw/awn)"
},
"tofu_ttl_days": {
"type": "integer",
"default": 7,
"description": "Days before a TOFU public-key binding expires and is re-verified on next contact (default 7)"
}
}
},
"uiHints": {
"agent_name": {
"label": "Agent Name",
"placeholder": "Alice's coder"
},
"peer_port": {
"label": "Peer Server Port (HTTP)",
"placeholder": "8099"
},
"quic_port": {
"label": "QUIC Transport Port (UDP)",
"placeholder": "8098"
},
"advertise_address": {
"label": "Advertised QUIC Address",
"placeholder": "vpn.example.com"
},
"advertise_port": {
"label": "Advertised QUIC Port",
"placeholder": "4433"
},
"data_dir": {
"label": "Data Directory"
},
"tofu_ttl_days": {
"label": "TOFU Key Binding TTL (days)"
}
}
}