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,386 @@
1
+ {
2
+ "clone": "customerio",
3
+ "tools": [
4
+ {
5
+ "name": "list_campaigns",
6
+ "description": "List Customer.io campaigns.",
7
+ "inputSchema": {
8
+ "type": "object",
9
+ "properties": {},
10
+ "additionalProperties": false
11
+ },
12
+ "hidden": false
13
+ },
14
+ {
15
+ "name": "get_campaign",
16
+ "description": "Get a Customer.io campaign by id.",
17
+ "inputSchema": {
18
+ "type": "object",
19
+ "properties": {
20
+ "campaign_id": {
21
+ "type": "integer",
22
+ "minimum": -9007199254740991,
23
+ "maximum": 9007199254740991
24
+ }
25
+ },
26
+ "required": [
27
+ "campaign_id"
28
+ ],
29
+ "additionalProperties": false
30
+ },
31
+ "hidden": false
32
+ },
33
+ {
34
+ "name": "get_campaign_metrics",
35
+ "description": "Get metrics for a Customer.io campaign.",
36
+ "inputSchema": {
37
+ "type": "object",
38
+ "properties": {
39
+ "campaign_id": {
40
+ "type": "integer",
41
+ "minimum": -9007199254740991,
42
+ "maximum": 9007199254740991
43
+ }
44
+ },
45
+ "required": [
46
+ "campaign_id"
47
+ ],
48
+ "additionalProperties": false
49
+ },
50
+ "hidden": false
51
+ },
52
+ {
53
+ "name": "list_campaign_actions",
54
+ "description": "List the actions/messages for a Customer.io campaign.",
55
+ "inputSchema": {
56
+ "type": "object",
57
+ "properties": {
58
+ "campaign_id": {
59
+ "type": "integer",
60
+ "minimum": -9007199254740991,
61
+ "maximum": 9007199254740991
62
+ }
63
+ },
64
+ "required": [
65
+ "campaign_id"
66
+ ],
67
+ "additionalProperties": false
68
+ },
69
+ "hidden": false
70
+ },
71
+ {
72
+ "name": "create_campaign_trigger",
73
+ "description": "Trigger a Customer.io campaign/broadcast send (side effect, no real send).",
74
+ "inputSchema": {
75
+ "type": "object",
76
+ "properties": {
77
+ "campaign_id": {
78
+ "type": "integer",
79
+ "minimum": -9007199254740991,
80
+ "maximum": 9007199254740991
81
+ },
82
+ "data": {
83
+ "anyOf": [
84
+ {
85
+ "type": "object",
86
+ "propertyNames": {
87
+ "type": "string"
88
+ },
89
+ "additionalProperties": {}
90
+ },
91
+ {
92
+ "type": "null"
93
+ }
94
+ ]
95
+ }
96
+ },
97
+ "required": [
98
+ "campaign_id"
99
+ ],
100
+ "additionalProperties": false
101
+ },
102
+ "hidden": false
103
+ },
104
+ {
105
+ "name": "get_campaign_trigger",
106
+ "description": "Get the status of a Customer.io campaign trigger.",
107
+ "inputSchema": {
108
+ "type": "object",
109
+ "properties": {
110
+ "campaign_id": {
111
+ "type": "integer",
112
+ "minimum": -9007199254740991,
113
+ "maximum": 9007199254740991
114
+ },
115
+ "trigger_id": {
116
+ "type": "integer",
117
+ "minimum": -9007199254740991,
118
+ "maximum": 9007199254740991
119
+ }
120
+ },
121
+ "required": [
122
+ "campaign_id",
123
+ "trigger_id"
124
+ ],
125
+ "additionalProperties": false
126
+ },
127
+ "hidden": false
128
+ },
129
+ {
130
+ "name": "list_broadcasts",
131
+ "description": "List Customer.io broadcasts.",
132
+ "inputSchema": {
133
+ "type": "object",
134
+ "properties": {},
135
+ "additionalProperties": false
136
+ },
137
+ "hidden": false
138
+ },
139
+ {
140
+ "name": "get_broadcast",
141
+ "description": "Get a Customer.io broadcast by id.",
142
+ "inputSchema": {
143
+ "type": "object",
144
+ "properties": {
145
+ "broadcast_id": {
146
+ "type": "integer",
147
+ "minimum": -9007199254740991,
148
+ "maximum": 9007199254740991
149
+ }
150
+ },
151
+ "required": [
152
+ "broadcast_id"
153
+ ],
154
+ "additionalProperties": false
155
+ },
156
+ "hidden": false
157
+ },
158
+ {
159
+ "name": "get_broadcast_metrics",
160
+ "description": "Get metrics for a Customer.io broadcast.",
161
+ "inputSchema": {
162
+ "type": "object",
163
+ "properties": {
164
+ "broadcast_id": {
165
+ "type": "integer",
166
+ "minimum": -9007199254740991,
167
+ "maximum": 9007199254740991
168
+ }
169
+ },
170
+ "required": [
171
+ "broadcast_id"
172
+ ],
173
+ "additionalProperties": false
174
+ },
175
+ "hidden": false
176
+ },
177
+ {
178
+ "name": "list_customers",
179
+ "description": "List Customer.io customers.",
180
+ "inputSchema": {
181
+ "type": "object",
182
+ "properties": {},
183
+ "additionalProperties": false
184
+ },
185
+ "hidden": false
186
+ },
187
+ {
188
+ "name": "get_customer_attributes",
189
+ "description": "Get a Customer.io customer attributes object.",
190
+ "inputSchema": {
191
+ "type": "object",
192
+ "properties": {
193
+ "customer_id": {
194
+ "type": "string"
195
+ }
196
+ },
197
+ "additionalProperties": false
198
+ },
199
+ "hidden": false
200
+ },
201
+ {
202
+ "name": "list_messages",
203
+ "description": "List Customer.io messages.",
204
+ "inputSchema": {
205
+ "type": "object",
206
+ "properties": {},
207
+ "additionalProperties": false
208
+ },
209
+ "hidden": false
210
+ },
211
+ {
212
+ "name": "get_message",
213
+ "description": "Get a Customer.io message by id.",
214
+ "inputSchema": {
215
+ "type": "object",
216
+ "properties": {
217
+ "message_id": {
218
+ "type": "string"
219
+ }
220
+ },
221
+ "additionalProperties": false
222
+ },
223
+ "hidden": false
224
+ },
225
+ {
226
+ "name": "list_transactional_messages",
227
+ "description": "List Customer.io transactional messages.",
228
+ "inputSchema": {
229
+ "type": "object",
230
+ "properties": {},
231
+ "additionalProperties": false
232
+ },
233
+ "hidden": false
234
+ },
235
+ {
236
+ "name": "send_email",
237
+ "description": "Send a transactional email.",
238
+ "inputSchema": {
239
+ "type": "object",
240
+ "properties": {
241
+ "to": {
242
+ "type": "string"
243
+ },
244
+ "transactional_message_id": {},
245
+ "identifiers": {
246
+ "type": "object",
247
+ "propertyNames": {
248
+ "type": "string"
249
+ },
250
+ "additionalProperties": {}
251
+ }
252
+ },
253
+ "additionalProperties": false
254
+ },
255
+ "hidden": false
256
+ },
257
+ {
258
+ "name": "list_segments",
259
+ "description": "List Customer.io segments.",
260
+ "inputSchema": {
261
+ "type": "object",
262
+ "properties": {},
263
+ "additionalProperties": false
264
+ },
265
+ "hidden": false
266
+ },
267
+ {
268
+ "name": "get_segment",
269
+ "description": "Get a Customer.io segment by id.",
270
+ "inputSchema": {
271
+ "type": "object",
272
+ "properties": {
273
+ "segment_id": {
274
+ "type": "integer",
275
+ "minimum": -9007199254740991,
276
+ "maximum": 9007199254740991
277
+ }
278
+ },
279
+ "required": [
280
+ "segment_id"
281
+ ],
282
+ "additionalProperties": false
283
+ },
284
+ "hidden": false
285
+ },
286
+ {
287
+ "name": "get_segment_customer_count",
288
+ "description": "Get a Customer.io segment customer count.",
289
+ "inputSchema": {
290
+ "type": "object",
291
+ "properties": {
292
+ "segment_id": {
293
+ "type": "integer",
294
+ "minimum": -9007199254740991,
295
+ "maximum": 9007199254740991
296
+ }
297
+ },
298
+ "required": [
299
+ "segment_id"
300
+ ],
301
+ "additionalProperties": false
302
+ },
303
+ "hidden": false
304
+ },
305
+ {
306
+ "name": "create_broadcast_trigger",
307
+ "description": "Trigger a Customer.io broadcast run (side effect, no real send).",
308
+ "inputSchema": {
309
+ "type": "object",
310
+ "properties": {
311
+ "broadcast_id": {
312
+ "type": "integer",
313
+ "minimum": -9007199254740991,
314
+ "maximum": 9007199254740991
315
+ },
316
+ "data": {
317
+ "anyOf": [
318
+ {
319
+ "type": "object",
320
+ "propertyNames": {
321
+ "type": "string"
322
+ },
323
+ "additionalProperties": {}
324
+ },
325
+ {
326
+ "type": "null"
327
+ }
328
+ ]
329
+ }
330
+ },
331
+ "required": [
332
+ "broadcast_id"
333
+ ],
334
+ "additionalProperties": false
335
+ },
336
+ "hidden": false
337
+ },
338
+ {
339
+ "name": "list_broadcast_triggers",
340
+ "description": "List trigger runs for a Customer.io broadcast.",
341
+ "inputSchema": {
342
+ "type": "object",
343
+ "properties": {
344
+ "broadcast_id": {
345
+ "type": "integer",
346
+ "minimum": -9007199254740991,
347
+ "maximum": 9007199254740991
348
+ }
349
+ },
350
+ "required": [
351
+ "broadcast_id"
352
+ ],
353
+ "additionalProperties": false
354
+ },
355
+ "hidden": false
356
+ },
357
+ {
358
+ "name": "list_customer_messages",
359
+ "description": "List the message delivery history for a Customer.io customer.",
360
+ "inputSchema": {
361
+ "type": "object",
362
+ "properties": {
363
+ "customer_id": {
364
+ "type": "string"
365
+ }
366
+ },
367
+ "additionalProperties": false
368
+ },
369
+ "hidden": false
370
+ },
371
+ {
372
+ "name": "list_customer_segments",
373
+ "description": "List the segment memberships for a Customer.io customer.",
374
+ "inputSchema": {
375
+ "type": "object",
376
+ "properties": {
377
+ "customer_id": {
378
+ "type": "string"
379
+ }
380
+ },
381
+ "additionalProperties": false
382
+ },
383
+ "hidden": false
384
+ }
385
+ ]
386
+ }