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,745 @@
1
+ {
2
+ "clone": "sentry",
3
+ "tools": [
4
+ {
5
+ "name": "list_organizations",
6
+ "description": "List the organizations the authenticated token can access.",
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_organization",
19
+ "description": "Get full detail for one organization (roles, teams, projects, settings).",
20
+ "inputSchema": {
21
+ "type": "object",
22
+ "properties": {
23
+ "organization_id_or_slug": {
24
+ "type": "string"
25
+ }
26
+ },
27
+ "required": [
28
+ "organization_id_or_slug"
29
+ ],
30
+ "additionalProperties": false
31
+ },
32
+ "hidden": false,
33
+ "annotations": {
34
+ "readOnlyHint": true
35
+ }
36
+ },
37
+ {
38
+ "name": "list_organization_members",
39
+ "description": "List the members of an organization.",
40
+ "inputSchema": {
41
+ "type": "object",
42
+ "properties": {
43
+ "organization_id_or_slug": {
44
+ "type": "string"
45
+ }
46
+ },
47
+ "required": [
48
+ "organization_id_or_slug"
49
+ ],
50
+ "additionalProperties": false
51
+ },
52
+ "hidden": false,
53
+ "annotations": {
54
+ "readOnlyHint": true
55
+ }
56
+ },
57
+ {
58
+ "name": "list_projects",
59
+ "description": "List the projects in an organization.",
60
+ "inputSchema": {
61
+ "type": "object",
62
+ "properties": {
63
+ "organization_id_or_slug": {
64
+ "type": "string"
65
+ }
66
+ },
67
+ "required": [
68
+ "organization_id_or_slug"
69
+ ],
70
+ "additionalProperties": false
71
+ },
72
+ "hidden": false,
73
+ "annotations": {
74
+ "readOnlyHint": true
75
+ }
76
+ },
77
+ {
78
+ "name": "get_project",
79
+ "description": "Get a single project by organization and project slug.",
80
+ "inputSchema": {
81
+ "type": "object",
82
+ "properties": {
83
+ "organization_id_or_slug": {
84
+ "type": "string"
85
+ },
86
+ "project_id_or_slug": {
87
+ "type": "string"
88
+ }
89
+ },
90
+ "required": [
91
+ "organization_id_or_slug",
92
+ "project_id_or_slug"
93
+ ],
94
+ "additionalProperties": false
95
+ },
96
+ "hidden": false,
97
+ "annotations": {
98
+ "readOnlyHint": true
99
+ }
100
+ },
101
+ {
102
+ "name": "create_project",
103
+ "description": "Create a project under a team.",
104
+ "inputSchema": {
105
+ "type": "object",
106
+ "properties": {
107
+ "organization_id_or_slug": {
108
+ "type": "string"
109
+ },
110
+ "team_id_or_slug": {
111
+ "type": "string"
112
+ },
113
+ "name": {
114
+ "type": "string"
115
+ },
116
+ "slug": {
117
+ "type": "string"
118
+ },
119
+ "platform": {
120
+ "anyOf": [
121
+ {
122
+ "type": "string"
123
+ },
124
+ {
125
+ "type": "null"
126
+ }
127
+ ]
128
+ }
129
+ },
130
+ "required": [
131
+ "organization_id_or_slug",
132
+ "team_id_or_slug"
133
+ ],
134
+ "additionalProperties": false
135
+ },
136
+ "hidden": false
137
+ },
138
+ {
139
+ "name": "update_project",
140
+ "description": "Update a project: rename, change slug, or change platform.",
141
+ "inputSchema": {
142
+ "type": "object",
143
+ "properties": {
144
+ "organization_id_or_slug": {
145
+ "type": "string"
146
+ },
147
+ "project_id_or_slug": {
148
+ "type": "string"
149
+ },
150
+ "name": {
151
+ "type": "string"
152
+ },
153
+ "slug": {
154
+ "type": "string"
155
+ },
156
+ "platform": {
157
+ "anyOf": [
158
+ {
159
+ "type": "string"
160
+ },
161
+ {
162
+ "type": "null"
163
+ }
164
+ ]
165
+ }
166
+ },
167
+ "required": [
168
+ "organization_id_or_slug",
169
+ "project_id_or_slug"
170
+ ],
171
+ "additionalProperties": false
172
+ },
173
+ "hidden": false
174
+ },
175
+ {
176
+ "name": "delete_project",
177
+ "description": "Delete a project (and its client keys).",
178
+ "inputSchema": {
179
+ "type": "object",
180
+ "properties": {
181
+ "organization_id_or_slug": {
182
+ "type": "string"
183
+ },
184
+ "project_id_or_slug": {
185
+ "type": "string"
186
+ }
187
+ },
188
+ "required": [
189
+ "organization_id_or_slug",
190
+ "project_id_or_slug"
191
+ ],
192
+ "additionalProperties": false
193
+ },
194
+ "hidden": false
195
+ },
196
+ {
197
+ "name": "list_teams",
198
+ "description": "List an organization's teams.",
199
+ "inputSchema": {
200
+ "type": "object",
201
+ "properties": {
202
+ "organization_id_or_slug": {
203
+ "type": "string"
204
+ }
205
+ },
206
+ "required": [
207
+ "organization_id_or_slug"
208
+ ],
209
+ "additionalProperties": false
210
+ },
211
+ "hidden": false,
212
+ "annotations": {
213
+ "readOnlyHint": true
214
+ }
215
+ },
216
+ {
217
+ "name": "get_team",
218
+ "description": "Get a single team by slug.",
219
+ "inputSchema": {
220
+ "type": "object",
221
+ "properties": {
222
+ "organization_id_or_slug": {
223
+ "type": "string"
224
+ },
225
+ "team_id_or_slug": {
226
+ "type": "string"
227
+ }
228
+ },
229
+ "required": [
230
+ "organization_id_or_slug",
231
+ "team_id_or_slug"
232
+ ],
233
+ "additionalProperties": false
234
+ },
235
+ "hidden": false,
236
+ "annotations": {
237
+ "readOnlyHint": true
238
+ }
239
+ },
240
+ {
241
+ "name": "list_team_projects",
242
+ "description": "List the projects owned by a team.",
243
+ "inputSchema": {
244
+ "type": "object",
245
+ "properties": {
246
+ "organization_id_or_slug": {
247
+ "type": "string"
248
+ },
249
+ "team_id_or_slug": {
250
+ "type": "string"
251
+ }
252
+ },
253
+ "required": [
254
+ "organization_id_or_slug",
255
+ "team_id_or_slug"
256
+ ],
257
+ "additionalProperties": false
258
+ },
259
+ "hidden": false,
260
+ "annotations": {
261
+ "readOnlyHint": true
262
+ }
263
+ },
264
+ {
265
+ "name": "create_team",
266
+ "description": "Create a team in an organization.",
267
+ "inputSchema": {
268
+ "type": "object",
269
+ "properties": {
270
+ "organization_id_or_slug": {
271
+ "type": "string"
272
+ },
273
+ "name": {
274
+ "type": "string"
275
+ },
276
+ "slug": {
277
+ "type": "string"
278
+ }
279
+ },
280
+ "required": [
281
+ "organization_id_or_slug"
282
+ ],
283
+ "additionalProperties": false
284
+ },
285
+ "hidden": false
286
+ },
287
+ {
288
+ "name": "delete_team",
289
+ "description": "Delete a team.",
290
+ "inputSchema": {
291
+ "type": "object",
292
+ "properties": {
293
+ "organization_id_or_slug": {
294
+ "type": "string"
295
+ },
296
+ "team_id_or_slug": {
297
+ "type": "string"
298
+ }
299
+ },
300
+ "required": [
301
+ "organization_id_or_slug",
302
+ "team_id_or_slug"
303
+ ],
304
+ "additionalProperties": false
305
+ },
306
+ "hidden": false
307
+ },
308
+ {
309
+ "name": "list_project_keys",
310
+ "description": "List a project's client keys (DSNs).",
311
+ "inputSchema": {
312
+ "type": "object",
313
+ "properties": {
314
+ "organization_id_or_slug": {
315
+ "type": "string"
316
+ },
317
+ "project_id_or_slug": {
318
+ "type": "string"
319
+ }
320
+ },
321
+ "required": [
322
+ "organization_id_or_slug",
323
+ "project_id_or_slug"
324
+ ],
325
+ "additionalProperties": false
326
+ },
327
+ "hidden": false,
328
+ "annotations": {
329
+ "readOnlyHint": true
330
+ }
331
+ },
332
+ {
333
+ "name": "create_project_key",
334
+ "description": "Create a client key (DSN) on a project.",
335
+ "inputSchema": {
336
+ "type": "object",
337
+ "properties": {
338
+ "organization_id_or_slug": {
339
+ "type": "string"
340
+ },
341
+ "project_id_or_slug": {
342
+ "type": "string"
343
+ },
344
+ "name": {
345
+ "type": "string"
346
+ }
347
+ },
348
+ "required": [
349
+ "organization_id_or_slug",
350
+ "project_id_or_slug"
351
+ ],
352
+ "additionalProperties": false
353
+ },
354
+ "hidden": false
355
+ },
356
+ {
357
+ "name": "delete_project_key",
358
+ "description": "Delete a client key (DSN) from a project.",
359
+ "inputSchema": {
360
+ "type": "object",
361
+ "properties": {
362
+ "organization_id_or_slug": {
363
+ "type": "string"
364
+ },
365
+ "project_id_or_slug": {
366
+ "type": "string"
367
+ },
368
+ "key_id": {
369
+ "type": "string"
370
+ }
371
+ },
372
+ "required": [
373
+ "organization_id_or_slug",
374
+ "project_id_or_slug",
375
+ "key_id"
376
+ ],
377
+ "additionalProperties": false
378
+ },
379
+ "hidden": false
380
+ },
381
+ {
382
+ "name": "list_issues",
383
+ "description": "Search an organization's issues. Supports the is:unresolved|resolved|ignored token.",
384
+ "inputSchema": {
385
+ "type": "object",
386
+ "properties": {
387
+ "organization_id_or_slug": {
388
+ "type": "string"
389
+ },
390
+ "query": {
391
+ "type": "string"
392
+ },
393
+ "statsPeriod": {
394
+ "type": "string"
395
+ }
396
+ },
397
+ "required": [
398
+ "organization_id_or_slug"
399
+ ],
400
+ "additionalProperties": false
401
+ },
402
+ "hidden": false,
403
+ "annotations": {
404
+ "readOnlyHint": true
405
+ }
406
+ },
407
+ {
408
+ "name": "get_issue",
409
+ "description": "Get full detail for one issue (group), including tags and activity.",
410
+ "inputSchema": {
411
+ "type": "object",
412
+ "properties": {
413
+ "organization_id_or_slug": {
414
+ "type": "string"
415
+ },
416
+ "issue_id": {
417
+ "type": "string"
418
+ }
419
+ },
420
+ "required": [
421
+ "organization_id_or_slug",
422
+ "issue_id"
423
+ ],
424
+ "additionalProperties": false
425
+ },
426
+ "hidden": false,
427
+ "annotations": {
428
+ "readOnlyHint": true
429
+ }
430
+ },
431
+ {
432
+ "name": "get_latest_event",
433
+ "description": "Get the latest event for an issue, including the stack trace.",
434
+ "inputSchema": {
435
+ "type": "object",
436
+ "properties": {
437
+ "organization_id_or_slug": {
438
+ "type": "string"
439
+ },
440
+ "issue_id": {
441
+ "type": "string"
442
+ }
443
+ },
444
+ "required": [
445
+ "organization_id_or_slug",
446
+ "issue_id"
447
+ ],
448
+ "additionalProperties": false
449
+ },
450
+ "hidden": false,
451
+ "annotations": {
452
+ "readOnlyHint": true
453
+ }
454
+ },
455
+ {
456
+ "name": "get_issue_tags",
457
+ "description": "Get an issue's aggregated tag distribution.",
458
+ "inputSchema": {
459
+ "type": "object",
460
+ "properties": {
461
+ "organization_id_or_slug": {
462
+ "type": "string"
463
+ },
464
+ "issue_id": {
465
+ "type": "string"
466
+ }
467
+ },
468
+ "required": [
469
+ "organization_id_or_slug",
470
+ "issue_id"
471
+ ],
472
+ "additionalProperties": false
473
+ },
474
+ "hidden": false,
475
+ "annotations": {
476
+ "readOnlyHint": true
477
+ }
478
+ },
479
+ {
480
+ "name": "update_issue",
481
+ "description": "Update an issue: resolve, unresolve, ignore, or (re)assign it.",
482
+ "inputSchema": {
483
+ "type": "object",
484
+ "properties": {
485
+ "organization_id_or_slug": {
486
+ "type": "string"
487
+ },
488
+ "issue_id": {
489
+ "type": "string"
490
+ },
491
+ "status": {
492
+ "type": "string",
493
+ "enum": [
494
+ "resolved",
495
+ "unresolved",
496
+ "ignored",
497
+ "muted"
498
+ ]
499
+ },
500
+ "assignedTo": {
501
+ "anyOf": [
502
+ {
503
+ "type": "string"
504
+ },
505
+ {
506
+ "type": "null"
507
+ }
508
+ ]
509
+ }
510
+ },
511
+ "required": [
512
+ "organization_id_or_slug",
513
+ "issue_id"
514
+ ],
515
+ "additionalProperties": false
516
+ },
517
+ "hidden": false
518
+ },
519
+ {
520
+ "name": "list_releases",
521
+ "description": "List an organization's releases, newest first.",
522
+ "inputSchema": {
523
+ "type": "object",
524
+ "properties": {
525
+ "organization_id_or_slug": {
526
+ "type": "string"
527
+ }
528
+ },
529
+ "required": [
530
+ "organization_id_or_slug"
531
+ ],
532
+ "additionalProperties": false
533
+ },
534
+ "hidden": false,
535
+ "annotations": {
536
+ "readOnlyHint": true
537
+ }
538
+ },
539
+ {
540
+ "name": "get_release",
541
+ "description": "Get a single release by version.",
542
+ "inputSchema": {
543
+ "type": "object",
544
+ "properties": {
545
+ "organization_id_or_slug": {
546
+ "type": "string"
547
+ },
548
+ "version": {
549
+ "type": "string"
550
+ }
551
+ },
552
+ "required": [
553
+ "organization_id_or_slug",
554
+ "version"
555
+ ],
556
+ "additionalProperties": false
557
+ },
558
+ "hidden": false,
559
+ "annotations": {
560
+ "readOnlyHint": true
561
+ }
562
+ },
563
+ {
564
+ "name": "create_release",
565
+ "description": "Create a release for one or more projects.",
566
+ "inputSchema": {
567
+ "type": "object",
568
+ "properties": {
569
+ "organization_id_or_slug": {
570
+ "type": "string"
571
+ },
572
+ "version": {
573
+ "type": "string"
574
+ },
575
+ "projects": {
576
+ "type": "array",
577
+ "items": {
578
+ "type": "string"
579
+ }
580
+ }
581
+ },
582
+ "required": [
583
+ "organization_id_or_slug"
584
+ ],
585
+ "additionalProperties": false
586
+ },
587
+ "hidden": false
588
+ },
589
+ {
590
+ "name": "delete_release",
591
+ "description": "Delete a release by version.",
592
+ "inputSchema": {
593
+ "type": "object",
594
+ "properties": {
595
+ "organization_id_or_slug": {
596
+ "type": "string"
597
+ },
598
+ "version": {
599
+ "type": "string"
600
+ }
601
+ },
602
+ "required": [
603
+ "organization_id_or_slug",
604
+ "version"
605
+ ],
606
+ "additionalProperties": false
607
+ },
608
+ "hidden": false
609
+ },
610
+ {
611
+ "name": "store_event",
612
+ "description": "Ingest an event (DSN store endpoint); creates or folds into an issue.",
613
+ "inputSchema": {
614
+ "type": "object",
615
+ "properties": {
616
+ "project_id": {
617
+ "type": "string"
618
+ },
619
+ "event_id": {
620
+ "type": "string"
621
+ },
622
+ "platform": {
623
+ "type": "string"
624
+ },
625
+ "level": {
626
+ "type": "string"
627
+ },
628
+ "logger": {
629
+ "anyOf": [
630
+ {
631
+ "type": "string"
632
+ },
633
+ {
634
+ "type": "null"
635
+ }
636
+ ]
637
+ },
638
+ "message": {
639
+ "type": "string"
640
+ },
641
+ "fingerprint": {
642
+ "type": "array",
643
+ "items": {
644
+ "type": "string"
645
+ }
646
+ },
647
+ "exception": {
648
+ "type": "object",
649
+ "properties": {
650
+ "values": {
651
+ "type": "array",
652
+ "items": {
653
+ "type": "object",
654
+ "properties": {
655
+ "type": {
656
+ "type": "string"
657
+ },
658
+ "value": {
659
+ "type": "string"
660
+ },
661
+ "stacktrace": {
662
+ "type": "object",
663
+ "properties": {
664
+ "frames": {
665
+ "type": "array",
666
+ "items": {
667
+ "type": "object",
668
+ "properties": {
669
+ "filename": {
670
+ "anyOf": [
671
+ {
672
+ "type": "string"
673
+ },
674
+ {
675
+ "type": "null"
676
+ }
677
+ ]
678
+ },
679
+ "function": {
680
+ "anyOf": [
681
+ {
682
+ "type": "string"
683
+ },
684
+ {
685
+ "type": "null"
686
+ }
687
+ ]
688
+ },
689
+ "module": {
690
+ "anyOf": [
691
+ {
692
+ "type": "string"
693
+ },
694
+ {
695
+ "type": "null"
696
+ }
697
+ ]
698
+ },
699
+ "lineno": {
700
+ "anyOf": [
701
+ {
702
+ "type": "number"
703
+ },
704
+ {
705
+ "type": "null"
706
+ }
707
+ ]
708
+ },
709
+ "colno": {
710
+ "anyOf": [
711
+ {
712
+ "type": "number"
713
+ },
714
+ {
715
+ "type": "null"
716
+ }
717
+ ]
718
+ },
719
+ "in_app": {
720
+ "type": "boolean"
721
+ }
722
+ },
723
+ "additionalProperties": {}
724
+ }
725
+ }
726
+ },
727
+ "additionalProperties": false
728
+ }
729
+ },
730
+ "additionalProperties": false
731
+ }
732
+ }
733
+ },
734
+ "additionalProperties": false
735
+ }
736
+ },
737
+ "required": [
738
+ "project_id"
739
+ ],
740
+ "additionalProperties": false
741
+ },
742
+ "hidden": true
743
+ }
744
+ ]
745
+ }