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,343 @@
1
+ {
2
+ "clone": "pricelabs",
3
+ "tools": [
4
+ {
5
+ "name": "pricelabs_get_all_listings",
6
+ "description": "Get all listings in an account, with min/base/max prices and performance metrics. Backed by GET /v1/listings.",
7
+ "inputSchema": {
8
+ "type": "object",
9
+ "properties": {
10
+ "skip_hidden": {
11
+ "type": "string",
12
+ "enum": [
13
+ "true",
14
+ "false"
15
+ ]
16
+ },
17
+ "only_syncing_listings": {
18
+ "type": "string",
19
+ "enum": [
20
+ "true",
21
+ "false"
22
+ ]
23
+ }
24
+ },
25
+ "additionalProperties": false
26
+ },
27
+ "hidden": false,
28
+ "annotations": {
29
+ "readOnlyHint": true
30
+ }
31
+ },
32
+ {
33
+ "name": "pricelabs_get_listing",
34
+ "description": "Get a single listing by ID, including min/base/max prices and metrics. Backed by GET /v1/listings/{listing_id}.",
35
+ "inputSchema": {
36
+ "type": "object",
37
+ "properties": {
38
+ "listing_id": {
39
+ "type": "string"
40
+ }
41
+ },
42
+ "required": [
43
+ "listing_id"
44
+ ],
45
+ "additionalProperties": false
46
+ },
47
+ "hidden": false,
48
+ "annotations": {
49
+ "readOnlyHint": true
50
+ }
51
+ },
52
+ {
53
+ "name": "pricelabs_update_listings",
54
+ "description": "Bulk update min/base/max prices, hidden flag, and push_enabled across one or more listings. Backed by POST /v1/listings.",
55
+ "inputSchema": {
56
+ "type": "object",
57
+ "properties": {
58
+ "listings": {
59
+ "type": "array",
60
+ "items": {
61
+ "type": "object",
62
+ "properties": {
63
+ "id": {
64
+ "type": "string"
65
+ },
66
+ "pms": {
67
+ "type": "string"
68
+ },
69
+ "min": {
70
+ "type": "number"
71
+ },
72
+ "base": {
73
+ "type": "number"
74
+ },
75
+ "max": {
76
+ "type": "number"
77
+ },
78
+ "hidden": {
79
+ "type": "boolean"
80
+ },
81
+ "push_enabled": {
82
+ "type": "boolean"
83
+ },
84
+ "notes": {
85
+ "type": "string"
86
+ }
87
+ },
88
+ "required": [
89
+ "id",
90
+ "pms"
91
+ ],
92
+ "additionalProperties": false
93
+ }
94
+ }
95
+ },
96
+ "required": [
97
+ "listings"
98
+ ],
99
+ "additionalProperties": false
100
+ },
101
+ "hidden": false
102
+ },
103
+ {
104
+ "name": "pricelabs_add_listings_from_pms",
105
+ "description": "Import newly added listings from a connected PMS into the PriceLabs account. Backed by POST /v1/add_listing_data.",
106
+ "inputSchema": {
107
+ "type": "object",
108
+ "properties": {
109
+ "account_id": {
110
+ "type": "string"
111
+ },
112
+ "pms": {
113
+ "type": "string"
114
+ }
115
+ },
116
+ "required": [
117
+ "account_id",
118
+ "pms"
119
+ ],
120
+ "additionalProperties": false
121
+ },
122
+ "hidden": false
123
+ },
124
+ {
125
+ "name": "pricelabs_get_listing_prices",
126
+ "description": "Fetch the recommended day-by-day prices for one or more listings (paginated by date range). Backed by POST /v1/listing_prices.",
127
+ "inputSchema": {
128
+ "type": "object",
129
+ "properties": {
130
+ "listings": {
131
+ "type": "array",
132
+ "items": {
133
+ "type": "object",
134
+ "properties": {
135
+ "id": {
136
+ "type": "string"
137
+ },
138
+ "pms": {
139
+ "type": "string"
140
+ },
141
+ "dateFrom": {
142
+ "type": "string"
143
+ },
144
+ "dateTo": {
145
+ "type": "string"
146
+ },
147
+ "reason": {
148
+ "type": "string"
149
+ }
150
+ },
151
+ "required": [
152
+ "id",
153
+ "pms"
154
+ ],
155
+ "additionalProperties": false
156
+ }
157
+ }
158
+ },
159
+ "required": [
160
+ "listings"
161
+ ],
162
+ "additionalProperties": false
163
+ },
164
+ "hidden": false,
165
+ "annotations": {
166
+ "readOnlyHint": true
167
+ }
168
+ },
169
+ {
170
+ "name": "pricelabs_get_listing_overrides",
171
+ "description": "Fetch a listing's date-specific overrides (price floor, min stay, weekend modifier). Backed by GET /v1/listings/{listing_id}/overrides.",
172
+ "inputSchema": {
173
+ "type": "object",
174
+ "properties": {
175
+ "listing_id": {
176
+ "type": "string"
177
+ },
178
+ "pms": {
179
+ "type": "string"
180
+ }
181
+ },
182
+ "required": [
183
+ "listing_id"
184
+ ],
185
+ "additionalProperties": false
186
+ },
187
+ "hidden": false,
188
+ "annotations": {
189
+ "readOnlyHint": true
190
+ }
191
+ },
192
+ {
193
+ "name": "pricelabs_upsert_listing_overrides",
194
+ "description": "Add or update a listing's date-specific overrides. Backed by POST /v1/listings/{listing_id}/overrides.",
195
+ "inputSchema": {
196
+ "type": "object",
197
+ "properties": {
198
+ "listing_id": {
199
+ "type": "string"
200
+ },
201
+ "pms": {
202
+ "type": "string"
203
+ },
204
+ "overrides": {
205
+ "type": "array",
206
+ "items": {
207
+ "type": "object",
208
+ "properties": {
209
+ "date": {
210
+ "type": "string"
211
+ },
212
+ "price_type": {
213
+ "type": "string",
214
+ "enum": [
215
+ "fixed",
216
+ "percent"
217
+ ]
218
+ },
219
+ "price": {
220
+ "type": "number"
221
+ },
222
+ "min_stay": {
223
+ "type": "integer",
224
+ "minimum": -9007199254740991,
225
+ "maximum": 9007199254740991
226
+ },
227
+ "weekend_increase": {
228
+ "type": "number"
229
+ }
230
+ },
231
+ "required": [
232
+ "date"
233
+ ],
234
+ "additionalProperties": false
235
+ }
236
+ }
237
+ },
238
+ "required": [
239
+ "listing_id",
240
+ "overrides"
241
+ ],
242
+ "additionalProperties": false
243
+ },
244
+ "hidden": false
245
+ },
246
+ {
247
+ "name": "pricelabs_delete_listing_overrides",
248
+ "description": "Delete a listing's date-specific overrides for the supplied dates. Backed by DELETE /v1/listings/{listing_id}/overrides.",
249
+ "inputSchema": {
250
+ "type": "object",
251
+ "properties": {
252
+ "listing_id": {
253
+ "type": "string"
254
+ },
255
+ "pms": {
256
+ "type": "string"
257
+ },
258
+ "dates": {
259
+ "type": "array",
260
+ "items": {
261
+ "type": "string"
262
+ }
263
+ }
264
+ },
265
+ "required": [
266
+ "listing_id",
267
+ "dates"
268
+ ],
269
+ "additionalProperties": false
270
+ },
271
+ "hidden": false
272
+ },
273
+ {
274
+ "name": "pricelabs_fetch_rate_plans",
275
+ "description": "Fetch the rate-plan adjustments configured for your listings. Backed by GET /v1/fetch_rate_plans.",
276
+ "inputSchema": {
277
+ "type": "object",
278
+ "properties": {
279
+ "listing_id": {
280
+ "type": "string"
281
+ },
282
+ "pms": {
283
+ "type": "string"
284
+ }
285
+ },
286
+ "additionalProperties": false
287
+ },
288
+ "hidden": false,
289
+ "annotations": {
290
+ "readOnlyHint": true
291
+ }
292
+ },
293
+ {
294
+ "name": "pricelabs_get_neighborhood_data",
295
+ "description": "Get neighborhood / market-comp data (booked %, ADR, comp set) for a listing. Backed by GET /v1/neighborhood_data.",
296
+ "inputSchema": {
297
+ "type": "object",
298
+ "properties": {
299
+ "listing_id": {
300
+ "type": "string"
301
+ },
302
+ "pms": {
303
+ "type": "string"
304
+ }
305
+ },
306
+ "required": [
307
+ "listing_id"
308
+ ],
309
+ "additionalProperties": false
310
+ },
311
+ "hidden": false,
312
+ "annotations": {
313
+ "readOnlyHint": true
314
+ }
315
+ },
316
+ {
317
+ "name": "pricelabs_get_reservation_data",
318
+ "description": "Get reservations received from the connected PMS, including rental revenue. Backed by GET /v1/reservation_data.",
319
+ "inputSchema": {
320
+ "type": "object",
321
+ "properties": {
322
+ "listing_id": {
323
+ "type": "string"
324
+ },
325
+ "pms": {
326
+ "type": "string"
327
+ },
328
+ "from": {
329
+ "type": "string"
330
+ },
331
+ "to": {
332
+ "type": "string"
333
+ }
334
+ },
335
+ "additionalProperties": false
336
+ },
337
+ "hidden": false,
338
+ "annotations": {
339
+ "readOnlyHint": true
340
+ }
341
+ }
342
+ ]
343
+ }