-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
172 lines (172 loc) · 5.25 KB
/
Copy pathopenclaw.plugin.json
File metadata and controls
172 lines (172 loc) · 5.25 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
"id": "linear-agent-bridge",
"name": "Linear",
"description": "Linear agent webhook bridge for OpenClaw dev runs",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"devAgentId": {
"type": "string",
"description": "Agent ID to handle Linear issues (default: 'dev')"
},
"linearWebhookSecret": {
"type": "string",
"description": "Linear webhook signing secret for signature verification"
},
"linearApiKey": {
"type": "string",
"description": "Linear OAuth token for posting activities and updating issues"
},
"linearOauthClientId": {
"type": "string",
"description": "Linear OAuth client ID for code exchange/refresh"
},
"linearOauthClientSecret": {
"type": "string",
"description": "Linear OAuth client secret for code exchange/refresh"
},
"linearOauthRedirectUri": {
"type": "string",
"description": "Redirect URI configured in Linear app settings"
},
"linearTokenStorePath": {
"type": "string",
"description": "Workspace-local path for persisted Linear OAuth tokens"
},
"notifyChannel": {
"type": "string",
"description": "Optional channel to deliver agent responses (e.g., 'discord')"
},
"notifyTo": {
"type": "string",
"description": "Optional target for notifications (e.g., 'channel:123456')"
},
"notifyAccountId": {
"type": "string",
"description": "Optional account ID for notifications"
},
"repoByTeam": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Map Linear team keys to repository directories"
},
"repoByProject": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Map Linear project keys to repository directories"
},
"defaultDir": {
"type": "string",
"description": "Default repository directory when no team/project mapping matches"
},
"delegateOnCreate": {
"type": "boolean",
"description": "Auto-delegate issues to the app user on session create (default: true)"
},
"startOnCreate": {
"type": "boolean",
"description": "Move issues to 'started' state on session create (default: true)"
},
"externalUrlBase": {
"type": "string",
"description": "Base URL for external session links (supports {session} and {issue} placeholders)"
},
"externalUrlLabel": {
"type": "string",
"description": "Label for external session links (default: 'OpenClaw session')"
},
"enableAgentApi": {
"type": "boolean",
"description": "Enable agent-callable API proxy endpoints (default: true)"
},
"apiBaseUrl": {
"type": "string",
"description": "Override auto-detected base URL for agent API calls"
},
"strictAddressing": {
"type": "boolean",
"description": "Process only explicitly addressed events (mentions/delegation/thread replies)"
},
"mentionHandle": {
"type": "string",
"description": "App mention handle used for strict addressing (e.g. personal-openclaw)"
},
"apiCorsOrigins": {
"type": "array",
"items": {
"type": "string"
},
"description": "Allowed origins for CORS on /plugins/linear/api (use [\"*\"] to allow any origin)"
},
"apiCorsAllowCredentials": {
"type": "boolean",
"description": "Set Access-Control-Allow-Credentials on /plugins/linear/api responses"
}
}
},
"uiHints": {
"linearWebhookSecret": {
"label": "Webhook secret",
"sensitive": true
},
"linearApiKey": {
"label": "API key / OAuth token",
"sensitive": true
},
"linearOauthClientId": {
"label": "OAuth client ID",
"sensitive": true
},
"linearOauthClientSecret": {
"label": "OAuth client secret",
"sensitive": true
},
"linearOauthRedirectUri": {
"label": "OAuth redirect URI"
},
"linearTokenStorePath": {
"label": "OAuth token store path",
"placeholder": "/home/ubuntu/.openclaw/workspace/.pi/linear-oauth.json"
},
"delegateOnCreate": {
"label": "Auto delegate"
},
"startOnCreate": {
"label": "Move to started"
},
"externalUrlBase": {
"label": "External session URL",
"placeholder": "https://your-gateway/sessions/{session}"
},
"externalUrlLabel": {
"label": "External URL label",
"placeholder": "OpenClaw session"
},
"enableAgentApi": {
"label": "Enable agent API"
},
"apiBaseUrl": {
"label": "API base URL override",
"placeholder": "https://your-hostname.ts.net"
},
"strictAddressing": {
"label": "Strict addressing mode"
},
"mentionHandle": {
"label": "Mention handle",
"placeholder": "personal-openclaw"
},
"apiCorsOrigins": {
"label": "API CORS origins",
"placeholder": "https://linear.app"
},
"apiCorsAllowCredentials": {
"label": "API CORS allow credentials"
}
}
}