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
@@ -322,7 +322,8 @@
322
322
  "unstarted",
323
323
  "started",
324
324
  "completed",
325
- "cancelled"
325
+ "cancelled",
326
+ "duplicate"
326
327
  ]
327
328
  },
328
329
  "color": {
@@ -579,8 +580,7 @@
579
580
  "type": "object",
580
581
  "properties": {
581
582
  "title": {
582
- "type": "string",
583
- "minLength": 1
583
+ "type": "string"
584
584
  },
585
585
  "teamId": {
586
586
  "type": "string"
@@ -592,9 +592,7 @@
592
592
  "type": "string"
593
593
  },
594
594
  "priority": {
595
- "type": "number",
596
- "minimum": 0,
597
- "maximum": 4
595
+ "type": "number"
598
596
  },
599
597
  "projectId": {
600
598
  "type": "string"
@@ -636,8 +634,7 @@
636
634
  "required": [
637
635
  "title",
638
636
  "teamId"
639
- ],
640
- "additionalProperties": false
637
+ ]
641
638
  },
642
639
  "hidden": false
643
640
  },
@@ -660,9 +657,7 @@
660
657
  "type": "string"
661
658
  },
662
659
  "priority": {
663
- "type": "number",
664
- "minimum": 0,
665
- "maximum": 4
660
+ "type": "number"
666
661
  },
667
662
  "projectId": {
668
663
  "type": "string"
@@ -715,8 +710,7 @@
715
710
  },
716
711
  "required": [
717
712
  "id"
718
- ],
719
- "additionalProperties": false
713
+ ]
720
714
  },
721
715
  "hidden": false
722
716
  },
@@ -840,8 +834,7 @@
840
834
  },
841
835
  "required": [
842
836
  "issueId"
843
- ],
844
- "additionalProperties": false
837
+ ]
845
838
  },
846
839
  "hidden": false
847
840
  },
@@ -860,8 +853,7 @@
860
853
  },
861
854
  "required": [
862
855
  "issueId"
863
- ],
864
- "additionalProperties": false
856
+ ]
865
857
  },
866
858
  "hidden": false
867
859
  },
@@ -1240,7 +1232,7 @@
1240
1232
  "inputSchema": {
1241
1233
  "type": "object",
1242
1234
  "properties": {
1243
- "documentId": {
1235
+ "id": {
1244
1236
  "type": "string"
1245
1237
  },
1246
1238
  "title": {
@@ -1257,7 +1249,75 @@
1257
1249
  }
1258
1250
  },
1259
1251
  "required": [
1260
- "documentId"
1252
+ "id"
1253
+ ],
1254
+ "additionalProperties": false
1255
+ },
1256
+ "hidden": true
1257
+ },
1258
+ {
1259
+ "name": "linear_getDocumentById",
1260
+ "description": "Get a document by ID",
1261
+ "inputSchema": {
1262
+ "type": "object",
1263
+ "properties": {
1264
+ "id": {
1265
+ "type": "string"
1266
+ }
1267
+ },
1268
+ "required": [
1269
+ "id"
1270
+ ],
1271
+ "additionalProperties": false
1272
+ },
1273
+ "hidden": true
1274
+ },
1275
+ {
1276
+ "name": "linear_getProjectDocuments",
1277
+ "description": "List project documents",
1278
+ "inputSchema": {
1279
+ "type": "object",
1280
+ "properties": {
1281
+ "projectId": {
1282
+ "type": "string"
1283
+ }
1284
+ },
1285
+ "required": [
1286
+ "projectId"
1287
+ ],
1288
+ "additionalProperties": false
1289
+ },
1290
+ "hidden": true
1291
+ },
1292
+ {
1293
+ "name": "linear_archiveDocument",
1294
+ "description": "Archive a document",
1295
+ "inputSchema": {
1296
+ "type": "object",
1297
+ "properties": {
1298
+ "id": {
1299
+ "type": "string"
1300
+ }
1301
+ },
1302
+ "required": [
1303
+ "id"
1304
+ ],
1305
+ "additionalProperties": false
1306
+ },
1307
+ "hidden": true
1308
+ },
1309
+ {
1310
+ "name": "linear_unarchiveDocument",
1311
+ "description": "Unarchive a document",
1312
+ "inputSchema": {
1313
+ "type": "object",
1314
+ "properties": {
1315
+ "id": {
1316
+ "type": "string"
1317
+ }
1318
+ },
1319
+ "required": [
1320
+ "id"
1261
1321
  ],
1262
1322
  "additionalProperties": false
1263
1323
  },
@@ -1445,6 +1505,23 @@
1445
1505
  },
1446
1506
  "hidden": false
1447
1507
  },
1508
+ {
1509
+ "name": "linear_getProjectMembers",
1510
+ "description": "Get all members associated with a project",
1511
+ "inputSchema": {
1512
+ "type": "object",
1513
+ "properties": {
1514
+ "projectId": {
1515
+ "type": "string"
1516
+ }
1517
+ },
1518
+ "required": [
1519
+ "projectId"
1520
+ ],
1521
+ "additionalProperties": false
1522
+ },
1523
+ "hidden": true
1524
+ },
1448
1525
  {
1449
1526
  "name": "linear_getProject",
1450
1527
  "description": "Get a single project by ID",
@@ -1477,6 +1554,9 @@
1477
1554
  "content": {
1478
1555
  "type": "string"
1479
1556
  },
1557
+ "teamId": {
1558
+ "type": "string"
1559
+ },
1480
1560
  "teamIds": {
1481
1561
  "type": "array",
1482
1562
  "items": {
@@ -1488,8 +1568,7 @@
1488
1568
  }
1489
1569
  },
1490
1570
  "required": [
1491
- "name",
1492
- "teamIds"
1571
+ "name"
1493
1572
  ],
1494
1573
  "additionalProperties": false
1495
1574
  },
@@ -1513,6 +1592,9 @@
1513
1592
  "content": {
1514
1593
  "type": "string"
1515
1594
  },
1595
+ "icon": {
1596
+ "type": "string"
1597
+ },
1516
1598
  "state": {
1517
1599
  "type": "string"
1518
1600
  }
@@ -1788,8 +1870,10 @@
1788
1870
  "status": {
1789
1871
  "type": "string",
1790
1872
  "enum": [
1791
- "notStarted",
1792
- "inProgress",
1873
+ "backlog",
1874
+ "planned",
1875
+ "active",
1876
+ "started",
1793
1877
  "completed",
1794
1878
  "paused"
1795
1879
  ]
@@ -1835,8 +1919,10 @@
1835
1919
  "status": {
1836
1920
  "type": "string",
1837
1921
  "enum": [
1838
- "notStarted",
1839
- "inProgress",
1922
+ "backlog",
1923
+ "planned",
1924
+ "active",
1925
+ "started",
1840
1926
  "completed",
1841
1927
  "paused"
1842
1928
  ]
@@ -2260,9 +2346,6 @@
2260
2346
  "type": "string",
2261
2347
  "minLength": 1
2262
2348
  },
2263
- "description": {
2264
- "type": "string"
2265
- },
2266
2349
  "teamId": {
2267
2350
  "type": "string"
2268
2351
  },
@@ -2273,12 +2356,6 @@
2273
2356
  },
2274
2357
  "additionalProperties": {}
2275
2358
  },
2276
- "icon": {
2277
- "type": "string"
2278
- },
2279
- "color": {
2280
- "type": "string"
2281
- },
2282
2359
  "shared": {
2283
2360
  "type": "boolean"
2284
2361
  }
@@ -2291,19 +2368,56 @@
2291
2368
  "hidden": true
2292
2369
  },
2293
2370
  {
2294
- "name": "linear_listCustomViews",
2295
- "description": "List custom views, optionally filtered by team",
2371
+ "name": "linear_createSavedView",
2372
+ "description": "Create a Linear saved view (CustomView in the API)",
2296
2373
  "inputSchema": {
2297
2374
  "type": "object",
2298
2375
  "properties": {
2376
+ "name": {
2377
+ "type": "string",
2378
+ "minLength": 1
2379
+ },
2299
2380
  "teamId": {
2300
2381
  "type": "string"
2382
+ },
2383
+ "filterData": {
2384
+ "type": "object",
2385
+ "propertyNames": {
2386
+ "type": "string"
2387
+ },
2388
+ "additionalProperties": {}
2389
+ },
2390
+ "shared": {
2391
+ "type": "boolean"
2301
2392
  }
2302
2393
  },
2394
+ "required": [
2395
+ "name"
2396
+ ],
2397
+ "additionalProperties": false
2398
+ },
2399
+ "hidden": false
2400
+ },
2401
+ {
2402
+ "name": "linear_listCustomViews",
2403
+ "description": "List custom views, optionally filtered by team",
2404
+ "inputSchema": {
2405
+ "type": "object",
2406
+ "properties": {},
2303
2407
  "additionalProperties": false
2304
2408
  },
2305
2409
  "hidden": true
2306
2410
  },
2411
+ {
2412
+ "name": "linear_getSavedViews",
2413
+ "description": "Get Linear saved views (CustomView in the API)",
2414
+ "inputSchema": {
2415
+ "type": "object",
2416
+ "properties": {},
2417
+ "additionalProperties": false
2418
+ },
2419
+ "hidden": false
2420
+ },
2307
2421
  {
2308
2422
  "name": "linear_getCustomView",
2309
2423
  "description": "Get a custom view by ID",
@@ -2496,7 +2610,7 @@
2496
2610
  ],
2497
2611
  "additionalProperties": false
2498
2612
  },
2499
- "hidden": true
2613
+ "hidden": false
2500
2614
  },
2501
2615
  {
2502
2616
  "name": "linear_getProjectUpdate",
@@ -2524,9 +2638,6 @@
2524
2638
  "projectId": {
2525
2639
  "type": "string"
2526
2640
  },
2527
- "limit": {
2528
- "type": "number"
2529
- },
2530
2641
  "includeArchived": {
2531
2642
  "type": "boolean"
2532
2643
  }
@@ -2535,6 +2646,23 @@
2535
2646
  },
2536
2647
  "hidden": true
2537
2648
  },
2649
+ {
2650
+ "name": "linear_getProjectUpdates",
2651
+ "description": "Get project updates from Linear",
2652
+ "inputSchema": {
2653
+ "type": "object",
2654
+ "properties": {
2655
+ "projectId": {
2656
+ "type": "string"
2657
+ },
2658
+ "includeArchived": {
2659
+ "type": "boolean"
2660
+ }
2661
+ },
2662
+ "additionalProperties": false
2663
+ },
2664
+ "hidden": false
2665
+ },
2538
2666
  {
2539
2667
  "name": "linear_updateProjectUpdate",
2540
2668
  "description": "Update a project update",
@@ -3350,6 +3478,16 @@
3350
3478
  },
3351
3479
  "hidden": true
3352
3480
  },
3481
+ {
3482
+ "name": "linear_getFavoriteViews",
3483
+ "description": "Get the current user's favorite views",
3484
+ "inputSchema": {
3485
+ "type": "object",
3486
+ "properties": {},
3487
+ "additionalProperties": false
3488
+ },
3489
+ "hidden": false
3490
+ },
3353
3491
  {
3354
3492
  "name": "linear_deleteFavorite",
3355
3493
  "description": "Remove an item from favorites",
@@ -3404,6 +3542,26 @@
3404
3542
  },
3405
3543
  "hidden": true
3406
3544
  },
3545
+ {
3546
+ "name": "linear_getNotifications",
3547
+ "description": "Get the current user's notifications from Linear",
3548
+ "inputSchema": {
3549
+ "type": "object",
3550
+ "properties": {
3551
+ "includeRead": {
3552
+ "type": "boolean"
3553
+ },
3554
+ "includeArchived": {
3555
+ "type": "boolean"
3556
+ },
3557
+ "limit": {
3558
+ "type": "number"
3559
+ }
3560
+ },
3561
+ "additionalProperties": false
3562
+ },
3563
+ "hidden": false
3564
+ },
3407
3565
  {
3408
3566
  "name": "linear_listNotifications",
3409
3567
  "description": "List the current user's notifications",
@@ -4602,6 +4760,26 @@
4602
4760
  },
4603
4761
  "hidden": true
4604
4762
  },
4763
+ {
4764
+ "name": "linear_getReleasePipelines",
4765
+ "description": "Get release pipelines from Linear",
4766
+ "inputSchema": {
4767
+ "type": "object",
4768
+ "properties": {
4769
+ "teamId": {
4770
+ "type": "string"
4771
+ },
4772
+ "limit": {
4773
+ "type": "number"
4774
+ },
4775
+ "includeArchived": {
4776
+ "type": "boolean"
4777
+ }
4778
+ },
4779
+ "additionalProperties": false
4780
+ },
4781
+ "hidden": false
4782
+ },
4605
4783
  {
4606
4784
  "name": "linear_updateReleasePipeline",
4607
4785
  "description": "Update a release pipeline",
@@ -4741,6 +4919,26 @@
4741
4919
  },
4742
4920
  "hidden": true
4743
4921
  },
4922
+ {
4923
+ "name": "linear_getReleaseStages",
4924
+ "description": "Get release stages from Linear",
4925
+ "inputSchema": {
4926
+ "type": "object",
4927
+ "properties": {
4928
+ "pipelineId": {
4929
+ "type": "string"
4930
+ },
4931
+ "limit": {
4932
+ "type": "number"
4933
+ },
4934
+ "includeArchived": {
4935
+ "type": "boolean"
4936
+ }
4937
+ },
4938
+ "additionalProperties": false
4939
+ },
4940
+ "hidden": false
4941
+ },
4744
4942
  {
4745
4943
  "name": "linear_updateReleaseStage",
4746
4944
  "description": "Update a release stage",