@kb-labs/clickup-entry 2.104.0 → 2.106.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/manifest.json +819 -0
- package/package.json +19 -19
|
@@ -0,0 +1,819 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "kb.plugin/3",
|
|
3
|
+
"id": "@kb-labs/clickup",
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"display": {
|
|
6
|
+
"name": "ClickUp",
|
|
7
|
+
"description": "Manage ClickUp tasks, lists, and comments from CLI and REST API",
|
|
8
|
+
"tags": [
|
|
9
|
+
"clickup",
|
|
10
|
+
"tasks",
|
|
11
|
+
"productivity"
|
|
12
|
+
]
|
|
13
|
+
},
|
|
14
|
+
"permissions": {
|
|
15
|
+
"env": {
|
|
16
|
+
"read": [
|
|
17
|
+
"CLICKUP_API_KEY",
|
|
18
|
+
"CLICKUP_TEAM_ID"
|
|
19
|
+
]
|
|
20
|
+
},
|
|
21
|
+
"network": {
|
|
22
|
+
"fetch": [
|
|
23
|
+
"api.clickup.com"
|
|
24
|
+
]
|
|
25
|
+
},
|
|
26
|
+
"quotas": {
|
|
27
|
+
"timeoutMs": 30000,
|
|
28
|
+
"memoryMb": 128
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"cli": {
|
|
32
|
+
"groupMeta": [
|
|
33
|
+
{
|
|
34
|
+
"path": "clickup",
|
|
35
|
+
"describe": "ClickUp task management"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"path": "clickup task",
|
|
39
|
+
"describe": "Task operations"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"path": "clickup task comments",
|
|
43
|
+
"describe": "Task comment operations"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"path": "clickup list",
|
|
47
|
+
"describe": "List operations"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"path": "clickup space",
|
|
51
|
+
"describe": "Space operations"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"path": "clickup folder",
|
|
55
|
+
"describe": "Folder operations"
|
|
56
|
+
}
|
|
57
|
+
],
|
|
58
|
+
"commands": [
|
|
59
|
+
{
|
|
60
|
+
"path": "clickup workspace",
|
|
61
|
+
"category": "Workspace",
|
|
62
|
+
"operationType": "read",
|
|
63
|
+
"describe": "Show full workspace hierarchy (spaces → folders → lists)",
|
|
64
|
+
"handler": "./commands/workspace.js#default",
|
|
65
|
+
"flags": [
|
|
66
|
+
{
|
|
67
|
+
"name": "json",
|
|
68
|
+
"type": "boolean",
|
|
69
|
+
"description": "Output JSON (slim by default)"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"name": "full",
|
|
73
|
+
"type": "boolean",
|
|
74
|
+
"description": "Output full raw JSON (requires --json)"
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"examples": [
|
|
78
|
+
"kb clickup workspace",
|
|
79
|
+
"kb clickup workspace --json",
|
|
80
|
+
"kb clickup workspace --json --full"
|
|
81
|
+
]
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"path": "clickup task search",
|
|
85
|
+
"category": "Tasks",
|
|
86
|
+
"operationType": "read",
|
|
87
|
+
"describe": "Search tasks across the workspace",
|
|
88
|
+
"handler": "./commands/task-search.js#default",
|
|
89
|
+
"flags": [
|
|
90
|
+
{
|
|
91
|
+
"name": "list",
|
|
92
|
+
"type": "string",
|
|
93
|
+
"description": "Filter by list ID"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "status",
|
|
97
|
+
"type": "string",
|
|
98
|
+
"description": "Filter by status (comma-separated)"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "assignee",
|
|
102
|
+
"type": "string",
|
|
103
|
+
"description": "Filter by assignee user IDs (comma-separated)"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "limit",
|
|
107
|
+
"type": "number",
|
|
108
|
+
"description": "Max results",
|
|
109
|
+
"default": 20
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"name": "closed",
|
|
113
|
+
"type": "boolean",
|
|
114
|
+
"description": "Include closed tasks"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"name": "json",
|
|
118
|
+
"type": "boolean",
|
|
119
|
+
"description": "Output JSON (slim by default)"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"name": "full",
|
|
123
|
+
"type": "boolean",
|
|
124
|
+
"description": "Output full raw JSON (requires --json)"
|
|
125
|
+
}
|
|
126
|
+
],
|
|
127
|
+
"examples": [
|
|
128
|
+
"kb clickup task search \"my bug\"",
|
|
129
|
+
"kb clickup task search --status \"in progress\" --json"
|
|
130
|
+
]
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"path": "clickup task get",
|
|
134
|
+
"category": "Tasks",
|
|
135
|
+
"operationType": "read",
|
|
136
|
+
"describe": "Get full task details including comments",
|
|
137
|
+
"handler": "./commands/task-get.js#default",
|
|
138
|
+
"flags": [
|
|
139
|
+
{
|
|
140
|
+
"name": "json",
|
|
141
|
+
"type": "boolean",
|
|
142
|
+
"description": "Output JSON (slim by default)"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"name": "full",
|
|
146
|
+
"type": "boolean",
|
|
147
|
+
"description": "Output full raw JSON (requires --json)"
|
|
148
|
+
}
|
|
149
|
+
],
|
|
150
|
+
"examples": [
|
|
151
|
+
"kb clickup task get abc123",
|
|
152
|
+
"kb clickup task get abc123 --json"
|
|
153
|
+
]
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"path": "clickup task create",
|
|
157
|
+
"category": "Tasks",
|
|
158
|
+
"operationType": "mutate",
|
|
159
|
+
"describe": "Create a new task",
|
|
160
|
+
"handler": "./commands/task-create.js#default",
|
|
161
|
+
"flags": [
|
|
162
|
+
{
|
|
163
|
+
"name": "list",
|
|
164
|
+
"type": "string",
|
|
165
|
+
"description": "Target list ID (required)"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"name": "name",
|
|
169
|
+
"type": "string",
|
|
170
|
+
"description": "Task name (required)"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"name": "desc",
|
|
174
|
+
"type": "string",
|
|
175
|
+
"description": "Task description"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"name": "status",
|
|
179
|
+
"type": "string",
|
|
180
|
+
"description": "Initial status"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"name": "priority",
|
|
184
|
+
"type": "number",
|
|
185
|
+
"description": "1=urgent 2=high 3=normal 4=low"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"name": "assignee",
|
|
189
|
+
"type": "string",
|
|
190
|
+
"description": "Assignee user IDs (comma-separated)"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"name": "due",
|
|
194
|
+
"type": "string",
|
|
195
|
+
"description": "Due date (ISO string or unix ms)"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"name": "json",
|
|
199
|
+
"type": "boolean",
|
|
200
|
+
"description": "Output JSON (slim by default)"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"name": "full",
|
|
204
|
+
"type": "boolean",
|
|
205
|
+
"description": "Output full raw JSON (requires --json)"
|
|
206
|
+
}
|
|
207
|
+
],
|
|
208
|
+
"examples": [
|
|
209
|
+
"kb clickup task create --list abc123 --name \"Fix login bug\" --priority 2",
|
|
210
|
+
"kb clickup task create --list abc123 --name \"Task\" --json"
|
|
211
|
+
]
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"path": "clickup task update",
|
|
215
|
+
"category": "Tasks",
|
|
216
|
+
"operationType": "mutate",
|
|
217
|
+
"describe": "Update an existing task",
|
|
218
|
+
"handler": "./commands/task-update.js#default",
|
|
219
|
+
"flags": [
|
|
220
|
+
{
|
|
221
|
+
"name": "name",
|
|
222
|
+
"type": "string",
|
|
223
|
+
"description": "New task name"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"name": "desc",
|
|
227
|
+
"type": "string",
|
|
228
|
+
"description": "New description"
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"name": "status",
|
|
232
|
+
"type": "string",
|
|
233
|
+
"description": "New status"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"name": "priority",
|
|
237
|
+
"type": "number",
|
|
238
|
+
"description": "1=urgent 2=high 3=normal 4=low"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"name": "assignee_add",
|
|
242
|
+
"type": "string",
|
|
243
|
+
"description": "User IDs to add (comma-separated)"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"name": "assignee_rem",
|
|
247
|
+
"type": "string",
|
|
248
|
+
"description": "User IDs to remove (comma-separated)"
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"name": "due",
|
|
252
|
+
"type": "string",
|
|
253
|
+
"description": "Due date (ISO, unix ms, or \"none\")"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"name": "json",
|
|
257
|
+
"type": "boolean",
|
|
258
|
+
"description": "Output JSON (slim by default)"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"name": "full",
|
|
262
|
+
"type": "boolean",
|
|
263
|
+
"description": "Output full raw JSON (requires --json)"
|
|
264
|
+
}
|
|
265
|
+
],
|
|
266
|
+
"examples": [
|
|
267
|
+
"kb clickup task update abc123 --status \"in progress\"",
|
|
268
|
+
"kb clickup task update abc123 --priority 1 --json"
|
|
269
|
+
]
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"path": "clickup task delete",
|
|
273
|
+
"category": "Tasks",
|
|
274
|
+
"operationType": "mutate",
|
|
275
|
+
"describe": "Delete a task",
|
|
276
|
+
"handler": "./commands/task-delete.js#default",
|
|
277
|
+
"flags": [
|
|
278
|
+
{
|
|
279
|
+
"name": "json",
|
|
280
|
+
"type": "boolean",
|
|
281
|
+
"description": "Output raw JSON"
|
|
282
|
+
}
|
|
283
|
+
],
|
|
284
|
+
"examples": [
|
|
285
|
+
"kb clickup task delete abc123 --yes",
|
|
286
|
+
"kb clickup task delete abc123 --dry-run"
|
|
287
|
+
]
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"path": "clickup task comments list",
|
|
291
|
+
"category": "Comments",
|
|
292
|
+
"operationType": "read",
|
|
293
|
+
"describe": "List comments on a task",
|
|
294
|
+
"handler": "./commands/task-comment-list.js#default",
|
|
295
|
+
"flags": [
|
|
296
|
+
{
|
|
297
|
+
"name": "json",
|
|
298
|
+
"type": "boolean",
|
|
299
|
+
"description": "Output JSON (slim by default)"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"name": "full",
|
|
303
|
+
"type": "boolean",
|
|
304
|
+
"description": "Output full raw JSON (requires --json)"
|
|
305
|
+
}
|
|
306
|
+
],
|
|
307
|
+
"examples": [
|
|
308
|
+
"kb clickup task comments list abc123",
|
|
309
|
+
"kb clickup task comments list abc123 --json"
|
|
310
|
+
]
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"path": "clickup task comments add",
|
|
314
|
+
"category": "Comments",
|
|
315
|
+
"operationType": "mutate",
|
|
316
|
+
"describe": "Add a comment to a task",
|
|
317
|
+
"handler": "./commands/task-comment-add.js#default",
|
|
318
|
+
"flags": [
|
|
319
|
+
{
|
|
320
|
+
"name": "text",
|
|
321
|
+
"type": "string",
|
|
322
|
+
"description": "Comment text (required)"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"name": "assignee",
|
|
326
|
+
"type": "number",
|
|
327
|
+
"description": "Assign comment to user ID"
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"name": "notify",
|
|
331
|
+
"type": "boolean",
|
|
332
|
+
"description": "Notify all task watchers"
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"name": "json",
|
|
336
|
+
"type": "boolean",
|
|
337
|
+
"description": "Output JSON (slim by default)"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"name": "full",
|
|
341
|
+
"type": "boolean",
|
|
342
|
+
"description": "Output full raw JSON (requires --json)"
|
|
343
|
+
}
|
|
344
|
+
],
|
|
345
|
+
"examples": [
|
|
346
|
+
"kb clickup task comments add abc123 --text \"Fixed in branch feature/x\""
|
|
347
|
+
]
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"path": "clickup space create",
|
|
351
|
+
"category": "Spaces",
|
|
352
|
+
"operationType": "mutate",
|
|
353
|
+
"describe": "Create a new space",
|
|
354
|
+
"handler": "./commands/space-create.js#default",
|
|
355
|
+
"flags": [
|
|
356
|
+
{
|
|
357
|
+
"name": "name",
|
|
358
|
+
"type": "string",
|
|
359
|
+
"description": "Space name (required)"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"name": "color",
|
|
363
|
+
"type": "string",
|
|
364
|
+
"description": "Space color (hex)"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"name": "private",
|
|
368
|
+
"type": "boolean",
|
|
369
|
+
"description": "Make space private"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"name": "json",
|
|
373
|
+
"type": "boolean",
|
|
374
|
+
"description": "Output JSON (slim by default)"
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"name": "full",
|
|
378
|
+
"type": "boolean",
|
|
379
|
+
"description": "Output full raw JSON (requires --json)"
|
|
380
|
+
}
|
|
381
|
+
],
|
|
382
|
+
"examples": [
|
|
383
|
+
"kb clickup space create --name \"Engineering\"",
|
|
384
|
+
"kb clickup space create --name \"Design\" --color \"#ff0000\""
|
|
385
|
+
]
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"path": "clickup space update",
|
|
389
|
+
"category": "Spaces",
|
|
390
|
+
"operationType": "mutate",
|
|
391
|
+
"describe": "Update a space",
|
|
392
|
+
"handler": "./commands/space-update.js#default",
|
|
393
|
+
"flags": [
|
|
394
|
+
{
|
|
395
|
+
"name": "name",
|
|
396
|
+
"type": "string",
|
|
397
|
+
"description": "New space name"
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"name": "color",
|
|
401
|
+
"type": "string",
|
|
402
|
+
"description": "New color (hex)"
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"name": "json",
|
|
406
|
+
"type": "boolean",
|
|
407
|
+
"description": "Output JSON (slim by default)"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"name": "full",
|
|
411
|
+
"type": "boolean",
|
|
412
|
+
"description": "Output full raw JSON (requires --json)"
|
|
413
|
+
}
|
|
414
|
+
],
|
|
415
|
+
"examples": [
|
|
416
|
+
"kb clickup space update spaceId --name \"Backend\""
|
|
417
|
+
]
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"path": "clickup space delete",
|
|
421
|
+
"category": "Spaces",
|
|
422
|
+
"operationType": "mutate",
|
|
423
|
+
"describe": "Delete a space",
|
|
424
|
+
"handler": "./commands/space-delete.js#default",
|
|
425
|
+
"flags": [
|
|
426
|
+
{
|
|
427
|
+
"name": "force",
|
|
428
|
+
"type": "boolean",
|
|
429
|
+
"description": "Skip confirmation"
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"name": "json",
|
|
433
|
+
"type": "boolean",
|
|
434
|
+
"description": "Output raw JSON"
|
|
435
|
+
}
|
|
436
|
+
],
|
|
437
|
+
"examples": [
|
|
438
|
+
"kb clickup space delete spaceId --force"
|
|
439
|
+
]
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"path": "clickup folder create",
|
|
443
|
+
"category": "Folders",
|
|
444
|
+
"operationType": "mutate",
|
|
445
|
+
"describe": "Create a new folder in a space",
|
|
446
|
+
"handler": "./commands/folder-create.js#default",
|
|
447
|
+
"flags": [
|
|
448
|
+
{
|
|
449
|
+
"name": "space",
|
|
450
|
+
"type": "string",
|
|
451
|
+
"description": "Space ID (required)"
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
"name": "name",
|
|
455
|
+
"type": "string",
|
|
456
|
+
"description": "Folder name (required)"
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
"name": "json",
|
|
460
|
+
"type": "boolean",
|
|
461
|
+
"description": "Output JSON (slim by default)"
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"name": "full",
|
|
465
|
+
"type": "boolean",
|
|
466
|
+
"description": "Output full raw JSON (requires --json)"
|
|
467
|
+
}
|
|
468
|
+
],
|
|
469
|
+
"examples": [
|
|
470
|
+
"kb clickup folder create --space spaceId --name \"Q3 Sprint\""
|
|
471
|
+
]
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
"path": "clickup folder update",
|
|
475
|
+
"category": "Folders",
|
|
476
|
+
"operationType": "mutate",
|
|
477
|
+
"describe": "Rename a folder",
|
|
478
|
+
"handler": "./commands/folder-update.js#default",
|
|
479
|
+
"flags": [
|
|
480
|
+
{
|
|
481
|
+
"name": "name",
|
|
482
|
+
"type": "string",
|
|
483
|
+
"description": "New folder name (required)"
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
"name": "json",
|
|
487
|
+
"type": "boolean",
|
|
488
|
+
"description": "Output JSON (slim by default)"
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"name": "full",
|
|
492
|
+
"type": "boolean",
|
|
493
|
+
"description": "Output full raw JSON (requires --json)"
|
|
494
|
+
}
|
|
495
|
+
],
|
|
496
|
+
"examples": [
|
|
497
|
+
"kb clickup folder update folderId --name \"Q4 Sprint\""
|
|
498
|
+
]
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"path": "clickup folder delete",
|
|
502
|
+
"category": "Folders",
|
|
503
|
+
"operationType": "mutate",
|
|
504
|
+
"describe": "Delete a folder",
|
|
505
|
+
"handler": "./commands/folder-delete.js#default",
|
|
506
|
+
"flags": [
|
|
507
|
+
{
|
|
508
|
+
"name": "force",
|
|
509
|
+
"type": "boolean",
|
|
510
|
+
"description": "Skip confirmation"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"name": "json",
|
|
514
|
+
"type": "boolean",
|
|
515
|
+
"description": "Output raw JSON"
|
|
516
|
+
}
|
|
517
|
+
],
|
|
518
|
+
"examples": [
|
|
519
|
+
"kb clickup folder delete folderId --force"
|
|
520
|
+
]
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"path": "clickup list create",
|
|
524
|
+
"category": "Lists",
|
|
525
|
+
"operationType": "mutate",
|
|
526
|
+
"describe": "Create a new list in a folder or space",
|
|
527
|
+
"handler": "./commands/list-create.js#default",
|
|
528
|
+
"flags": [
|
|
529
|
+
{
|
|
530
|
+
"name": "folder",
|
|
531
|
+
"type": "string",
|
|
532
|
+
"description": "Folder ID (use instead of --space)"
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
"name": "space",
|
|
536
|
+
"type": "string",
|
|
537
|
+
"description": "Space ID for folderless list"
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
"name": "name",
|
|
541
|
+
"type": "string",
|
|
542
|
+
"description": "List name (required)"
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
"name": "json",
|
|
546
|
+
"type": "boolean",
|
|
547
|
+
"description": "Output JSON (slim by default)"
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
"name": "full",
|
|
551
|
+
"type": "boolean",
|
|
552
|
+
"description": "Output full raw JSON (requires --json)"
|
|
553
|
+
}
|
|
554
|
+
],
|
|
555
|
+
"examples": [
|
|
556
|
+
"kb clickup list create --folder folderId --name \"Backlog\"",
|
|
557
|
+
"kb clickup list create --space spaceId --name \"Inbox\""
|
|
558
|
+
]
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
"path": "clickup list update",
|
|
562
|
+
"category": "Lists",
|
|
563
|
+
"operationType": "mutate",
|
|
564
|
+
"describe": "Update a list",
|
|
565
|
+
"handler": "./commands/list-update.js#default",
|
|
566
|
+
"flags": [
|
|
567
|
+
{
|
|
568
|
+
"name": "name",
|
|
569
|
+
"type": "string",
|
|
570
|
+
"description": "New list name"
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"name": "json",
|
|
574
|
+
"type": "boolean",
|
|
575
|
+
"description": "Output JSON (slim by default)"
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
"name": "full",
|
|
579
|
+
"type": "boolean",
|
|
580
|
+
"description": "Output full raw JSON (requires --json)"
|
|
581
|
+
}
|
|
582
|
+
],
|
|
583
|
+
"examples": [
|
|
584
|
+
"kb clickup list update listId --name \"Sprint 5\""
|
|
585
|
+
]
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"path": "clickup list delete",
|
|
589
|
+
"category": "Lists",
|
|
590
|
+
"operationType": "mutate",
|
|
591
|
+
"describe": "Delete a list",
|
|
592
|
+
"handler": "./commands/list-delete.js#default",
|
|
593
|
+
"flags": [
|
|
594
|
+
{
|
|
595
|
+
"name": "force",
|
|
596
|
+
"type": "boolean",
|
|
597
|
+
"description": "Skip confirmation"
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
"name": "json",
|
|
601
|
+
"type": "boolean",
|
|
602
|
+
"description": "Output raw JSON"
|
|
603
|
+
}
|
|
604
|
+
],
|
|
605
|
+
"examples": [
|
|
606
|
+
"kb clickup list delete listId --force"
|
|
607
|
+
]
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
"path": "clickup list tasks",
|
|
611
|
+
"category": "Lists",
|
|
612
|
+
"operationType": "read",
|
|
613
|
+
"describe": "List tasks in a specific list",
|
|
614
|
+
"handler": "./commands/list-tasks.js#default",
|
|
615
|
+
"flags": [
|
|
616
|
+
{
|
|
617
|
+
"name": "status",
|
|
618
|
+
"type": "string",
|
|
619
|
+
"description": "Filter by status (comma-separated)"
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"name": "assignee",
|
|
623
|
+
"type": "string",
|
|
624
|
+
"description": "Filter by user IDs (comma-separated)"
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
"name": "limit",
|
|
628
|
+
"type": "number",
|
|
629
|
+
"description": "Max results",
|
|
630
|
+
"default": 50
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"name": "page",
|
|
634
|
+
"type": "number",
|
|
635
|
+
"description": "Page number",
|
|
636
|
+
"default": 0
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
"name": "closed",
|
|
640
|
+
"type": "boolean",
|
|
641
|
+
"description": "Include closed tasks"
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
"name": "json",
|
|
645
|
+
"type": "boolean",
|
|
646
|
+
"description": "Output JSON (slim by default)"
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
"name": "full",
|
|
650
|
+
"type": "boolean",
|
|
651
|
+
"description": "Output full raw JSON (requires --json)"
|
|
652
|
+
}
|
|
653
|
+
],
|
|
654
|
+
"examples": [
|
|
655
|
+
"kb clickup list tasks listId123",
|
|
656
|
+
"kb clickup list tasks listId123 --status \"open\" --json"
|
|
657
|
+
]
|
|
658
|
+
},
|
|
659
|
+
{
|
|
660
|
+
"path": "clickup list statuses",
|
|
661
|
+
"category": "Lists",
|
|
662
|
+
"operationType": "read",
|
|
663
|
+
"describe": "List available statuses for a list",
|
|
664
|
+
"handler": "./commands/list-statuses.js#default",
|
|
665
|
+
"flags": [
|
|
666
|
+
{
|
|
667
|
+
"name": "json",
|
|
668
|
+
"type": "boolean",
|
|
669
|
+
"description": "Output JSON (slim by default)"
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
"name": "full",
|
|
673
|
+
"type": "boolean",
|
|
674
|
+
"description": "Output full raw JSON (requires --json)"
|
|
675
|
+
}
|
|
676
|
+
],
|
|
677
|
+
"examples": [
|
|
678
|
+
"kb clickup list statuses listId123",
|
|
679
|
+
"kb clickup list statuses listId123 --json"
|
|
680
|
+
]
|
|
681
|
+
}
|
|
682
|
+
]
|
|
683
|
+
},
|
|
684
|
+
"rest": {
|
|
685
|
+
"basePath": "/v1/plugins/clickup",
|
|
686
|
+
"routes": [
|
|
687
|
+
{
|
|
688
|
+
"method": "GET",
|
|
689
|
+
"path": "/workspace",
|
|
690
|
+
"handler": "./rest/handlers/workspace-handler.js#default"
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"method": "GET",
|
|
694
|
+
"path": "/tasks/search",
|
|
695
|
+
"handler": "./rest/handlers/search-handler.js#default"
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
"method": "GET",
|
|
699
|
+
"path": "/tasks/:taskId",
|
|
700
|
+
"handler": "./rest/handlers/task-get-handler.js#default"
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"method": "POST",
|
|
704
|
+
"path": "/lists/:listId/tasks",
|
|
705
|
+
"handler": "./rest/handlers/task-create-handler.js#default",
|
|
706
|
+
"input": {
|
|
707
|
+
"zod": "@kb-labs/clickup-contracts#CreateTaskSchema"
|
|
708
|
+
}
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
"method": "PATCH",
|
|
712
|
+
"path": "/tasks/:taskId",
|
|
713
|
+
"handler": "./rest/handlers/task-update-handler.js#default",
|
|
714
|
+
"input": {
|
|
715
|
+
"zod": "@kb-labs/clickup-contracts#UpdateTaskSchema"
|
|
716
|
+
}
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
"method": "DELETE",
|
|
720
|
+
"path": "/tasks/:taskId",
|
|
721
|
+
"handler": "./rest/handlers/task-delete-handler.js#default"
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"method": "GET",
|
|
725
|
+
"path": "/lists/:listId/tasks",
|
|
726
|
+
"handler": "./rest/handlers/list-tasks-handler.js#default"
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
"method": "GET",
|
|
730
|
+
"path": "/lists/:listId/statuses",
|
|
731
|
+
"handler": "./rest/handlers/list-statuses-handler.js#default"
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
"method": "GET",
|
|
735
|
+
"path": "/tasks/:taskId/comments",
|
|
736
|
+
"handler": "./rest/handlers/task-comments-handler.js#default"
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
"method": "POST",
|
|
740
|
+
"path": "/tasks/:taskId/comments",
|
|
741
|
+
"handler": "./rest/handlers/task-comment-add-handler.js#default",
|
|
742
|
+
"input": {
|
|
743
|
+
"zod": "@kb-labs/clickup-contracts#AddCommentSchema"
|
|
744
|
+
}
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"method": "POST",
|
|
748
|
+
"path": "/spaces",
|
|
749
|
+
"handler": "./rest/handlers/space-create-handler.js#default",
|
|
750
|
+
"input": {
|
|
751
|
+
"zod": "@kb-labs/clickup-contracts#CreateSpaceSchema"
|
|
752
|
+
}
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
"method": "PATCH",
|
|
756
|
+
"path": "/spaces/:spaceId",
|
|
757
|
+
"handler": "./rest/handlers/space-update-handler.js#default",
|
|
758
|
+
"input": {
|
|
759
|
+
"zod": "@kb-labs/clickup-contracts#UpdateSpaceSchema"
|
|
760
|
+
}
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"method": "DELETE",
|
|
764
|
+
"path": "/spaces/:spaceId",
|
|
765
|
+
"handler": "./rest/handlers/space-delete-handler.js#default"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"method": "POST",
|
|
769
|
+
"path": "/spaces/:spaceId/folders",
|
|
770
|
+
"handler": "./rest/handlers/folder-create-handler.js#default",
|
|
771
|
+
"input": {
|
|
772
|
+
"zod": "@kb-labs/clickup-contracts#CreateFolderSchema"
|
|
773
|
+
}
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
"method": "PATCH",
|
|
777
|
+
"path": "/folders/:folderId",
|
|
778
|
+
"handler": "./rest/handlers/folder-update-handler.js#default",
|
|
779
|
+
"input": {
|
|
780
|
+
"zod": "@kb-labs/clickup-contracts#UpdateFolderSchema"
|
|
781
|
+
}
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
"method": "DELETE",
|
|
785
|
+
"path": "/folders/:folderId",
|
|
786
|
+
"handler": "./rest/handlers/folder-delete-handler.js#default"
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
"method": "POST",
|
|
790
|
+
"path": "/folders/:folderId/lists",
|
|
791
|
+
"handler": "./rest/handlers/list-create-handler.js#default",
|
|
792
|
+
"input": {
|
|
793
|
+
"zod": "@kb-labs/clickup-contracts#CreateListSchema"
|
|
794
|
+
}
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
"method": "POST",
|
|
798
|
+
"path": "/spaces/:spaceId/lists",
|
|
799
|
+
"handler": "./rest/handlers/list-create-handler.js#default",
|
|
800
|
+
"input": {
|
|
801
|
+
"zod": "@kb-labs/clickup-contracts#CreateListSchema"
|
|
802
|
+
}
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"method": "PATCH",
|
|
806
|
+
"path": "/lists/:listId",
|
|
807
|
+
"handler": "./rest/handlers/list-update-handler.js#default",
|
|
808
|
+
"input": {
|
|
809
|
+
"zod": "@kb-labs/clickup-contracts#UpdateListSchema"
|
|
810
|
+
}
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"method": "DELETE",
|
|
814
|
+
"path": "/lists/:listId",
|
|
815
|
+
"handler": "./rest/handlers/list-delete-handler.js#default"
|
|
816
|
+
}
|
|
817
|
+
]
|
|
818
|
+
}
|
|
819
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kb-labs/clickup-entry",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.106.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "V3 manifest + CLI handlers for clickup",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -22,33 +22,33 @@
|
|
|
22
22
|
"dist"
|
|
23
23
|
],
|
|
24
24
|
"sideEffects": false,
|
|
25
|
+
"scripts": {
|
|
26
|
+
"clean": "rimraf dist",
|
|
27
|
+
"build": "tsup",
|
|
28
|
+
"dev": "tsup --watch",
|
|
29
|
+
"lint": "eslint src --ext .ts",
|
|
30
|
+
"lint:fix": "eslint . --fix",
|
|
31
|
+
"type-check": "tsc --noEmit",
|
|
32
|
+
"test": "vitest run --passWithNoTests",
|
|
33
|
+
"test:cli": "vitest run --config vitest.cli.config.ts --passWithNoTests"
|
|
34
|
+
},
|
|
25
35
|
"dependencies": {
|
|
26
|
-
"@kb-labs/
|
|
27
|
-
"@kb-labs/
|
|
28
|
-
"@kb-labs/
|
|
29
|
-
"@kb-labs/
|
|
36
|
+
"@kb-labs/clickup-core": "^2.106.0",
|
|
37
|
+
"@kb-labs/clickup-contracts": "^2.106.0",
|
|
38
|
+
"@kb-labs/sdk": "workspace:*",
|
|
39
|
+
"@kb-labs/shared-command-kit": "^2.106.0"
|
|
30
40
|
},
|
|
31
41
|
"devDependencies": {
|
|
42
|
+
"@kb-labs/devkit": "workspace:*",
|
|
43
|
+
"@kb-labs/shared-testing-e2e": "workspace:*",
|
|
32
44
|
"@types/node": "^24.0.0",
|
|
33
45
|
"rimraf": "^6.0.1",
|
|
34
46
|
"tsup": "^8.5.0",
|
|
35
47
|
"typescript": "^5.6.3",
|
|
36
|
-
"vitest": "^3.2.6"
|
|
37
|
-
"@kb-labs/devkit": "2.104.0",
|
|
38
|
-
"@kb-labs/shared-testing-e2e": "2.104.0"
|
|
48
|
+
"vitest": "^3.2.6"
|
|
39
49
|
},
|
|
40
50
|
"engines": {
|
|
41
51
|
"node": ">=20.0.0",
|
|
42
52
|
"pnpm": ">=9.0.0"
|
|
43
|
-
},
|
|
44
|
-
"scripts": {
|
|
45
|
-
"clean": "rimraf dist",
|
|
46
|
-
"build": "tsup",
|
|
47
|
-
"dev": "tsup --watch",
|
|
48
|
-
"lint": "eslint src --ext .ts",
|
|
49
|
-
"lint:fix": "eslint . --fix",
|
|
50
|
-
"type-check": "tsc --noEmit",
|
|
51
|
-
"test": "vitest run --passWithNoTests",
|
|
52
|
-
"test:cli": "vitest run --config vitest.cli.config.ts --passWithNoTests"
|
|
53
53
|
}
|
|
54
|
-
}
|
|
54
|
+
}
|