-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
130 lines (130 loc) · 3.42 KB
/
openclaw.plugin.json
File metadata and controls
130 lines (130 loc) · 3.42 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"id": "orgx",
"name": "OrgX for OpenClaw",
"version": "0.7.35",
"description": "Persistent organizational memory and coordinated execution for OpenClaw agents",
"entry": "./dist/index.js",
"author": "OrgX Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/useorgx/openclaw-plugin.git"
},
"engines": {
"node": ">=18.0.0"
},
"activation": {
"onStartup": true
},
"skills": ["skills"],
"capabilities": {
"tools": true,
"services": true,
"cli": true,
"http": true
},
"contracts": {
"tools": [
"orgx_status",
"orgx_sentinel_catalog",
"orgx_sync",
"orgx_get_morning_brief",
"orgx_query_org_memory",
"orgx_recommend_next_action",
"orgx_delegation_preflight",
"orgx_run_action",
"orgx_checkpoints_list",
"orgx_checkpoint_restore",
"orgx_spawn_check",
"orgx_quality_score",
"orgx_proof_status",
"orgx_verify_completion",
"orgx_record_outcome",
"orgx_get_outcome_attribution",
"orgx_create_entity",
"orgx_update_entity",
"orgx_reassign_stream",
"orgx_reassign_streams",
"orgx_list_entities",
"orgx_emit_activity",
"orgx_apply_changeset",
"orgx_report_progress",
"orgx_request_decision",
"orgx_register_artifact",
"orgx_agent_sessions",
"orgx_resume_agent_session",
"orgx_clear_agent_session",
"list_agent_configs",
"get_agent_config",
"update_agent_config",
"update_stream_progress"
]
},
"configSchema": {
"type": "object",
"properties": {
"apiKey": {
"type": "string",
"description": "OrgX API key for authentication"
},
"baseUrl": {
"type": "string",
"default": "https://www.useorgx.com",
"description": "OrgX API base URL"
},
"syncIntervalMs": {
"type": "number",
"default": 300000,
"description": "Background sync interval in milliseconds (default: 5 minutes)"
},
"autoInstallAgentSuiteOnConnect": {
"type": "boolean",
"default": false,
"description": "Automatically apply the managed OrgX agent suite after connect/sync"
},
"autoConfigureMcpClientsOnConnect": {
"type": "boolean",
"default": false,
"description": "Automatically patch detected Claude, Cursor, and Codex MCP client configs after browser pairing"
},
"enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable the OrgX plugin"
},
"dashboardEnabled": {
"type": "boolean",
"default": true,
"description": "Enable the OrgX live dashboard at /orgx/live"
}
},
"required": []
},
"uiHints": {
"apiKey": {
"label": "OrgX API Key",
"sensitive": true,
"placeholder": "Enter API key"
},
"baseUrl": {
"label": "OrgX API Base URL",
"placeholder": "https://www.useorgx.com"
},
"syncIntervalMs": {
"label": "Sync Interval (ms)",
"placeholder": "300000"
},
"autoInstallAgentSuiteOnConnect": {
"label": "Auto-install Agent Suite After Connect"
},
"autoConfigureMcpClientsOnConnect": {
"label": "Auto-configure MCP Clients After Connect"
},
"enabled": {
"label": "Enable Plugin"
},
"dashboardEnabled": {
"label": "Enable Live Dashboard"
}
}
}