archal 0.9.19 → 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 +256 -22
  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 +306 -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 +437 -0
  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 +150299 -87430
  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-L36NXAU6.js → commands/autoloop-result-parser.cjs} +16445 -18852
  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 +6011 -75261
  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 +792 -34359
  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 +8 -3
  81. package/skills/archal-agent/SKILL.md +87 -0
  82. package/skills/{attach → autoloop}/SKILL.md +94 -120
  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 +73 -5
  88. package/skills/scenario/SKILL.md +19 -4
  89. package/skills/seed/SKILL.md +237 -0
  90. package/dist/seed/dynamic-generator.cjs +0 -45687
  91. package/dist/seed/dynamic-generator.d.cts +0 -106
  92. package/dist/vitest/chunk-WZ7SA4CK.js +0 -47369
@@ -0,0 +1,999 @@
1
+ {
2
+ "clone": "gitlab",
3
+ "tools": [
4
+ {
5
+ "name": "get_current_user",
6
+ "description": "Returns the authenticated GitLab user.",
7
+ "inputSchema": {
8
+ "type": "object",
9
+ "properties": {},
10
+ "additionalProperties": false
11
+ },
12
+ "hidden": false
13
+ },
14
+ {
15
+ "name": "get_project",
16
+ "description": "Returns a single project by id.",
17
+ "inputSchema": {
18
+ "type": "object",
19
+ "properties": {
20
+ "projectId": {
21
+ "type": "string"
22
+ }
23
+ },
24
+ "additionalProperties": false
25
+ },
26
+ "hidden": false
27
+ },
28
+ {
29
+ "name": "list_branches",
30
+ "description": "Lists branches for a project.",
31
+ "inputSchema": {
32
+ "type": "object",
33
+ "properties": {
34
+ "projectId": {
35
+ "type": "string"
36
+ }
37
+ },
38
+ "additionalProperties": false
39
+ },
40
+ "hidden": false
41
+ },
42
+ {
43
+ "name": "create_branch",
44
+ "description": "Creates a branch.",
45
+ "inputSchema": {
46
+ "type": "object",
47
+ "properties": {
48
+ "projectId": {
49
+ "type": "string"
50
+ },
51
+ "branch": {
52
+ "type": "string"
53
+ },
54
+ "ref": {
55
+ "type": "string"
56
+ }
57
+ },
58
+ "additionalProperties": false
59
+ },
60
+ "hidden": false
61
+ },
62
+ {
63
+ "name": "list_labels",
64
+ "description": "Lists labels.",
65
+ "inputSchema": {
66
+ "type": "object",
67
+ "properties": {
68
+ "projectId": {
69
+ "type": "string"
70
+ }
71
+ },
72
+ "additionalProperties": false
73
+ },
74
+ "hidden": false
75
+ },
76
+ {
77
+ "name": "create_label",
78
+ "description": "Creates a label.",
79
+ "inputSchema": {
80
+ "type": "object",
81
+ "properties": {
82
+ "projectId": {
83
+ "type": "string"
84
+ },
85
+ "name": {
86
+ "type": "string"
87
+ },
88
+ "color": {
89
+ "type": "string"
90
+ },
91
+ "description": {
92
+ "type": "string"
93
+ }
94
+ },
95
+ "additionalProperties": false
96
+ },
97
+ "hidden": false
98
+ },
99
+ {
100
+ "name": "list_milestones",
101
+ "description": "Lists milestones.",
102
+ "inputSchema": {
103
+ "type": "object",
104
+ "properties": {
105
+ "projectId": {
106
+ "type": "string"
107
+ }
108
+ },
109
+ "additionalProperties": false
110
+ },
111
+ "hidden": false
112
+ },
113
+ {
114
+ "name": "create_milestone",
115
+ "description": "Creates a milestone.",
116
+ "inputSchema": {
117
+ "type": "object",
118
+ "properties": {
119
+ "projectId": {
120
+ "type": "string"
121
+ },
122
+ "title": {
123
+ "type": "string"
124
+ },
125
+ "description": {
126
+ "type": "string"
127
+ },
128
+ "due_date": {
129
+ "anyOf": [
130
+ {
131
+ "type": "string"
132
+ },
133
+ {
134
+ "type": "null"
135
+ }
136
+ ]
137
+ },
138
+ "start_date": {
139
+ "anyOf": [
140
+ {
141
+ "type": "string"
142
+ },
143
+ {
144
+ "type": "null"
145
+ }
146
+ ]
147
+ }
148
+ },
149
+ "additionalProperties": false
150
+ },
151
+ "hidden": false
152
+ },
153
+ {
154
+ "name": "delete_milestone",
155
+ "description": "Deletes a milestone by its global id (204 No Content).",
156
+ "inputSchema": {
157
+ "type": "object",
158
+ "properties": {
159
+ "projectId": {
160
+ "type": "string"
161
+ },
162
+ "milestoneId": {
163
+ "type": "string"
164
+ }
165
+ },
166
+ "additionalProperties": false
167
+ },
168
+ "hidden": false
169
+ },
170
+ {
171
+ "name": "list_issues",
172
+ "description": "Lists issues.",
173
+ "inputSchema": {
174
+ "type": "object",
175
+ "properties": {
176
+ "projectId": {
177
+ "type": "string"
178
+ },
179
+ "state": {
180
+ "type": "string"
181
+ }
182
+ },
183
+ "additionalProperties": false
184
+ },
185
+ "hidden": false
186
+ },
187
+ {
188
+ "name": "get_issue",
189
+ "description": "Returns an issue by iid.",
190
+ "inputSchema": {
191
+ "type": "object",
192
+ "properties": {
193
+ "projectId": {
194
+ "type": "string"
195
+ },
196
+ "issueIid": {
197
+ "type": "string"
198
+ }
199
+ },
200
+ "additionalProperties": false
201
+ },
202
+ "hidden": false
203
+ },
204
+ {
205
+ "name": "create_issue",
206
+ "description": "Creates an issue.",
207
+ "inputSchema": {
208
+ "type": "object",
209
+ "properties": {
210
+ "projectId": {
211
+ "type": "string"
212
+ },
213
+ "title": {
214
+ "type": "string"
215
+ },
216
+ "description": {
217
+ "type": "string"
218
+ },
219
+ "labels": {
220
+ "type": "string"
221
+ },
222
+ "confidential": {
223
+ "type": "boolean"
224
+ },
225
+ "issue_type": {
226
+ "type": "string"
227
+ }
228
+ },
229
+ "additionalProperties": false
230
+ },
231
+ "hidden": false
232
+ },
233
+ {
234
+ "name": "update_issue",
235
+ "description": "Updates an issue.",
236
+ "inputSchema": {
237
+ "type": "object",
238
+ "properties": {
239
+ "projectId": {
240
+ "type": "string"
241
+ },
242
+ "issueIid": {
243
+ "type": "string"
244
+ },
245
+ "state_event": {
246
+ "type": "string"
247
+ },
248
+ "labels": {
249
+ "type": "string"
250
+ },
251
+ "title": {
252
+ "type": "string"
253
+ },
254
+ "description": {
255
+ "type": "string"
256
+ }
257
+ },
258
+ "additionalProperties": false
259
+ },
260
+ "hidden": false
261
+ },
262
+ {
263
+ "name": "list_issue_notes",
264
+ "description": "Lists issue notes.",
265
+ "inputSchema": {
266
+ "type": "object",
267
+ "properties": {
268
+ "projectId": {
269
+ "type": "string"
270
+ },
271
+ "issueIid": {
272
+ "type": "string"
273
+ }
274
+ },
275
+ "additionalProperties": false
276
+ },
277
+ "hidden": false
278
+ },
279
+ {
280
+ "name": "create_issue_note",
281
+ "description": "Creates an issue note.",
282
+ "inputSchema": {
283
+ "type": "object",
284
+ "properties": {
285
+ "projectId": {
286
+ "type": "string"
287
+ },
288
+ "issueIid": {
289
+ "type": "string"
290
+ },
291
+ "body": {
292
+ "type": "string"
293
+ }
294
+ },
295
+ "additionalProperties": false
296
+ },
297
+ "hidden": false
298
+ },
299
+ {
300
+ "name": "list_merge_requests",
301
+ "description": "Lists merge requests.",
302
+ "inputSchema": {
303
+ "type": "object",
304
+ "properties": {
305
+ "projectId": {
306
+ "type": "string"
307
+ }
308
+ },
309
+ "additionalProperties": false
310
+ },
311
+ "hidden": false
312
+ },
313
+ {
314
+ "name": "get_merge_request",
315
+ "description": "Returns a merge request by iid.",
316
+ "inputSchema": {
317
+ "type": "object",
318
+ "properties": {
319
+ "projectId": {
320
+ "type": "string"
321
+ },
322
+ "mergeRequestIid": {
323
+ "type": "string"
324
+ }
325
+ },
326
+ "additionalProperties": false
327
+ },
328
+ "hidden": false
329
+ },
330
+ {
331
+ "name": "create_merge_request",
332
+ "description": "Creates a merge request.",
333
+ "inputSchema": {
334
+ "type": "object",
335
+ "properties": {
336
+ "projectId": {
337
+ "type": "string"
338
+ },
339
+ "source_branch": {
340
+ "type": "string"
341
+ },
342
+ "target_branch": {
343
+ "type": "string"
344
+ },
345
+ "title": {
346
+ "type": "string"
347
+ },
348
+ "description": {
349
+ "anyOf": [
350
+ {
351
+ "type": "string"
352
+ },
353
+ {
354
+ "type": "null"
355
+ }
356
+ ]
357
+ }
358
+ },
359
+ "additionalProperties": false
360
+ },
361
+ "hidden": false
362
+ },
363
+ {
364
+ "name": "list_commits",
365
+ "description": "Lists commits for a project.",
366
+ "inputSchema": {
367
+ "type": "object",
368
+ "properties": {
369
+ "projectId": {
370
+ "type": "string"
371
+ }
372
+ },
373
+ "additionalProperties": false
374
+ },
375
+ "hidden": false
376
+ },
377
+ {
378
+ "name": "create_commit",
379
+ "description": "Creates a commit.",
380
+ "inputSchema": {
381
+ "type": "object",
382
+ "properties": {
383
+ "projectId": {
384
+ "type": "string"
385
+ },
386
+ "branch": {
387
+ "type": "string"
388
+ },
389
+ "commit_message": {
390
+ "type": "string"
391
+ },
392
+ "actions": {
393
+ "type": "array",
394
+ "items": {
395
+ "type": "object",
396
+ "properties": {
397
+ "action": {
398
+ "type": "string"
399
+ },
400
+ "file_path": {
401
+ "type": "string"
402
+ },
403
+ "content": {
404
+ "type": "string"
405
+ }
406
+ },
407
+ "required": [
408
+ "action",
409
+ "file_path"
410
+ ],
411
+ "additionalProperties": false
412
+ }
413
+ },
414
+ "start_branch": {
415
+ "type": "string"
416
+ }
417
+ },
418
+ "additionalProperties": false
419
+ },
420
+ "hidden": false
421
+ },
422
+ {
423
+ "name": "list_pipelines",
424
+ "description": "Lists pipelines for a project.",
425
+ "inputSchema": {
426
+ "type": "object",
427
+ "properties": {
428
+ "projectId": {
429
+ "type": "string"
430
+ }
431
+ },
432
+ "additionalProperties": false
433
+ },
434
+ "hidden": false
435
+ },
436
+ {
437
+ "name": "get_pipeline",
438
+ "description": "Returns a single pipeline by id.",
439
+ "inputSchema": {
440
+ "type": "object",
441
+ "properties": {
442
+ "projectId": {
443
+ "type": "string"
444
+ },
445
+ "pipelineId": {
446
+ "type": "string"
447
+ }
448
+ },
449
+ "additionalProperties": false
450
+ },
451
+ "hidden": false
452
+ },
453
+ {
454
+ "name": "list_pipeline_jobs",
455
+ "description": "Lists the jobs of a pipeline.",
456
+ "inputSchema": {
457
+ "type": "object",
458
+ "properties": {
459
+ "projectId": {
460
+ "type": "string"
461
+ },
462
+ "pipelineId": {
463
+ "type": "string"
464
+ }
465
+ },
466
+ "additionalProperties": false
467
+ },
468
+ "hidden": false
469
+ },
470
+ {
471
+ "name": "list_projects",
472
+ "description": "Lists projects the caller is a member of.",
473
+ "inputSchema": {
474
+ "type": "object",
475
+ "properties": {
476
+ "membership": {
477
+ "type": "boolean"
478
+ },
479
+ "search": {
480
+ "type": "string"
481
+ }
482
+ },
483
+ "additionalProperties": false
484
+ },
485
+ "hidden": false
486
+ },
487
+ {
488
+ "name": "update_project",
489
+ "description": "Updates a project name, description, or default branch.",
490
+ "inputSchema": {
491
+ "type": "object",
492
+ "properties": {
493
+ "projectId": {
494
+ "type": "string"
495
+ },
496
+ "name": {
497
+ "type": "string"
498
+ },
499
+ "description": {
500
+ "anyOf": [
501
+ {
502
+ "type": "string"
503
+ },
504
+ {
505
+ "type": "null"
506
+ }
507
+ ]
508
+ },
509
+ "default_branch": {
510
+ "type": "string"
511
+ }
512
+ },
513
+ "additionalProperties": false
514
+ },
515
+ "hidden": false
516
+ },
517
+ {
518
+ "name": "list_tree",
519
+ "description": "Lists files and directories in the repository tree.",
520
+ "inputSchema": {
521
+ "type": "object",
522
+ "properties": {
523
+ "projectId": {
524
+ "type": "string"
525
+ },
526
+ "ref": {
527
+ "type": "string"
528
+ },
529
+ "path": {
530
+ "type": "string"
531
+ }
532
+ },
533
+ "additionalProperties": false
534
+ },
535
+ "hidden": false
536
+ },
537
+ {
538
+ "name": "get_file",
539
+ "description": "Returns a repository file with base64-encoded content.",
540
+ "inputSchema": {
541
+ "type": "object",
542
+ "properties": {
543
+ "projectId": {
544
+ "type": "string"
545
+ },
546
+ "file_path": {
547
+ "type": "string"
548
+ },
549
+ "ref": {
550
+ "type": "string"
551
+ }
552
+ },
553
+ "additionalProperties": false
554
+ },
555
+ "hidden": false
556
+ },
557
+ {
558
+ "name": "compare_refs",
559
+ "description": "Compares two branches, tags, or commits.",
560
+ "inputSchema": {
561
+ "type": "object",
562
+ "properties": {
563
+ "projectId": {
564
+ "type": "string"
565
+ },
566
+ "from": {
567
+ "type": "string"
568
+ },
569
+ "to": {
570
+ "type": "string"
571
+ }
572
+ },
573
+ "additionalProperties": false
574
+ },
575
+ "hidden": false
576
+ },
577
+ {
578
+ "name": "get_commit",
579
+ "description": "Returns a single commit by SHA.",
580
+ "inputSchema": {
581
+ "type": "object",
582
+ "properties": {
583
+ "projectId": {
584
+ "type": "string"
585
+ },
586
+ "sha": {
587
+ "type": "string"
588
+ }
589
+ },
590
+ "additionalProperties": false
591
+ },
592
+ "hidden": false
593
+ },
594
+ {
595
+ "name": "list_tags",
596
+ "description": "Lists repository tags.",
597
+ "inputSchema": {
598
+ "type": "object",
599
+ "properties": {
600
+ "projectId": {
601
+ "type": "string"
602
+ }
603
+ },
604
+ "additionalProperties": false
605
+ },
606
+ "hidden": false
607
+ },
608
+ {
609
+ "name": "create_tag",
610
+ "description": "Creates a repository tag off a ref.",
611
+ "inputSchema": {
612
+ "type": "object",
613
+ "properties": {
614
+ "projectId": {
615
+ "type": "string"
616
+ },
617
+ "tag_name": {
618
+ "type": "string"
619
+ },
620
+ "ref": {
621
+ "type": "string"
622
+ },
623
+ "message": {
624
+ "type": "string"
625
+ }
626
+ },
627
+ "additionalProperties": false
628
+ },
629
+ "hidden": false
630
+ },
631
+ {
632
+ "name": "list_releases",
633
+ "description": "Lists releases.",
634
+ "inputSchema": {
635
+ "type": "object",
636
+ "properties": {
637
+ "projectId": {
638
+ "type": "string"
639
+ }
640
+ },
641
+ "additionalProperties": false
642
+ },
643
+ "hidden": false
644
+ },
645
+ {
646
+ "name": "create_release",
647
+ "description": "Creates a release off an existing tag.",
648
+ "inputSchema": {
649
+ "type": "object",
650
+ "properties": {
651
+ "projectId": {
652
+ "type": "string"
653
+ },
654
+ "tag_name": {
655
+ "type": "string"
656
+ },
657
+ "name": {
658
+ "type": "string"
659
+ },
660
+ "description": {
661
+ "type": "string"
662
+ }
663
+ },
664
+ "additionalProperties": false
665
+ },
666
+ "hidden": false
667
+ },
668
+ {
669
+ "name": "update_merge_request",
670
+ "description": "Updates an MR title/description or closes/reopens it.",
671
+ "inputSchema": {
672
+ "type": "object",
673
+ "properties": {
674
+ "projectId": {
675
+ "type": "string"
676
+ },
677
+ "mergeRequestIid": {
678
+ "type": "string"
679
+ },
680
+ "title": {
681
+ "type": "string"
682
+ },
683
+ "description": {
684
+ "anyOf": [
685
+ {
686
+ "type": "string"
687
+ },
688
+ {
689
+ "type": "null"
690
+ }
691
+ ]
692
+ },
693
+ "state_event": {
694
+ "type": "string"
695
+ }
696
+ },
697
+ "additionalProperties": false
698
+ },
699
+ "hidden": false
700
+ },
701
+ {
702
+ "name": "merge_merge_request",
703
+ "description": "Merges an MR, minting a merge commit and advancing the target branch.",
704
+ "inputSchema": {
705
+ "type": "object",
706
+ "properties": {
707
+ "projectId": {
708
+ "type": "string"
709
+ },
710
+ "mergeRequestIid": {
711
+ "type": "string"
712
+ }
713
+ },
714
+ "additionalProperties": false
715
+ },
716
+ "hidden": false
717
+ },
718
+ {
719
+ "name": "list_merge_request_notes",
720
+ "description": "Lists notes on a merge request.",
721
+ "inputSchema": {
722
+ "type": "object",
723
+ "properties": {
724
+ "projectId": {
725
+ "type": "string"
726
+ },
727
+ "mergeRequestIid": {
728
+ "type": "string"
729
+ }
730
+ },
731
+ "additionalProperties": false
732
+ },
733
+ "hidden": false
734
+ },
735
+ {
736
+ "name": "create_merge_request_note",
737
+ "description": "Adds a note to a merge request.",
738
+ "inputSchema": {
739
+ "type": "object",
740
+ "properties": {
741
+ "projectId": {
742
+ "type": "string"
743
+ },
744
+ "mergeRequestIid": {
745
+ "type": "string"
746
+ },
747
+ "body": {
748
+ "type": "string"
749
+ }
750
+ },
751
+ "additionalProperties": false
752
+ },
753
+ "hidden": false
754
+ },
755
+ {
756
+ "name": "update_label",
757
+ "description": "Updates a label name, color, description, or priority.",
758
+ "inputSchema": {
759
+ "type": "object",
760
+ "properties": {
761
+ "projectId": {
762
+ "type": "string"
763
+ },
764
+ "labelId": {
765
+ "type": "string"
766
+ },
767
+ "new_name": {
768
+ "type": "string"
769
+ },
770
+ "color": {
771
+ "type": "string"
772
+ },
773
+ "description": {
774
+ "type": "string"
775
+ },
776
+ "priority": {
777
+ "anyOf": [
778
+ {
779
+ "type": "number"
780
+ },
781
+ {
782
+ "type": "null"
783
+ }
784
+ ]
785
+ }
786
+ },
787
+ "additionalProperties": false
788
+ },
789
+ "hidden": false
790
+ },
791
+ {
792
+ "name": "delete_label",
793
+ "description": "Deletes a label (204 No Content).",
794
+ "inputSchema": {
795
+ "type": "object",
796
+ "properties": {
797
+ "projectId": {
798
+ "type": "string"
799
+ },
800
+ "labelId": {
801
+ "type": "string"
802
+ }
803
+ },
804
+ "additionalProperties": false
805
+ },
806
+ "hidden": false
807
+ },
808
+ {
809
+ "name": "delete_issue",
810
+ "description": "Deletes an issue (204 No Content).",
811
+ "inputSchema": {
812
+ "type": "object",
813
+ "properties": {
814
+ "projectId": {
815
+ "type": "string"
816
+ },
817
+ "issueIid": {
818
+ "type": "string"
819
+ }
820
+ },
821
+ "additionalProperties": false
822
+ },
823
+ "hidden": false
824
+ },
825
+ {
826
+ "name": "get_user",
827
+ "description": "Returns a public user profile by id.",
828
+ "inputSchema": {
829
+ "type": "object",
830
+ "properties": {
831
+ "userId": {
832
+ "type": "string"
833
+ }
834
+ },
835
+ "additionalProperties": false
836
+ },
837
+ "hidden": false
838
+ },
839
+ {
840
+ "name": "list_users",
841
+ "description": "Lists users, optionally filtered by username.",
842
+ "inputSchema": {
843
+ "type": "object",
844
+ "properties": {
845
+ "username": {
846
+ "type": "string"
847
+ }
848
+ },
849
+ "additionalProperties": false
850
+ },
851
+ "hidden": false
852
+ },
853
+ {
854
+ "name": "get_group",
855
+ "description": "Returns a group by id or path.",
856
+ "inputSchema": {
857
+ "type": "object",
858
+ "properties": {
859
+ "groupId": {
860
+ "type": "string"
861
+ }
862
+ },
863
+ "additionalProperties": false
864
+ },
865
+ "hidden": false
866
+ },
867
+ {
868
+ "name": "list_webhooks",
869
+ "description": "Lists project webhooks (project hooks).",
870
+ "inputSchema": {
871
+ "type": "object",
872
+ "properties": {
873
+ "projectId": {
874
+ "type": "string"
875
+ }
876
+ },
877
+ "additionalProperties": false
878
+ },
879
+ "hidden": false
880
+ },
881
+ {
882
+ "name": "create_webhook",
883
+ "description": "Registers a project webhook (project hook).",
884
+ "inputSchema": {
885
+ "type": "object",
886
+ "properties": {
887
+ "projectId": {
888
+ "type": "string"
889
+ },
890
+ "url": {
891
+ "type": "string"
892
+ },
893
+ "token": {
894
+ "type": "string"
895
+ },
896
+ "push_events": {
897
+ "anyOf": [
898
+ {
899
+ "type": "boolean"
900
+ },
901
+ {
902
+ "type": "string"
903
+ }
904
+ ]
905
+ },
906
+ "issues_events": {
907
+ "anyOf": [
908
+ {
909
+ "type": "boolean"
910
+ },
911
+ {
912
+ "type": "string"
913
+ }
914
+ ]
915
+ },
916
+ "merge_requests_events": {
917
+ "anyOf": [
918
+ {
919
+ "type": "boolean"
920
+ },
921
+ {
922
+ "type": "string"
923
+ }
924
+ ]
925
+ },
926
+ "note_events": {
927
+ "anyOf": [
928
+ {
929
+ "type": "boolean"
930
+ },
931
+ {
932
+ "type": "string"
933
+ }
934
+ ]
935
+ },
936
+ "tag_push_events": {
937
+ "anyOf": [
938
+ {
939
+ "type": "boolean"
940
+ },
941
+ {
942
+ "type": "string"
943
+ }
944
+ ]
945
+ },
946
+ "pipeline_events": {
947
+ "anyOf": [
948
+ {
949
+ "type": "boolean"
950
+ },
951
+ {
952
+ "type": "string"
953
+ }
954
+ ]
955
+ },
956
+ "releases_events": {
957
+ "anyOf": [
958
+ {
959
+ "type": "boolean"
960
+ },
961
+ {
962
+ "type": "string"
963
+ }
964
+ ]
965
+ },
966
+ "enable_ssl_verification": {
967
+ "anyOf": [
968
+ {
969
+ "type": "boolean"
970
+ },
971
+ {
972
+ "type": "string"
973
+ }
974
+ ]
975
+ }
976
+ },
977
+ "additionalProperties": false
978
+ },
979
+ "hidden": false
980
+ },
981
+ {
982
+ "name": "delete_webhook",
983
+ "description": "Deletes a project webhook (204 No Content).",
984
+ "inputSchema": {
985
+ "type": "object",
986
+ "properties": {
987
+ "projectId": {
988
+ "type": "string"
989
+ },
990
+ "hookId": {
991
+ "type": "string"
992
+ }
993
+ },
994
+ "additionalProperties": false
995
+ },
996
+ "hidden": false
997
+ }
998
+ ]
999
+ }