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,408 @@
1
+ {
2
+ "clone": "unipile",
3
+ "tools": [
4
+ {
5
+ "name": "unipile_list_accounts",
6
+ "description": "Return the recorded response for GET /api/v1/accounts.",
7
+ "inputSchema": {
8
+ "type": "object",
9
+ "properties": {},
10
+ "additionalProperties": false
11
+ },
12
+ "hidden": false,
13
+ "annotations": {
14
+ "readOnlyHint": true
15
+ }
16
+ },
17
+ {
18
+ "name": "unipile_list_webhooks",
19
+ "description": "Return the recorded response for GET /api/v1/webhooks.",
20
+ "inputSchema": {
21
+ "type": "object",
22
+ "properties": {},
23
+ "additionalProperties": false
24
+ },
25
+ "hidden": false,
26
+ "annotations": {
27
+ "readOnlyHint": true
28
+ }
29
+ },
30
+ {
31
+ "name": "unipile_list_chats",
32
+ "description": "Return the recorded response for GET /api/v1/chats.",
33
+ "inputSchema": {
34
+ "type": "object",
35
+ "properties": {},
36
+ "additionalProperties": false
37
+ },
38
+ "hidden": false,
39
+ "annotations": {
40
+ "readOnlyHint": true
41
+ }
42
+ },
43
+ {
44
+ "name": "unipile_list_messages",
45
+ "description": "Return the recorded response for GET /api/v1/messages.",
46
+ "inputSchema": {
47
+ "type": "object",
48
+ "properties": {},
49
+ "additionalProperties": false
50
+ },
51
+ "hidden": false,
52
+ "annotations": {
53
+ "readOnlyHint": true
54
+ }
55
+ },
56
+ {
57
+ "name": "unipile_list_folders",
58
+ "description": "Return the recorded response for GET /api/v1/folders.",
59
+ "inputSchema": {
60
+ "type": "object",
61
+ "properties": {},
62
+ "additionalProperties": false
63
+ },
64
+ "hidden": false,
65
+ "annotations": {
66
+ "readOnlyHint": true
67
+ }
68
+ },
69
+ {
70
+ "name": "unipile_get_api_v1_param0",
71
+ "description": "REST route alias for GET /api/v1/:param0.",
72
+ "inputSchema": {
73
+ "type": "object",
74
+ "properties": {},
75
+ "additionalProperties": false
76
+ },
77
+ "hidden": false,
78
+ "annotations": {
79
+ "readOnlyHint": true
80
+ }
81
+ },
82
+ {
83
+ "name": "unipile_get_api_v1_accounts",
84
+ "description": "REST route alias for GET /api/v1/accounts.",
85
+ "inputSchema": {
86
+ "type": "object",
87
+ "properties": {},
88
+ "additionalProperties": false
89
+ },
90
+ "hidden": false,
91
+ "annotations": {
92
+ "readOnlyHint": true
93
+ }
94
+ },
95
+ {
96
+ "name": "unipile_get_api_v1_accounts_param0",
97
+ "description": "REST route alias for GET /api/v1/accounts/:param0.",
98
+ "inputSchema": {
99
+ "type": "object",
100
+ "properties": {},
101
+ "additionalProperties": false
102
+ },
103
+ "hidden": false,
104
+ "annotations": {
105
+ "readOnlyHint": true
106
+ }
107
+ },
108
+ {
109
+ "name": "unipile_get_api_v1_accounts_param0_status",
110
+ "description": "REST route alias for GET /api/v1/accounts/:param0/status.",
111
+ "inputSchema": {
112
+ "type": "object",
113
+ "properties": {},
114
+ "additionalProperties": false
115
+ },
116
+ "hidden": false,
117
+ "annotations": {
118
+ "readOnlyHint": true
119
+ }
120
+ },
121
+ {
122
+ "name": "unipile_get_api_v1_accounts_does_not_exist",
123
+ "description": "REST route alias for GET /api/v1/accounts/does-not-exist.",
124
+ "inputSchema": {
125
+ "type": "object",
126
+ "properties": {},
127
+ "additionalProperties": false
128
+ },
129
+ "hidden": false,
130
+ "annotations": {
131
+ "readOnlyHint": true
132
+ }
133
+ },
134
+ {
135
+ "name": "unipile_get_api_v1_chat_attendees",
136
+ "description": "REST route alias for GET /api/v1/chat_attendees.",
137
+ "inputSchema": {
138
+ "type": "object",
139
+ "properties": {},
140
+ "additionalProperties": false
141
+ },
142
+ "hidden": false,
143
+ "annotations": {
144
+ "readOnlyHint": true
145
+ }
146
+ },
147
+ {
148
+ "name": "unipile_get_api_v1_chats",
149
+ "description": "REST route alias for GET /api/v1/chats.",
150
+ "inputSchema": {
151
+ "type": "object",
152
+ "properties": {},
153
+ "additionalProperties": false
154
+ },
155
+ "hidden": false,
156
+ "annotations": {
157
+ "readOnlyHint": true
158
+ }
159
+ },
160
+ {
161
+ "name": "unipile_get_api_v1_chats_param0",
162
+ "description": "REST route alias for GET /api/v1/chats/:param0.",
163
+ "inputSchema": {
164
+ "type": "object",
165
+ "properties": {},
166
+ "additionalProperties": false
167
+ },
168
+ "hidden": false,
169
+ "annotations": {
170
+ "readOnlyHint": true
171
+ }
172
+ },
173
+ {
174
+ "name": "unipile_get_api_v1_chats_param0_attendees",
175
+ "description": "REST route alias for GET /api/v1/chats/:param0/attendees.",
176
+ "inputSchema": {
177
+ "type": "object",
178
+ "properties": {},
179
+ "additionalProperties": false
180
+ },
181
+ "hidden": false,
182
+ "annotations": {
183
+ "readOnlyHint": true
184
+ }
185
+ },
186
+ {
187
+ "name": "unipile_get_api_v1_chats_param0_messages",
188
+ "description": "REST route alias for GET /api/v1/chats/:param0/messages.",
189
+ "inputSchema": {
190
+ "type": "object",
191
+ "properties": {},
192
+ "additionalProperties": false
193
+ },
194
+ "hidden": false,
195
+ "annotations": {
196
+ "readOnlyHint": true
197
+ }
198
+ },
199
+ {
200
+ "name": "unipile_post_api_v1_chats_param0_messages",
201
+ "description": "REST route alias for POST /api/v1/chats/:param0/messages.",
202
+ "inputSchema": {
203
+ "type": "object",
204
+ "properties": {},
205
+ "additionalProperties": false
206
+ },
207
+ "hidden": false,
208
+ "annotations": {
209
+ "readOnlyHint": false
210
+ }
211
+ },
212
+ {
213
+ "name": "unipile_get_api_v1_chats_does_not_exist",
214
+ "description": "REST route alias for GET /api/v1/chats/does-not-exist.",
215
+ "inputSchema": {
216
+ "type": "object",
217
+ "properties": {},
218
+ "additionalProperties": false
219
+ },
220
+ "hidden": false,
221
+ "annotations": {
222
+ "readOnlyHint": true
223
+ }
224
+ },
225
+ {
226
+ "name": "unipile_get_api_v1_folders",
227
+ "description": "REST route alias for GET /api/v1/folders.",
228
+ "inputSchema": {
229
+ "type": "object",
230
+ "properties": {},
231
+ "additionalProperties": false
232
+ },
233
+ "hidden": false,
234
+ "annotations": {
235
+ "readOnlyHint": true
236
+ }
237
+ },
238
+ {
239
+ "name": "unipile_get_api_v1_linkedin_search",
240
+ "description": "REST route alias for GET /api/v1/linkedin/search.",
241
+ "inputSchema": {
242
+ "type": "object",
243
+ "properties": {},
244
+ "additionalProperties": false
245
+ },
246
+ "hidden": false,
247
+ "annotations": {
248
+ "readOnlyHint": true
249
+ }
250
+ },
251
+ {
252
+ "name": "unipile_get_api_v1_messages",
253
+ "description": "REST route alias for GET /api/v1/messages.",
254
+ "inputSchema": {
255
+ "type": "object",
256
+ "properties": {},
257
+ "additionalProperties": false
258
+ },
259
+ "hidden": false,
260
+ "annotations": {
261
+ "readOnlyHint": true
262
+ }
263
+ },
264
+ {
265
+ "name": "unipile_get_api_v1_messages_param0",
266
+ "description": "REST route alias for GET /api/v1/messages/:param0.",
267
+ "inputSchema": {
268
+ "type": "object",
269
+ "properties": {},
270
+ "additionalProperties": false
271
+ },
272
+ "hidden": false,
273
+ "annotations": {
274
+ "readOnlyHint": true
275
+ }
276
+ },
277
+ {
278
+ "name": "unipile_get_api_v1_messages_param0_attachments_param1",
279
+ "description": "REST route alias for GET /api/v1/messages/:param0/attachments/:param1.",
280
+ "inputSchema": {
281
+ "type": "object",
282
+ "properties": {},
283
+ "additionalProperties": false
284
+ },
285
+ "hidden": false,
286
+ "annotations": {
287
+ "readOnlyHint": true
288
+ }
289
+ },
290
+ {
291
+ "name": "unipile_get_api_v1_messages_does_not_exist",
292
+ "description": "REST route alias for GET /api/v1/messages/does-not-exist.",
293
+ "inputSchema": {
294
+ "type": "object",
295
+ "properties": {},
296
+ "additionalProperties": false
297
+ },
298
+ "hidden": false,
299
+ "annotations": {
300
+ "readOnlyHint": true
301
+ }
302
+ },
303
+ {
304
+ "name": "unipile_get_api_v1_users_invite_received",
305
+ "description": "REST route alias for GET /api/v1/users/invite/received.",
306
+ "inputSchema": {
307
+ "type": "object",
308
+ "properties": {},
309
+ "additionalProperties": false
310
+ },
311
+ "hidden": false,
312
+ "annotations": {
313
+ "readOnlyHint": true
314
+ }
315
+ },
316
+ {
317
+ "name": "unipile_get_api_v1_users_invite_sent",
318
+ "description": "REST route alias for GET /api/v1/users/invite/sent.",
319
+ "inputSchema": {
320
+ "type": "object",
321
+ "properties": {},
322
+ "additionalProperties": false
323
+ },
324
+ "hidden": false,
325
+ "annotations": {
326
+ "readOnlyHint": true
327
+ }
328
+ },
329
+ {
330
+ "name": "unipile_get_api_v1_users_relations",
331
+ "description": "REST route alias for GET /api/v1/users/relations.",
332
+ "inputSchema": {
333
+ "type": "object",
334
+ "properties": {},
335
+ "additionalProperties": false
336
+ },
337
+ "hidden": false,
338
+ "annotations": {
339
+ "readOnlyHint": true
340
+ }
341
+ },
342
+ {
343
+ "name": "users_controller_get_account_owner_profile",
344
+ "description": "REST route alias for GET /api/v1/users/me.",
345
+ "inputSchema": {
346
+ "type": "object",
347
+ "properties": {},
348
+ "additionalProperties": false
349
+ },
350
+ "hidden": false,
351
+ "annotations": {
352
+ "readOnlyHint": true
353
+ }
354
+ },
355
+ {
356
+ "name": "unipile_get_api_v1_users_urn_li_fsd_profile_archal_nonexistent",
357
+ "description": "REST route alias for GET /api/v1/users/urn:li:fsd_profile:archal-nonexistent.",
358
+ "inputSchema": {
359
+ "type": "object",
360
+ "properties": {},
361
+ "additionalProperties": false
362
+ },
363
+ "hidden": false,
364
+ "annotations": {
365
+ "readOnlyHint": true
366
+ }
367
+ },
368
+ {
369
+ "name": "unipile_get_api_v1_webhooks",
370
+ "description": "REST route alias for GET /api/v1/webhooks.",
371
+ "inputSchema": {
372
+ "type": "object",
373
+ "properties": {},
374
+ "additionalProperties": false
375
+ },
376
+ "hidden": false,
377
+ "annotations": {
378
+ "readOnlyHint": true
379
+ }
380
+ },
381
+ {
382
+ "name": "unipile_get_api_v1_webhooks_param0",
383
+ "description": "REST route alias for GET /api/v1/webhooks/:param0.",
384
+ "inputSchema": {
385
+ "type": "object",
386
+ "properties": {},
387
+ "additionalProperties": false
388
+ },
389
+ "hidden": false,
390
+ "annotations": {
391
+ "readOnlyHint": true
392
+ }
393
+ },
394
+ {
395
+ "name": "unipile_get_api_v1_webhooks_does_not_exist",
396
+ "description": "REST route alias for GET /api/v1/webhooks/does-not-exist.",
397
+ "inputSchema": {
398
+ "type": "object",
399
+ "properties": {},
400
+ "additionalProperties": false
401
+ },
402
+ "hidden": false,
403
+ "annotations": {
404
+ "readOnlyHint": true
405
+ }
406
+ }
407
+ ]
408
+ }