archal 0.9.18 → 0.9.20

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.
Files changed (92) hide show
  1. package/README.md +9 -1
  2. package/agents/github-octokit/.archal.json +8 -0
  3. package/agents/github-octokit/Dockerfile +8 -0
  4. package/agents/github-octokit/README.md +113 -0
  5. package/agents/github-octokit/agent.mjs +54 -0
  6. package/agents/github-octokit/package.json +9 -0
  7. package/agents/github-octokit/scenarios/test-repo-access.md +27 -0
  8. package/agents/google-workspace-local-tools/Dockerfile +6 -0
  9. package/agents/google-workspace-local-tools/README.md +58 -0
  10. package/agents/google-workspace-local-tools/agent.mjs +196 -0
  11. package/agents/google-workspace-local-tools/archal-harness.json +7 -0
  12. package/agents/google-workspace-local-tools/run-input.yaml +16 -0
  13. package/agents/google-workspace-local-tools/scenario.md +29 -0
  14. package/agents/hermes/.archal.json +8 -0
  15. package/agents/hermes/Dockerfile +46 -0
  16. package/agents/hermes/README.md +87 -0
  17. package/agents/hermes/SOUL.md +27 -0
  18. package/agents/hermes/config.yaml +34 -0
  19. package/agents/hermes/drive.mjs +113 -0
  20. package/agents/hermes/scenarios/stripe-customers-read-only.md +32 -0
  21. package/agents/openclaw/.archal.json +8 -0
  22. package/agents/openclaw/Dockerfile +96 -0
  23. package/agents/openclaw/README.md +120 -0
  24. package/agents/openclaw/drive.mjs +311 -0
  25. package/agents/openclaw/package.json +9 -0
  26. package/agents/openclaw/scenarios/github-issue-triage-read-only.md +44 -0
  27. package/agents/openclaw/workspace/AGENTS.md +23 -0
  28. package/agents/openclaw/workspace/IDENTITY.md +8 -0
  29. package/agents/openclaw/workspace/SOUL.md +14 -0
  30. package/agents/openclaw/workspace/TOOLS.md +35 -0
  31. package/agents/pagination-test/README.md +24 -0
  32. package/agents/pagination-test/scenario.md +24 -0
  33. package/agents/replay-capsule-harness/README.md +29 -0
  34. package/agents/replay-capsule-harness/observability-install-offline-e2e.mts +1517 -0
  35. package/agents/replay-capsule-harness/replay-capsule-e2e.mjs +104 -0
  36. package/clone-assets/apify/tools.json +213 -13
  37. package/clone-assets/calcom/tools.json +510 -0
  38. package/clone-assets/clickup/tools.json +1258 -0
  39. package/clone-assets/customerio/tools.json +386 -0
  40. package/clone-assets/datadog/tools.json +734 -0
  41. package/clone-assets/github/tools.json +312 -25
  42. package/clone-assets/gitlab/tools.json +999 -0
  43. package/clone-assets/google-workspace/tools.json +18 -6
  44. package/clone-assets/hubspot/tools.json +1406 -0
  45. package/clone-assets/jira/fidelity.json +1 -1
  46. package/clone-assets/jira/tools.json +266 -543
  47. package/clone-assets/linear/tools.json +238 -40
  48. package/clone-assets/ownerrez/tools.json +548 -0
  49. package/clone-assets/pricelabs/tools.json +343 -0
  50. package/clone-assets/sentry/tools.json +745 -0
  51. package/clone-assets/slack/tools.json +1 -2
  52. package/clone-assets/stripe/tools.json +185 -46
  53. package/clone-assets/supabase/tools.json +511 -14
  54. package/clone-assets/unipile/tools.json +408 -0
  55. package/clone-assets/webflow/tools.json +415 -0
  56. package/dist/autoloop-worker-types-BEb_E44z.d.cts +196 -0
  57. package/dist/cli.cjs +151033 -75282
  58. package/dist/commands/autoloop-hosted-worker.cjs +43942 -0
  59. package/dist/commands/autoloop-hosted-worker.d.cts +143 -0
  60. package/dist/commands/autoloop-pr-verification.cjs +4227 -0
  61. package/dist/commands/autoloop-pr-verification.d.cts +17 -0
  62. package/dist/{vitest/chunk-IVXSSEYS.js → commands/autoloop-result-parser.cjs} +16515 -18857
  63. package/dist/commands/autoloop-result-parser.d.cts +39 -0
  64. package/dist/commands/autoloop-worker.cjs +36163 -0
  65. package/dist/commands/autoloop-worker.d.cts +97 -0
  66. package/dist/harness.cjs +1 -0
  67. package/dist/index.cjs +1 -1
  68. package/dist/replay.cjs +49624 -0
  69. package/dist/replay.d.cts +4625 -0
  70. package/dist/scenarios.cjs +80343 -0
  71. package/dist/scenarios.d.cts +562 -0
  72. package/dist/vitest/chunk-6CBYFCFK.js +4667 -0
  73. package/dist/vitest/chunk-ARVS45PP.js +2764 -0
  74. package/dist/vitest/index.cjs +6079 -75089
  75. package/dist/vitest/index.d.ts +7 -6
  76. package/dist/vitest/index.js +8 -8
  77. package/dist/vitest/runtime/hosted-session-reaper.cjs +801 -34187
  78. package/dist/vitest/runtime/hosted-session-reaper.js +1 -1
  79. package/dist/vitest/runtime/setup-files.js +2 -2
  80. package/package.json +14 -9
  81. package/skills/archal-agent/SKILL.md +87 -0
  82. package/skills/autoloop/SKILL.md +376 -0
  83. package/skills/autoloop/references/hosted-sources.md +62 -0
  84. package/skills/autoloop/references/trace-schema-mapping.md +73 -0
  85. package/skills/eval/SKILL.md +35 -1
  86. package/skills/install-agent/SKILL.md +221 -0
  87. package/skills/onboard/SKILL.md +80 -0
  88. package/skills/scenario/SKILL.md +19 -4
  89. package/skills/seed/SKILL.md +237 -0
  90. package/dist/seed/dynamic-generator.cjs +0 -45564
  91. package/dist/seed/dynamic-generator.d.cts +0 -106
  92. package/dist/vitest/chunk-CTSN67QR.js +0 -47188
@@ -0,0 +1,1258 @@
1
+ {
2
+ "clone": "clickup",
3
+ "tools": [
4
+ {
5
+ "name": "get_user",
6
+ "description": "Get the authenticated user.",
7
+ "inputSchema": {
8
+ "type": "object",
9
+ "properties": {},
10
+ "additionalProperties": false
11
+ },
12
+ "hidden": false,
13
+ "annotations": {
14
+ "readOnlyHint": true
15
+ }
16
+ },
17
+ {
18
+ "name": "get_teams",
19
+ "description": "List all teams (workspaces) accessible to the user.",
20
+ "inputSchema": {
21
+ "type": "object",
22
+ "properties": {},
23
+ "additionalProperties": false
24
+ },
25
+ "hidden": false,
26
+ "annotations": {
27
+ "readOnlyHint": true
28
+ }
29
+ },
30
+ {
31
+ "name": "get_filtered_team_tasks",
32
+ "description": "List tasks across a team, filtered by statuses/assignees and paged.",
33
+ "inputSchema": {
34
+ "type": "object",
35
+ "properties": {
36
+ "team_id": {
37
+ "type": "string"
38
+ },
39
+ "page": {
40
+ "type": "integer",
41
+ "minimum": 0,
42
+ "maximum": 9007199254740991
43
+ },
44
+ "statuses": {
45
+ "type": "array",
46
+ "items": {
47
+ "type": "string"
48
+ }
49
+ },
50
+ "assignees": {
51
+ "type": "array",
52
+ "items": {
53
+ "anyOf": [
54
+ {
55
+ "type": "string"
56
+ },
57
+ {
58
+ "type": "number"
59
+ }
60
+ ]
61
+ }
62
+ },
63
+ "include_closed": {
64
+ "anyOf": [
65
+ {
66
+ "type": "boolean"
67
+ },
68
+ {
69
+ "type": "string"
70
+ }
71
+ ]
72
+ },
73
+ "archived": {
74
+ "anyOf": [
75
+ {
76
+ "type": "boolean"
77
+ },
78
+ {
79
+ "type": "string"
80
+ }
81
+ ]
82
+ }
83
+ },
84
+ "required": [
85
+ "team_id"
86
+ ],
87
+ "additionalProperties": false
88
+ },
89
+ "hidden": false,
90
+ "annotations": {
91
+ "readOnlyHint": true
92
+ }
93
+ },
94
+ {
95
+ "name": "get_goals",
96
+ "description": "List goals in a team.",
97
+ "inputSchema": {
98
+ "type": "object",
99
+ "properties": {
100
+ "team_id": {
101
+ "type": "string"
102
+ },
103
+ "include_completed": {
104
+ "anyOf": [
105
+ {
106
+ "type": "boolean"
107
+ },
108
+ {
109
+ "type": "string"
110
+ }
111
+ ]
112
+ }
113
+ },
114
+ "required": [
115
+ "team_id"
116
+ ],
117
+ "additionalProperties": false
118
+ },
119
+ "hidden": false,
120
+ "annotations": {
121
+ "readOnlyHint": true
122
+ }
123
+ },
124
+ {
125
+ "name": "get_spaces",
126
+ "description": "List spaces in a team.",
127
+ "inputSchema": {
128
+ "type": "object",
129
+ "properties": {
130
+ "team_id": {
131
+ "type": "string"
132
+ }
133
+ },
134
+ "required": [
135
+ "team_id"
136
+ ],
137
+ "additionalProperties": false
138
+ },
139
+ "hidden": false,
140
+ "annotations": {
141
+ "readOnlyHint": true
142
+ }
143
+ },
144
+ {
145
+ "name": "get_space",
146
+ "description": "Get a single space by id.",
147
+ "inputSchema": {
148
+ "type": "object",
149
+ "properties": {
150
+ "space_id": {
151
+ "type": "string"
152
+ }
153
+ },
154
+ "required": [
155
+ "space_id"
156
+ ],
157
+ "additionalProperties": false
158
+ },
159
+ "hidden": false,
160
+ "annotations": {
161
+ "readOnlyHint": true
162
+ }
163
+ },
164
+ {
165
+ "name": "create_space",
166
+ "description": "Create a space in a team.",
167
+ "inputSchema": {
168
+ "type": "object",
169
+ "properties": {
170
+ "team_id": {
171
+ "type": "string"
172
+ },
173
+ "name": {
174
+ "type": "string"
175
+ },
176
+ "multiple_assignees": {
177
+ "type": "boolean"
178
+ },
179
+ "private": {
180
+ "type": "boolean"
181
+ },
182
+ "features": {
183
+ "type": "object",
184
+ "propertyNames": {
185
+ "type": "string"
186
+ },
187
+ "additionalProperties": {}
188
+ },
189
+ "statuses": {
190
+ "type": "array",
191
+ "items": {
192
+ "type": "object",
193
+ "properties": {
194
+ "status": {
195
+ "type": "string"
196
+ },
197
+ "type": {
198
+ "type": "string"
199
+ },
200
+ "color": {
201
+ "type": "string"
202
+ },
203
+ "orderindex": {
204
+ "type": "number"
205
+ }
206
+ },
207
+ "required": [
208
+ "status"
209
+ ],
210
+ "additionalProperties": false
211
+ }
212
+ }
213
+ },
214
+ "required": [
215
+ "team_id",
216
+ "name"
217
+ ],
218
+ "additionalProperties": false
219
+ },
220
+ "hidden": false
221
+ },
222
+ {
223
+ "name": "update_space",
224
+ "description": "Update an existing space.",
225
+ "inputSchema": {
226
+ "type": "object",
227
+ "properties": {
228
+ "space_id": {
229
+ "type": "string"
230
+ },
231
+ "name": {
232
+ "type": "string"
233
+ },
234
+ "multiple_assignees": {
235
+ "type": "boolean"
236
+ },
237
+ "private": {
238
+ "type": "boolean"
239
+ },
240
+ "admin_can_manage": {
241
+ "type": "boolean"
242
+ }
243
+ },
244
+ "required": [
245
+ "space_id"
246
+ ],
247
+ "additionalProperties": false
248
+ },
249
+ "hidden": false
250
+ },
251
+ {
252
+ "name": "delete_space",
253
+ "description": "Delete a space.",
254
+ "inputSchema": {
255
+ "type": "object",
256
+ "properties": {
257
+ "space_id": {
258
+ "type": "string"
259
+ }
260
+ },
261
+ "required": [
262
+ "space_id"
263
+ ],
264
+ "additionalProperties": false
265
+ },
266
+ "hidden": false
267
+ },
268
+ {
269
+ "name": "get_folders",
270
+ "description": "List folders in a space.",
271
+ "inputSchema": {
272
+ "type": "object",
273
+ "properties": {
274
+ "space_id": {
275
+ "type": "string"
276
+ }
277
+ },
278
+ "required": [
279
+ "space_id"
280
+ ],
281
+ "additionalProperties": false
282
+ },
283
+ "hidden": false,
284
+ "annotations": {
285
+ "readOnlyHint": true
286
+ }
287
+ },
288
+ {
289
+ "name": "get_folder",
290
+ "description": "Get a single folder by id.",
291
+ "inputSchema": {
292
+ "type": "object",
293
+ "properties": {
294
+ "folder_id": {
295
+ "type": "string"
296
+ }
297
+ },
298
+ "required": [
299
+ "folder_id"
300
+ ],
301
+ "additionalProperties": false
302
+ },
303
+ "hidden": false,
304
+ "annotations": {
305
+ "readOnlyHint": true
306
+ }
307
+ },
308
+ {
309
+ "name": "create_folder",
310
+ "description": "Create a folder in a space.",
311
+ "inputSchema": {
312
+ "type": "object",
313
+ "properties": {
314
+ "space_id": {
315
+ "type": "string"
316
+ },
317
+ "name": {
318
+ "type": "string"
319
+ }
320
+ },
321
+ "required": [
322
+ "space_id",
323
+ "name"
324
+ ],
325
+ "additionalProperties": false
326
+ },
327
+ "hidden": false
328
+ },
329
+ {
330
+ "name": "update_folder",
331
+ "description": "Update an existing folder.",
332
+ "inputSchema": {
333
+ "type": "object",
334
+ "properties": {
335
+ "folder_id": {
336
+ "type": "string"
337
+ },
338
+ "name": {
339
+ "type": "string"
340
+ }
341
+ },
342
+ "required": [
343
+ "folder_id",
344
+ "name"
345
+ ],
346
+ "additionalProperties": false
347
+ },
348
+ "hidden": false
349
+ },
350
+ {
351
+ "name": "delete_folder",
352
+ "description": "Delete a folder.",
353
+ "inputSchema": {
354
+ "type": "object",
355
+ "properties": {
356
+ "folder_id": {
357
+ "type": "string"
358
+ }
359
+ },
360
+ "required": [
361
+ "folder_id"
362
+ ],
363
+ "additionalProperties": false
364
+ },
365
+ "hidden": false
366
+ },
367
+ {
368
+ "name": "get_lists",
369
+ "description": "List lists in a space.",
370
+ "inputSchema": {
371
+ "type": "object",
372
+ "properties": {
373
+ "space_id": {
374
+ "type": "string"
375
+ },
376
+ "archived": {
377
+ "anyOf": [
378
+ {
379
+ "type": "boolean"
380
+ },
381
+ {
382
+ "type": "string"
383
+ }
384
+ ]
385
+ }
386
+ },
387
+ "required": [
388
+ "space_id"
389
+ ],
390
+ "additionalProperties": false
391
+ },
392
+ "hidden": false,
393
+ "annotations": {
394
+ "readOnlyHint": true
395
+ }
396
+ },
397
+ {
398
+ "name": "create_list",
399
+ "description": "Create a folderless list in a space.",
400
+ "inputSchema": {
401
+ "type": "object",
402
+ "properties": {
403
+ "space_id": {
404
+ "type": "string"
405
+ },
406
+ "name": {
407
+ "type": "string"
408
+ },
409
+ "content": {
410
+ "type": "string"
411
+ },
412
+ "due_date": {
413
+ "anyOf": [
414
+ {
415
+ "type": "number"
416
+ },
417
+ {
418
+ "type": "null"
419
+ }
420
+ ]
421
+ },
422
+ "due_date_time": {
423
+ "type": "boolean"
424
+ },
425
+ "priority": {
426
+ "anyOf": [
427
+ {
428
+ "type": "number"
429
+ },
430
+ {
431
+ "type": "null"
432
+ }
433
+ ]
434
+ },
435
+ "assignee": {
436
+ "anyOf": [
437
+ {
438
+ "type": "number"
439
+ },
440
+ {
441
+ "type": "null"
442
+ }
443
+ ]
444
+ },
445
+ "status": {
446
+ "type": "string"
447
+ }
448
+ },
449
+ "required": [
450
+ "space_id",
451
+ "name"
452
+ ],
453
+ "additionalProperties": false
454
+ },
455
+ "hidden": false
456
+ },
457
+ {
458
+ "name": "create_folder_list",
459
+ "description": "Create a list inside a folder.",
460
+ "inputSchema": {
461
+ "type": "object",
462
+ "properties": {
463
+ "folder_id": {
464
+ "type": "string"
465
+ },
466
+ "name": {
467
+ "type": "string"
468
+ },
469
+ "content": {
470
+ "type": "string"
471
+ },
472
+ "due_date": {
473
+ "anyOf": [
474
+ {
475
+ "type": "number"
476
+ },
477
+ {
478
+ "type": "null"
479
+ }
480
+ ]
481
+ },
482
+ "due_date_time": {
483
+ "type": "boolean"
484
+ },
485
+ "priority": {
486
+ "anyOf": [
487
+ {
488
+ "type": "number"
489
+ },
490
+ {
491
+ "type": "null"
492
+ }
493
+ ]
494
+ },
495
+ "assignee": {
496
+ "anyOf": [
497
+ {
498
+ "type": "number"
499
+ },
500
+ {
501
+ "type": "null"
502
+ }
503
+ ]
504
+ },
505
+ "status": {
506
+ "type": "string"
507
+ }
508
+ },
509
+ "required": [
510
+ "folder_id",
511
+ "name"
512
+ ],
513
+ "additionalProperties": false
514
+ },
515
+ "hidden": false
516
+ },
517
+ {
518
+ "name": "get_list",
519
+ "description": "Get a single list by id.",
520
+ "inputSchema": {
521
+ "type": "object",
522
+ "properties": {
523
+ "list_id": {
524
+ "type": "string"
525
+ }
526
+ },
527
+ "required": [
528
+ "list_id"
529
+ ],
530
+ "additionalProperties": false
531
+ },
532
+ "hidden": false,
533
+ "annotations": {
534
+ "readOnlyHint": true
535
+ }
536
+ },
537
+ {
538
+ "name": "update_list",
539
+ "description": "Update an existing list.",
540
+ "inputSchema": {
541
+ "type": "object",
542
+ "properties": {
543
+ "list_id": {
544
+ "type": "string"
545
+ },
546
+ "name": {
547
+ "type": "string"
548
+ },
549
+ "content": {
550
+ "type": "string"
551
+ },
552
+ "due_date": {
553
+ "anyOf": [
554
+ {
555
+ "type": "number"
556
+ },
557
+ {
558
+ "type": "null"
559
+ }
560
+ ]
561
+ },
562
+ "priority": {
563
+ "anyOf": [
564
+ {
565
+ "type": "number"
566
+ },
567
+ {
568
+ "type": "null"
569
+ }
570
+ ]
571
+ },
572
+ "assignee": {
573
+ "anyOf": [
574
+ {
575
+ "type": "number"
576
+ },
577
+ {
578
+ "type": "null"
579
+ }
580
+ ]
581
+ },
582
+ "unset_status": {
583
+ "type": "boolean"
584
+ }
585
+ },
586
+ "required": [
587
+ "list_id"
588
+ ],
589
+ "additionalProperties": false
590
+ },
591
+ "hidden": false
592
+ },
593
+ {
594
+ "name": "delete_list",
595
+ "description": "Delete a list.",
596
+ "inputSchema": {
597
+ "type": "object",
598
+ "properties": {
599
+ "list_id": {
600
+ "type": "string"
601
+ }
602
+ },
603
+ "required": [
604
+ "list_id"
605
+ ],
606
+ "additionalProperties": false
607
+ },
608
+ "hidden": false
609
+ },
610
+ {
611
+ "name": "get_list_members",
612
+ "description": "List members who can access a list.",
613
+ "inputSchema": {
614
+ "type": "object",
615
+ "properties": {
616
+ "list_id": {
617
+ "type": "string"
618
+ }
619
+ },
620
+ "required": [
621
+ "list_id"
622
+ ],
623
+ "additionalProperties": false
624
+ },
625
+ "hidden": false,
626
+ "annotations": {
627
+ "readOnlyHint": true
628
+ }
629
+ },
630
+ {
631
+ "name": "get_accessible_custom_fields",
632
+ "description": "List custom fields accessible from a list.",
633
+ "inputSchema": {
634
+ "type": "object",
635
+ "properties": {
636
+ "list_id": {
637
+ "type": "string"
638
+ }
639
+ },
640
+ "required": [
641
+ "list_id"
642
+ ],
643
+ "additionalProperties": false
644
+ },
645
+ "hidden": false,
646
+ "annotations": {
647
+ "readOnlyHint": true
648
+ }
649
+ },
650
+ {
651
+ "name": "get_tasks",
652
+ "description": "List tasks in a list.",
653
+ "inputSchema": {
654
+ "type": "object",
655
+ "properties": {
656
+ "list_id": {
657
+ "type": "string"
658
+ },
659
+ "archived": {
660
+ "type": "boolean"
661
+ },
662
+ "include_closed": {
663
+ "type": "boolean"
664
+ },
665
+ "order_by": {
666
+ "type": "string"
667
+ },
668
+ "reverse": {
669
+ "type": "boolean"
670
+ },
671
+ "subtasks": {
672
+ "type": "boolean"
673
+ },
674
+ "statuses": {
675
+ "type": "array",
676
+ "items": {
677
+ "type": "string"
678
+ }
679
+ },
680
+ "include_subtasks": {
681
+ "type": "boolean"
682
+ },
683
+ "page": {
684
+ "type": "number"
685
+ }
686
+ },
687
+ "required": [
688
+ "list_id"
689
+ ],
690
+ "additionalProperties": false
691
+ },
692
+ "hidden": false,
693
+ "annotations": {
694
+ "readOnlyHint": true
695
+ }
696
+ },
697
+ {
698
+ "name": "create_task",
699
+ "description": "Create a task in a list.",
700
+ "inputSchema": {
701
+ "type": "object",
702
+ "properties": {
703
+ "list_id": {
704
+ "type": "string"
705
+ },
706
+ "name": {
707
+ "type": "string"
708
+ },
709
+ "description": {
710
+ "type": "string"
711
+ },
712
+ "assignees": {
713
+ "type": "array",
714
+ "items": {
715
+ "type": "number"
716
+ }
717
+ },
718
+ "tags": {
719
+ "type": "array",
720
+ "items": {
721
+ "type": "string"
722
+ }
723
+ },
724
+ "status": {
725
+ "type": "string"
726
+ },
727
+ "priority": {
728
+ "anyOf": [
729
+ {
730
+ "anyOf": [
731
+ {
732
+ "type": "number"
733
+ },
734
+ {
735
+ "type": "string"
736
+ }
737
+ ]
738
+ },
739
+ {
740
+ "type": "null"
741
+ }
742
+ ]
743
+ },
744
+ "due_date": {
745
+ "anyOf": [
746
+ {
747
+ "type": "number"
748
+ },
749
+ {
750
+ "type": "null"
751
+ }
752
+ ]
753
+ },
754
+ "due_date_time": {
755
+ "type": "boolean"
756
+ },
757
+ "time_estimate": {
758
+ "anyOf": [
759
+ {
760
+ "type": "number"
761
+ },
762
+ {
763
+ "type": "null"
764
+ }
765
+ ]
766
+ },
767
+ "start_date": {
768
+ "anyOf": [
769
+ {
770
+ "type": "number"
771
+ },
772
+ {
773
+ "type": "null"
774
+ }
775
+ ]
776
+ },
777
+ "start_date_time": {
778
+ "type": "boolean"
779
+ },
780
+ "notify_all": {
781
+ "type": "boolean"
782
+ },
783
+ "parent": {
784
+ "anyOf": [
785
+ {
786
+ "type": "string"
787
+ },
788
+ {
789
+ "type": "null"
790
+ }
791
+ ]
792
+ },
793
+ "links_to": {
794
+ "anyOf": [
795
+ {
796
+ "type": "string"
797
+ },
798
+ {
799
+ "type": "null"
800
+ }
801
+ ]
802
+ },
803
+ "check_required_custom_fields": {
804
+ "type": "boolean"
805
+ },
806
+ "custom_fields": {
807
+ "type": "array",
808
+ "items": {}
809
+ }
810
+ },
811
+ "required": [
812
+ "list_id",
813
+ "name"
814
+ ],
815
+ "additionalProperties": false
816
+ },
817
+ "hidden": false
818
+ },
819
+ {
820
+ "name": "get_task",
821
+ "description": "Get a single task by id.",
822
+ "inputSchema": {
823
+ "type": "object",
824
+ "properties": {
825
+ "task_id": {
826
+ "type": "string"
827
+ }
828
+ },
829
+ "required": [
830
+ "task_id"
831
+ ],
832
+ "additionalProperties": false
833
+ },
834
+ "hidden": false,
835
+ "annotations": {
836
+ "readOnlyHint": true
837
+ }
838
+ },
839
+ {
840
+ "name": "update_task",
841
+ "description": "Update an existing task (including status transitions).",
842
+ "inputSchema": {
843
+ "type": "object",
844
+ "properties": {
845
+ "task_id": {
846
+ "type": "string"
847
+ },
848
+ "name": {
849
+ "type": "string"
850
+ },
851
+ "description": {
852
+ "type": "string"
853
+ },
854
+ "status": {
855
+ "type": "string"
856
+ },
857
+ "priority": {
858
+ "anyOf": [
859
+ {
860
+ "anyOf": [
861
+ {
862
+ "type": "number"
863
+ },
864
+ {
865
+ "type": "string"
866
+ }
867
+ ]
868
+ },
869
+ {
870
+ "type": "null"
871
+ }
872
+ ]
873
+ },
874
+ "due_date": {
875
+ "anyOf": [
876
+ {
877
+ "type": "number"
878
+ },
879
+ {
880
+ "type": "null"
881
+ }
882
+ ]
883
+ },
884
+ "time_estimate": {
885
+ "anyOf": [
886
+ {
887
+ "type": "number"
888
+ },
889
+ {
890
+ "type": "null"
891
+ }
892
+ ]
893
+ },
894
+ "assignees": {
895
+ "type": "object",
896
+ "properties": {
897
+ "add": {
898
+ "type": "array",
899
+ "items": {
900
+ "type": "number"
901
+ }
902
+ },
903
+ "rem": {
904
+ "type": "array",
905
+ "items": {
906
+ "type": "number"
907
+ }
908
+ }
909
+ },
910
+ "additionalProperties": false
911
+ }
912
+ },
913
+ "required": [
914
+ "task_id"
915
+ ],
916
+ "additionalProperties": false
917
+ },
918
+ "hidden": false
919
+ },
920
+ {
921
+ "name": "delete_task",
922
+ "description": "Delete a task.",
923
+ "inputSchema": {
924
+ "type": "object",
925
+ "properties": {
926
+ "task_id": {
927
+ "type": "string"
928
+ }
929
+ },
930
+ "required": [
931
+ "task_id"
932
+ ],
933
+ "additionalProperties": false
934
+ },
935
+ "hidden": false
936
+ },
937
+ {
938
+ "name": "get_task_members",
939
+ "description": "List members who can access a task.",
940
+ "inputSchema": {
941
+ "type": "object",
942
+ "properties": {
943
+ "task_id": {
944
+ "type": "string"
945
+ }
946
+ },
947
+ "required": [
948
+ "task_id"
949
+ ],
950
+ "additionalProperties": false
951
+ },
952
+ "hidden": false,
953
+ "annotations": {
954
+ "readOnlyHint": true
955
+ }
956
+ },
957
+ {
958
+ "name": "create_task_comment",
959
+ "description": "Create a comment on a task.",
960
+ "inputSchema": {
961
+ "type": "object",
962
+ "properties": {
963
+ "task_id": {
964
+ "type": "string"
965
+ },
966
+ "comment_text": {
967
+ "type": "string"
968
+ },
969
+ "assignee": {
970
+ "anyOf": [
971
+ {
972
+ "type": "number"
973
+ },
974
+ {
975
+ "type": "null"
976
+ }
977
+ ]
978
+ },
979
+ "notify_all": {
980
+ "type": "boolean"
981
+ }
982
+ },
983
+ "required": [
984
+ "task_id",
985
+ "comment_text"
986
+ ],
987
+ "additionalProperties": false
988
+ },
989
+ "hidden": false
990
+ },
991
+ {
992
+ "name": "get_task_comments",
993
+ "description": "List comments on a task.",
994
+ "inputSchema": {
995
+ "type": "object",
996
+ "properties": {
997
+ "task_id": {
998
+ "type": "string"
999
+ },
1000
+ "start_id": {
1001
+ "type": "string"
1002
+ }
1003
+ },
1004
+ "required": [
1005
+ "task_id"
1006
+ ],
1007
+ "additionalProperties": false
1008
+ },
1009
+ "hidden": false,
1010
+ "annotations": {
1011
+ "readOnlyHint": true
1012
+ }
1013
+ },
1014
+ {
1015
+ "name": "get_space_tags",
1016
+ "description": "List tags defined in a space.",
1017
+ "inputSchema": {
1018
+ "type": "object",
1019
+ "properties": {
1020
+ "space_id": {
1021
+ "type": "string"
1022
+ }
1023
+ },
1024
+ "required": [
1025
+ "space_id"
1026
+ ],
1027
+ "additionalProperties": false
1028
+ },
1029
+ "hidden": false,
1030
+ "annotations": {
1031
+ "readOnlyHint": true
1032
+ }
1033
+ },
1034
+ {
1035
+ "name": "create_space_tag",
1036
+ "description": "Create a tag in a space.",
1037
+ "inputSchema": {
1038
+ "type": "object",
1039
+ "properties": {
1040
+ "space_id": {
1041
+ "type": "string"
1042
+ },
1043
+ "tag": {
1044
+ "type": "object",
1045
+ "properties": {
1046
+ "name": {
1047
+ "type": "string"
1048
+ },
1049
+ "tag_fg": {
1050
+ "type": "string"
1051
+ },
1052
+ "tag_bg": {
1053
+ "type": "string"
1054
+ }
1055
+ },
1056
+ "required": [
1057
+ "name"
1058
+ ],
1059
+ "additionalProperties": false
1060
+ }
1061
+ },
1062
+ "required": [
1063
+ "space_id"
1064
+ ],
1065
+ "additionalProperties": false
1066
+ },
1067
+ "hidden": false
1068
+ },
1069
+ {
1070
+ "name": "delete_space_tag",
1071
+ "description": "Delete a tag from a space (idempotent; also removes it from tasks).",
1072
+ "inputSchema": {
1073
+ "type": "object",
1074
+ "properties": {
1075
+ "space_id": {
1076
+ "type": "string"
1077
+ },
1078
+ "tag_name": {
1079
+ "type": "string"
1080
+ }
1081
+ },
1082
+ "required": [
1083
+ "space_id",
1084
+ "tag_name"
1085
+ ],
1086
+ "additionalProperties": false
1087
+ },
1088
+ "hidden": false
1089
+ },
1090
+ {
1091
+ "name": "add_tag_to_task",
1092
+ "description": "Add a tag to a task (auto-creates the tag in the space).",
1093
+ "inputSchema": {
1094
+ "type": "object",
1095
+ "properties": {
1096
+ "task_id": {
1097
+ "type": "string"
1098
+ },
1099
+ "tag_name": {
1100
+ "type": "string"
1101
+ }
1102
+ },
1103
+ "required": [
1104
+ "task_id",
1105
+ "tag_name"
1106
+ ],
1107
+ "additionalProperties": false
1108
+ },
1109
+ "hidden": false
1110
+ },
1111
+ {
1112
+ "name": "remove_tag_from_task",
1113
+ "description": "Remove a tag from a task.",
1114
+ "inputSchema": {
1115
+ "type": "object",
1116
+ "properties": {
1117
+ "task_id": {
1118
+ "type": "string"
1119
+ },
1120
+ "tag_name": {
1121
+ "type": "string"
1122
+ }
1123
+ },
1124
+ "required": [
1125
+ "task_id",
1126
+ "tag_name"
1127
+ ],
1128
+ "additionalProperties": false
1129
+ },
1130
+ "hidden": false
1131
+ },
1132
+ {
1133
+ "name": "get_tracked_time",
1134
+ "description": "List tracked time entries on a task (legacy endpoint).",
1135
+ "inputSchema": {
1136
+ "type": "object",
1137
+ "properties": {
1138
+ "task_id": {
1139
+ "type": "string"
1140
+ }
1141
+ },
1142
+ "required": [
1143
+ "task_id"
1144
+ ],
1145
+ "additionalProperties": false
1146
+ },
1147
+ "hidden": false,
1148
+ "annotations": {
1149
+ "readOnlyHint": true
1150
+ }
1151
+ },
1152
+ {
1153
+ "name": "track_time",
1154
+ "description": "Create a tracked time entry on a task (legacy endpoint).",
1155
+ "inputSchema": {
1156
+ "type": "object",
1157
+ "properties": {
1158
+ "task_id": {
1159
+ "type": "string"
1160
+ },
1161
+ "start": {
1162
+ "type": "number"
1163
+ },
1164
+ "time": {
1165
+ "type": "number"
1166
+ },
1167
+ "end": {
1168
+ "type": "number"
1169
+ }
1170
+ },
1171
+ "required": [
1172
+ "task_id"
1173
+ ],
1174
+ "additionalProperties": false
1175
+ },
1176
+ "hidden": false
1177
+ },
1178
+ {
1179
+ "name": "create_checklist",
1180
+ "description": "Create a checklist on a task.",
1181
+ "inputSchema": {
1182
+ "type": "object",
1183
+ "properties": {
1184
+ "task_id": {
1185
+ "type": "string"
1186
+ },
1187
+ "name": {
1188
+ "type": "string"
1189
+ }
1190
+ },
1191
+ "required": [
1192
+ "task_id",
1193
+ "name"
1194
+ ],
1195
+ "additionalProperties": false
1196
+ },
1197
+ "hidden": false
1198
+ },
1199
+ {
1200
+ "name": "create_checklist_item",
1201
+ "description": "Add an item to a checklist.",
1202
+ "inputSchema": {
1203
+ "type": "object",
1204
+ "properties": {
1205
+ "checklist_id": {
1206
+ "type": "string"
1207
+ },
1208
+ "name": {
1209
+ "type": "string"
1210
+ },
1211
+ "assignee": {
1212
+ "anyOf": [
1213
+ {
1214
+ "type": "number"
1215
+ },
1216
+ {
1217
+ "type": "null"
1218
+ }
1219
+ ]
1220
+ }
1221
+ },
1222
+ "required": [
1223
+ "checklist_id",
1224
+ "name"
1225
+ ],
1226
+ "additionalProperties": false
1227
+ },
1228
+ "hidden": false
1229
+ },
1230
+ {
1231
+ "name": "edit_checklist_item",
1232
+ "description": "Edit a checklist item (rename or resolve).",
1233
+ "inputSchema": {
1234
+ "type": "object",
1235
+ "properties": {
1236
+ "checklist_id": {
1237
+ "type": "string"
1238
+ },
1239
+ "checklist_item_id": {
1240
+ "type": "string"
1241
+ },
1242
+ "name": {
1243
+ "type": "string"
1244
+ },
1245
+ "resolved": {
1246
+ "type": "boolean"
1247
+ }
1248
+ },
1249
+ "required": [
1250
+ "checklist_id",
1251
+ "checklist_item_id"
1252
+ ],
1253
+ "additionalProperties": false
1254
+ },
1255
+ "hidden": false
1256
+ }
1257
+ ]
1258
+ }