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,548 @@
1
+ {
2
+ "clone": "ownerrez",
3
+ "tools": [
4
+ {
5
+ "name": "ownerrez_get_users_me",
6
+ "description": "Get the current PAT user. Backed by GET /v2/users/me.",
7
+ "inputSchema": {
8
+ "type": "object",
9
+ "properties": {},
10
+ "additionalProperties": false
11
+ },
12
+ "hidden": false,
13
+ "annotations": {
14
+ "readOnlyHint": true
15
+ }
16
+ },
17
+ {
18
+ "name": "ownerrez_list_properties",
19
+ "description": "List properties. Backed by GET /v2/properties.",
20
+ "inputSchema": {
21
+ "type": "object",
22
+ "properties": {},
23
+ "additionalProperties": false
24
+ },
25
+ "hidden": false,
26
+ "annotations": {
27
+ "readOnlyHint": true
28
+ }
29
+ },
30
+ {
31
+ "name": "ownerrez_get_property",
32
+ "description": "Get a property by id. Backed by GET /v2/properties/{property_id}.",
33
+ "inputSchema": {
34
+ "type": "object",
35
+ "properties": {
36
+ "property_id": {
37
+ "type": "integer",
38
+ "minimum": -9007199254740991,
39
+ "maximum": 9007199254740991
40
+ }
41
+ },
42
+ "required": [
43
+ "property_id"
44
+ ],
45
+ "additionalProperties": false
46
+ },
47
+ "hidden": false,
48
+ "annotations": {
49
+ "readOnlyHint": true
50
+ }
51
+ },
52
+ {
53
+ "name": "ownerrez_property_search",
54
+ "description": "Search properties with filters. Backed by GET /v2/propertysearch.",
55
+ "inputSchema": {
56
+ "type": "object",
57
+ "properties": {
58
+ "q": {
59
+ "type": "string"
60
+ }
61
+ },
62
+ "additionalProperties": false
63
+ },
64
+ "hidden": false,
65
+ "annotations": {
66
+ "readOnlyHint": true
67
+ }
68
+ },
69
+ {
70
+ "name": "ownerrez_list_guests",
71
+ "description": "List guests (requires one of q/from/to/created_since_utc). Backed by GET /v2/guests.",
72
+ "inputSchema": {
73
+ "type": "object",
74
+ "properties": {
75
+ "q": {
76
+ "type": "string"
77
+ },
78
+ "created_since_utc": {
79
+ "type": "string"
80
+ },
81
+ "from": {
82
+ "type": "string"
83
+ },
84
+ "to": {
85
+ "type": "string"
86
+ }
87
+ },
88
+ "additionalProperties": false
89
+ },
90
+ "hidden": false,
91
+ "annotations": {
92
+ "readOnlyHint": true
93
+ }
94
+ },
95
+ {
96
+ "name": "ownerrez_get_guest",
97
+ "description": "Get a guest by id. Backed by GET /v2/guests/{guest_id}.",
98
+ "inputSchema": {
99
+ "type": "object",
100
+ "properties": {
101
+ "guest_id": {
102
+ "type": "integer",
103
+ "minimum": -9007199254740991,
104
+ "maximum": 9007199254740991
105
+ }
106
+ },
107
+ "required": [
108
+ "guest_id"
109
+ ],
110
+ "additionalProperties": false
111
+ },
112
+ "hidden": false,
113
+ "annotations": {
114
+ "readOnlyHint": true
115
+ }
116
+ },
117
+ {
118
+ "name": "ownerrez_create_guest",
119
+ "description": "Create a guest. Backed by POST /v2/guests.",
120
+ "inputSchema": {
121
+ "type": "object",
122
+ "properties": {
123
+ "first_name": {
124
+ "type": "string"
125
+ },
126
+ "last_name": {
127
+ "type": "string"
128
+ },
129
+ "notes": {
130
+ "type": "string"
131
+ },
132
+ "email_addresses": {
133
+ "type": "array",
134
+ "items": {
135
+ "type": "object",
136
+ "properties": {
137
+ "address": {
138
+ "type": "string"
139
+ },
140
+ "is_default": {
141
+ "type": "boolean"
142
+ },
143
+ "type": {
144
+ "type": "string"
145
+ }
146
+ },
147
+ "required": [
148
+ "address"
149
+ ],
150
+ "additionalProperties": false
151
+ }
152
+ },
153
+ "phones": {
154
+ "type": "array",
155
+ "items": {
156
+ "type": "object",
157
+ "properties": {
158
+ "number": {
159
+ "type": "string"
160
+ },
161
+ "is_default": {
162
+ "type": "boolean"
163
+ },
164
+ "type": {
165
+ "type": "string"
166
+ }
167
+ },
168
+ "required": [
169
+ "number"
170
+ ],
171
+ "additionalProperties": false
172
+ }
173
+ }
174
+ },
175
+ "required": [
176
+ "first_name",
177
+ "last_name"
178
+ ],
179
+ "additionalProperties": false
180
+ },
181
+ "hidden": false
182
+ },
183
+ {
184
+ "name": "ownerrez_update_guest",
185
+ "description": "Update a guest. Backed by PATCH /v2/guests/{guest_id}.",
186
+ "inputSchema": {
187
+ "type": "object",
188
+ "properties": {
189
+ "guest_id": {
190
+ "type": "integer",
191
+ "minimum": -9007199254740991,
192
+ "maximum": 9007199254740991
193
+ },
194
+ "first_name": {
195
+ "type": "string"
196
+ },
197
+ "last_name": {
198
+ "type": "string"
199
+ },
200
+ "notes": {
201
+ "type": "string"
202
+ }
203
+ },
204
+ "required": [
205
+ "guest_id"
206
+ ],
207
+ "additionalProperties": false
208
+ },
209
+ "hidden": false
210
+ },
211
+ {
212
+ "name": "ownerrez_delete_guest",
213
+ "description": "Delete a guest. Backed by DELETE /v2/guests/{guest_id}.",
214
+ "inputSchema": {
215
+ "type": "object",
216
+ "properties": {
217
+ "guest_id": {
218
+ "type": "integer",
219
+ "minimum": -9007199254740991,
220
+ "maximum": 9007199254740991
221
+ }
222
+ },
223
+ "required": [
224
+ "guest_id"
225
+ ],
226
+ "additionalProperties": false
227
+ },
228
+ "hidden": false
229
+ },
230
+ {
231
+ "name": "ownerrez_list_bookings",
232
+ "description": "List bookings (requires property_ids or since_utc). Backed by GET /v2/bookings.",
233
+ "inputSchema": {
234
+ "type": "object",
235
+ "properties": {
236
+ "property_ids": {
237
+ "type": "string"
238
+ },
239
+ "since_utc": {
240
+ "type": "string"
241
+ }
242
+ },
243
+ "additionalProperties": false
244
+ },
245
+ "hidden": false,
246
+ "annotations": {
247
+ "readOnlyHint": true
248
+ }
249
+ },
250
+ {
251
+ "name": "ownerrez_get_booking",
252
+ "description": "Get a booking by id. Backed by GET /v2/bookings/{booking_id}.",
253
+ "inputSchema": {
254
+ "type": "object",
255
+ "properties": {
256
+ "booking_id": {
257
+ "type": "integer",
258
+ "minimum": -9007199254740991,
259
+ "maximum": 9007199254740991
260
+ }
261
+ },
262
+ "required": [
263
+ "booking_id"
264
+ ],
265
+ "additionalProperties": false
266
+ },
267
+ "hidden": false,
268
+ "annotations": {
269
+ "readOnlyHint": true
270
+ }
271
+ },
272
+ {
273
+ "name": "ownerrez_create_booking",
274
+ "description": "Create a booking or block. Backed by POST /v2/bookings.",
275
+ "inputSchema": {
276
+ "type": "object",
277
+ "properties": {
278
+ "property_id": {
279
+ "type": "integer",
280
+ "minimum": -9007199254740991,
281
+ "maximum": 9007199254740991
282
+ }
283
+ },
284
+ "required": [
285
+ "property_id"
286
+ ],
287
+ "additionalProperties": false
288
+ },
289
+ "hidden": false
290
+ },
291
+ {
292
+ "name": "ownerrez_update_booking",
293
+ "description": "Update (or cancel — OwnerRez has no DELETE) a booking. Backed by PATCH /v2/bookings/{booking_id}.",
294
+ "inputSchema": {
295
+ "type": "object",
296
+ "properties": {
297
+ "booking_id": {
298
+ "type": "integer",
299
+ "minimum": -9007199254740991,
300
+ "maximum": 9007199254740991
301
+ }
302
+ },
303
+ "required": [
304
+ "booking_id"
305
+ ],
306
+ "additionalProperties": false
307
+ },
308
+ "hidden": false
309
+ },
310
+ {
311
+ "name": "ownerrez_list_quotes",
312
+ "description": "List quotes. Backed by GET /v2/quotes.",
313
+ "inputSchema": {
314
+ "type": "object",
315
+ "properties": {},
316
+ "additionalProperties": false
317
+ },
318
+ "hidden": false,
319
+ "annotations": {
320
+ "readOnlyHint": true
321
+ }
322
+ },
323
+ {
324
+ "name": "ownerrez_get_quote",
325
+ "description": "Get a quote by id. Backed by GET /v2/quotes/{quote_id}.",
326
+ "inputSchema": {
327
+ "type": "object",
328
+ "properties": {
329
+ "quote_id": {
330
+ "type": "integer",
331
+ "minimum": -9007199254740991,
332
+ "maximum": 9007199254740991
333
+ }
334
+ },
335
+ "required": [
336
+ "quote_id"
337
+ ],
338
+ "additionalProperties": false
339
+ },
340
+ "hidden": false,
341
+ "annotations": {
342
+ "readOnlyHint": true
343
+ }
344
+ },
345
+ {
346
+ "name": "ownerrez_list_tagdefinitions",
347
+ "description": "List tag definitions. Backed by GET /v2/tagdefinitions.",
348
+ "inputSchema": {
349
+ "type": "object",
350
+ "properties": {},
351
+ "additionalProperties": false
352
+ },
353
+ "hidden": false,
354
+ "annotations": {
355
+ "readOnlyHint": true
356
+ }
357
+ },
358
+ {
359
+ "name": "ownerrez_get_tagdefinition",
360
+ "description": "Get a tag definition by id (deleted ids answer with a tombstone 404). Backed by GET /v2/tagdefinitions/{tag_definition_id}.",
361
+ "inputSchema": {
362
+ "type": "object",
363
+ "properties": {
364
+ "tag_definition_id": {
365
+ "type": "integer",
366
+ "minimum": -9007199254740991,
367
+ "maximum": 9007199254740991
368
+ }
369
+ },
370
+ "required": [
371
+ "tag_definition_id"
372
+ ],
373
+ "additionalProperties": false
374
+ },
375
+ "hidden": false,
376
+ "annotations": {
377
+ "readOnlyHint": true
378
+ }
379
+ },
380
+ {
381
+ "name": "ownerrez_create_tagdefinition",
382
+ "description": "Create a tag definition (name unique across active tags, 409 on duplicates). Backed by POST /v2/tagdefinitions.",
383
+ "inputSchema": {
384
+ "type": "object",
385
+ "properties": {
386
+ "name": {
387
+ "type": "string"
388
+ },
389
+ "color": {
390
+ "type": "string"
391
+ },
392
+ "description": {
393
+ "type": "string"
394
+ }
395
+ },
396
+ "required": [
397
+ "name"
398
+ ],
399
+ "additionalProperties": false
400
+ },
401
+ "hidden": false
402
+ },
403
+ {
404
+ "name": "ownerrez_update_tagdefinition",
405
+ "description": "Update a tag definition. Backed by PATCH /v2/tagdefinitions/{tag_definition_id}.",
406
+ "inputSchema": {
407
+ "type": "object",
408
+ "properties": {
409
+ "tag_definition_id": {
410
+ "type": "integer",
411
+ "minimum": -9007199254740991,
412
+ "maximum": 9007199254740991
413
+ },
414
+ "name": {
415
+ "type": "string"
416
+ },
417
+ "color": {
418
+ "type": "string"
419
+ },
420
+ "description": {
421
+ "type": "string"
422
+ }
423
+ },
424
+ "required": [
425
+ "tag_definition_id"
426
+ ],
427
+ "additionalProperties": false
428
+ },
429
+ "hidden": false
430
+ },
431
+ {
432
+ "name": "ownerrez_delete_tagdefinition",
433
+ "description": "Delete a tag definition (frees its name for reuse). Backed by DELETE /v2/tagdefinitions/{tag_definition_id}.",
434
+ "inputSchema": {
435
+ "type": "object",
436
+ "properties": {
437
+ "tag_definition_id": {
438
+ "type": "integer",
439
+ "minimum": -9007199254740991,
440
+ "maximum": 9007199254740991
441
+ }
442
+ },
443
+ "required": [
444
+ "tag_definition_id"
445
+ ],
446
+ "additionalProperties": false
447
+ },
448
+ "hidden": false
449
+ },
450
+ {
451
+ "name": "ownerrez_create_tag",
452
+ "description": "Tag an entity with a tag definition. Backed by POST /v2/tags.",
453
+ "inputSchema": {
454
+ "type": "object",
455
+ "properties": {
456
+ "entity_type": {
457
+ "type": "string"
458
+ },
459
+ "entity_id": {
460
+ "type": "integer",
461
+ "minimum": -9007199254740991,
462
+ "maximum": 9007199254740991
463
+ },
464
+ "name": {
465
+ "type": "string"
466
+ },
467
+ "tag_definition_id": {
468
+ "type": "integer",
469
+ "minimum": -9007199254740991,
470
+ "maximum": 9007199254740991
471
+ }
472
+ },
473
+ "required": [
474
+ "entity_type",
475
+ "entity_id"
476
+ ],
477
+ "additionalProperties": false
478
+ },
479
+ "hidden": false
480
+ },
481
+ {
482
+ "name": "ownerrez_list_webhooksubscriptions",
483
+ "description": "List webhook subscriptions. Backed by GET /v2/webhooksubscriptions.",
484
+ "inputSchema": {
485
+ "type": "object",
486
+ "properties": {},
487
+ "additionalProperties": false
488
+ },
489
+ "hidden": false,
490
+ "annotations": {
491
+ "readOnlyHint": true
492
+ }
493
+ },
494
+ {
495
+ "name": "ownerrez_webhook_categories",
496
+ "description": "List webhook categories. Backed by GET /v2/webhooksubscriptions/categories.",
497
+ "inputSchema": {
498
+ "type": "object",
499
+ "properties": {},
500
+ "additionalProperties": false
501
+ },
502
+ "hidden": false,
503
+ "annotations": {
504
+ "readOnlyHint": true
505
+ }
506
+ },
507
+ {
508
+ "name": "ownerrez_create_webhooksubscription",
509
+ "description": "Create a webhook subscription. Backed by POST /v2/webhooksubscriptions.",
510
+ "inputSchema": {
511
+ "type": "object",
512
+ "properties": {
513
+ "category": {
514
+ "type": "string"
515
+ },
516
+ "url": {
517
+ "type": "string"
518
+ }
519
+ },
520
+ "required": [
521
+ "category",
522
+ "url"
523
+ ],
524
+ "additionalProperties": false
525
+ },
526
+ "hidden": false
527
+ },
528
+ {
529
+ "name": "ownerrez_delete_webhooksubscription",
530
+ "description": "Delete a webhook subscription. Backed by DELETE /v2/webhooksubscriptions/{webhook_subscription_id}.",
531
+ "inputSchema": {
532
+ "type": "object",
533
+ "properties": {
534
+ "webhook_subscription_id": {
535
+ "type": "integer",
536
+ "minimum": -9007199254740991,
537
+ "maximum": 9007199254740991
538
+ }
539
+ },
540
+ "required": [
541
+ "webhook_subscription_id"
542
+ ],
543
+ "additionalProperties": false
544
+ },
545
+ "hidden": false
546
+ }
547
+ ]
548
+ }