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,510 @@
1
+ {
2
+ "clone": "calcom",
3
+ "tools": [
4
+ {
5
+ "name": "get_me",
6
+ "description": "Get the authenticated Cal.com user profile.",
7
+ "inputSchema": {
8
+ "type": "object",
9
+ "properties": {},
10
+ "additionalProperties": false
11
+ },
12
+ "hidden": false,
13
+ "annotations": {
14
+ "readOnlyHint": true
15
+ }
16
+ },
17
+ {
18
+ "name": "list_event_types",
19
+ "description": "List the user's event types.",
20
+ "inputSchema": {
21
+ "type": "object",
22
+ "properties": {
23
+ "username": {
24
+ "type": "string"
25
+ }
26
+ },
27
+ "additionalProperties": false
28
+ },
29
+ "hidden": false,
30
+ "annotations": {
31
+ "readOnlyHint": true
32
+ }
33
+ },
34
+ {
35
+ "name": "get_event_type",
36
+ "description": "Get a single event type by id.",
37
+ "inputSchema": {
38
+ "type": "object",
39
+ "properties": {
40
+ "eventTypeId": {
41
+ "type": "integer",
42
+ "minimum": -9007199254740991,
43
+ "maximum": 9007199254740991
44
+ }
45
+ },
46
+ "additionalProperties": false
47
+ },
48
+ "hidden": false,
49
+ "annotations": {
50
+ "readOnlyHint": true
51
+ }
52
+ },
53
+ {
54
+ "name": "list_schedules",
55
+ "description": "List the user's availability schedules.",
56
+ "inputSchema": {
57
+ "type": "object",
58
+ "properties": {},
59
+ "additionalProperties": false
60
+ },
61
+ "hidden": false,
62
+ "annotations": {
63
+ "readOnlyHint": true
64
+ }
65
+ },
66
+ {
67
+ "name": "get_schedule",
68
+ "description": "Get a single availability schedule by id.",
69
+ "inputSchema": {
70
+ "type": "object",
71
+ "properties": {
72
+ "scheduleId": {
73
+ "type": "integer",
74
+ "minimum": -9007199254740991,
75
+ "maximum": 9007199254740991
76
+ }
77
+ },
78
+ "required": [
79
+ "scheduleId"
80
+ ],
81
+ "additionalProperties": false
82
+ },
83
+ "hidden": false,
84
+ "annotations": {
85
+ "readOnlyHint": true
86
+ }
87
+ },
88
+ {
89
+ "name": "get_default_schedule",
90
+ "description": "Get the user's default availability schedule.",
91
+ "inputSchema": {
92
+ "type": "object",
93
+ "properties": {},
94
+ "additionalProperties": false
95
+ },
96
+ "hidden": false,
97
+ "annotations": {
98
+ "readOnlyHint": true
99
+ }
100
+ },
101
+ {
102
+ "name": "get_available_slots",
103
+ "description": "Get available booking slots for an event type over a date range (by eventTypeId, or username + eventTypeSlug).",
104
+ "inputSchema": {
105
+ "type": "object",
106
+ "properties": {
107
+ "eventTypeId": {
108
+ "type": "integer",
109
+ "minimum": -9007199254740991,
110
+ "maximum": 9007199254740991
111
+ },
112
+ "eventTypeSlug": {
113
+ "type": "string"
114
+ },
115
+ "username": {
116
+ "type": "string"
117
+ },
118
+ "start": {
119
+ "type": "string"
120
+ },
121
+ "end": {
122
+ "type": "string"
123
+ }
124
+ },
125
+ "required": [
126
+ "start",
127
+ "end"
128
+ ],
129
+ "additionalProperties": false
130
+ },
131
+ "hidden": false,
132
+ "annotations": {
133
+ "readOnlyHint": true
134
+ }
135
+ },
136
+ {
137
+ "name": "list_bookings",
138
+ "description": "List the user's bookings. Filter by status, eventTypeIds, or attendeeEmail.",
139
+ "inputSchema": {
140
+ "type": "object",
141
+ "properties": {
142
+ "status": {
143
+ "type": "string"
144
+ },
145
+ "eventTypeId": {
146
+ "type": "integer",
147
+ "minimum": -9007199254740991,
148
+ "maximum": 9007199254740991
149
+ },
150
+ "eventTypeIds": {
151
+ "type": "string"
152
+ },
153
+ "attendeeEmail": {
154
+ "type": "string"
155
+ }
156
+ },
157
+ "additionalProperties": false
158
+ },
159
+ "hidden": false,
160
+ "annotations": {
161
+ "readOnlyHint": true
162
+ }
163
+ },
164
+ {
165
+ "name": "get_booking",
166
+ "description": "Get a single booking by its uid.",
167
+ "inputSchema": {
168
+ "type": "object",
169
+ "properties": {
170
+ "bookingUid": {
171
+ "type": "string"
172
+ }
173
+ },
174
+ "required": [
175
+ "bookingUid"
176
+ ],
177
+ "additionalProperties": false
178
+ },
179
+ "hidden": false,
180
+ "annotations": {
181
+ "readOnlyHint": true
182
+ }
183
+ },
184
+ {
185
+ "name": "create_booking",
186
+ "description": "Create a booking for an event type at a given start time.",
187
+ "inputSchema": {
188
+ "type": "object",
189
+ "properties": {
190
+ "start": {
191
+ "type": "string"
192
+ },
193
+ "eventTypeId": {
194
+ "type": "integer",
195
+ "minimum": -9007199254740991,
196
+ "maximum": 9007199254740991
197
+ },
198
+ "eventTypeSlug": {
199
+ "type": "string"
200
+ },
201
+ "username": {
202
+ "type": "string"
203
+ },
204
+ "lengthInMinutes": {
205
+ "type": "integer",
206
+ "minimum": -9007199254740991,
207
+ "maximum": 9007199254740991
208
+ },
209
+ "attendee": {
210
+ "type": "object",
211
+ "properties": {
212
+ "name": {
213
+ "type": "string"
214
+ },
215
+ "email": {
216
+ "type": "string"
217
+ },
218
+ "timeZone": {
219
+ "type": "string"
220
+ },
221
+ "language": {
222
+ "type": "string"
223
+ },
224
+ "phoneNumber": {
225
+ "type": "string"
226
+ }
227
+ },
228
+ "required": [
229
+ "name",
230
+ "email",
231
+ "timeZone"
232
+ ],
233
+ "additionalProperties": false
234
+ },
235
+ "guests": {
236
+ "type": "array",
237
+ "items": {
238
+ "type": "string"
239
+ }
240
+ },
241
+ "bookingFieldsResponses": {
242
+ "type": "object",
243
+ "propertyNames": {
244
+ "type": "string"
245
+ },
246
+ "additionalProperties": {}
247
+ },
248
+ "metadata": {
249
+ "type": "object",
250
+ "propertyNames": {
251
+ "type": "string"
252
+ },
253
+ "additionalProperties": {}
254
+ }
255
+ },
256
+ "required": [
257
+ "start",
258
+ "attendee"
259
+ ],
260
+ "additionalProperties": false
261
+ },
262
+ "hidden": false
263
+ },
264
+ {
265
+ "name": "cancel_booking",
266
+ "description": "Cancel a booking by its uid.",
267
+ "inputSchema": {
268
+ "type": "object",
269
+ "properties": {
270
+ "bookingUid": {
271
+ "type": "string"
272
+ },
273
+ "cancellationReason": {
274
+ "type": "string"
275
+ },
276
+ "cancelledByEmail": {
277
+ "type": "string"
278
+ }
279
+ },
280
+ "required": [
281
+ "bookingUid"
282
+ ],
283
+ "additionalProperties": false
284
+ },
285
+ "hidden": false
286
+ },
287
+ {
288
+ "name": "reschedule_booking",
289
+ "description": "Reschedule a booking to a new start time (creates a new booking).",
290
+ "inputSchema": {
291
+ "type": "object",
292
+ "properties": {
293
+ "bookingUid": {
294
+ "type": "string"
295
+ },
296
+ "start": {
297
+ "type": "string"
298
+ },
299
+ "reschedulingReason": {
300
+ "type": "string"
301
+ },
302
+ "rescheduledBy": {
303
+ "type": "string"
304
+ }
305
+ },
306
+ "required": [
307
+ "bookingUid",
308
+ "start"
309
+ ],
310
+ "additionalProperties": false
311
+ },
312
+ "hidden": false
313
+ },
314
+ {
315
+ "name": "list_calendars",
316
+ "description": "List the account's connected calendars and destination calendar.",
317
+ "inputSchema": {
318
+ "type": "object",
319
+ "properties": {},
320
+ "additionalProperties": false
321
+ },
322
+ "hidden": false,
323
+ "annotations": {
324
+ "readOnlyHint": true
325
+ }
326
+ },
327
+ {
328
+ "name": "list_webhooks",
329
+ "description": "List the user's webhooks.",
330
+ "inputSchema": {
331
+ "type": "object",
332
+ "properties": {},
333
+ "additionalProperties": false
334
+ },
335
+ "hidden": false,
336
+ "annotations": {
337
+ "readOnlyHint": true
338
+ }
339
+ },
340
+ {
341
+ "name": "get_webhook",
342
+ "description": "Get a single webhook by its id.",
343
+ "inputSchema": {
344
+ "type": "object",
345
+ "properties": {
346
+ "webhookId": {
347
+ "type": "string"
348
+ }
349
+ },
350
+ "required": [
351
+ "webhookId"
352
+ ],
353
+ "additionalProperties": false
354
+ },
355
+ "hidden": false,
356
+ "annotations": {
357
+ "readOnlyHint": true
358
+ }
359
+ },
360
+ {
361
+ "name": "create_webhook",
362
+ "description": "Create a webhook subscribing to booking event triggers.",
363
+ "inputSchema": {
364
+ "type": "object",
365
+ "properties": {
366
+ "subscriberUrl": {
367
+ "type": "string"
368
+ },
369
+ "triggers": {
370
+ "minItems": 1,
371
+ "type": "array",
372
+ "items": {
373
+ "type": "string",
374
+ "enum": [
375
+ "BOOKING_CREATED",
376
+ "BOOKING_PAYMENT_INITIATED",
377
+ "BOOKING_PAID",
378
+ "BOOKING_RESCHEDULED",
379
+ "BOOKING_REQUESTED",
380
+ "BOOKING_CANCELLED",
381
+ "BOOKING_REJECTED",
382
+ "BOOKING_NO_SHOW_UPDATED",
383
+ "FORM_SUBMITTED",
384
+ "MEETING_ENDED",
385
+ "MEETING_STARTED",
386
+ "RECORDING_READY",
387
+ "INSTANT_MEETING",
388
+ "RECORDING_TRANSCRIPTION_GENERATED",
389
+ "OOO_CREATED"
390
+ ]
391
+ }
392
+ },
393
+ "active": {
394
+ "type": "boolean"
395
+ },
396
+ "payloadTemplate": {
397
+ "anyOf": [
398
+ {
399
+ "type": "string"
400
+ },
401
+ {
402
+ "type": "null"
403
+ }
404
+ ]
405
+ },
406
+ "secret": {
407
+ "anyOf": [
408
+ {
409
+ "type": "string"
410
+ },
411
+ {
412
+ "type": "null"
413
+ }
414
+ ]
415
+ }
416
+ },
417
+ "required": [
418
+ "subscriberUrl",
419
+ "triggers"
420
+ ],
421
+ "additionalProperties": false
422
+ },
423
+ "hidden": false
424
+ },
425
+ {
426
+ "name": "update_webhook",
427
+ "description": "Update a webhook by its id.",
428
+ "inputSchema": {
429
+ "type": "object",
430
+ "properties": {
431
+ "webhookId": {
432
+ "type": "string"
433
+ },
434
+ "subscriberUrl": {
435
+ "type": "string"
436
+ },
437
+ "triggers": {
438
+ "minItems": 1,
439
+ "type": "array",
440
+ "items": {
441
+ "type": "string",
442
+ "enum": [
443
+ "BOOKING_CREATED",
444
+ "BOOKING_PAYMENT_INITIATED",
445
+ "BOOKING_PAID",
446
+ "BOOKING_RESCHEDULED",
447
+ "BOOKING_REQUESTED",
448
+ "BOOKING_CANCELLED",
449
+ "BOOKING_REJECTED",
450
+ "BOOKING_NO_SHOW_UPDATED",
451
+ "FORM_SUBMITTED",
452
+ "MEETING_ENDED",
453
+ "MEETING_STARTED",
454
+ "RECORDING_READY",
455
+ "INSTANT_MEETING",
456
+ "RECORDING_TRANSCRIPTION_GENERATED",
457
+ "OOO_CREATED"
458
+ ]
459
+ }
460
+ },
461
+ "active": {
462
+ "type": "boolean"
463
+ },
464
+ "payloadTemplate": {
465
+ "anyOf": [
466
+ {
467
+ "type": "string"
468
+ },
469
+ {
470
+ "type": "null"
471
+ }
472
+ ]
473
+ },
474
+ "secret": {
475
+ "anyOf": [
476
+ {
477
+ "type": "string"
478
+ },
479
+ {
480
+ "type": "null"
481
+ }
482
+ ]
483
+ }
484
+ },
485
+ "required": [
486
+ "webhookId"
487
+ ],
488
+ "additionalProperties": false
489
+ },
490
+ "hidden": false
491
+ },
492
+ {
493
+ "name": "delete_webhook",
494
+ "description": "Delete a webhook by its id.",
495
+ "inputSchema": {
496
+ "type": "object",
497
+ "properties": {
498
+ "webhookId": {
499
+ "type": "string"
500
+ }
501
+ },
502
+ "required": [
503
+ "webhookId"
504
+ ],
505
+ "additionalProperties": false
506
+ },
507
+ "hidden": false
508
+ }
509
+ ]
510
+ }