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
@@ -188,7 +188,7 @@
188
188
  ],
189
189
  "additionalProperties": false
190
190
  },
191
- "hidden": true,
191
+ "hidden": false,
192
192
  "annotations": {
193
193
  "readOnlyHint": true
194
194
  }
@@ -1350,7 +1350,6 @@
1350
1350
  "limit": {
1351
1351
  "default": 100,
1352
1352
  "type": "number",
1353
- "minimum": 1,
1354
1353
  "maximum": 1000
1355
1354
  },
1356
1355
  "cursor": {
@@ -32,6 +32,10 @@
32
32
  "email": {
33
33
  "type": "string"
34
34
  },
35
+ "description": {
36
+ "type": "string"
37
+ },
38
+ "preferred_locales": {},
35
39
  "metadata": {
36
40
  "type": "object",
37
41
  "propertyNames": {
@@ -793,9 +797,7 @@
793
797
  "propertyNames": {
794
798
  "type": "string"
795
799
  },
796
- "additionalProperties": {
797
- "type": "string"
798
- }
800
+ "additionalProperties": {}
799
801
  },
800
802
  "invoice_settings": {
801
803
  "type": "object",
@@ -1688,6 +1690,35 @@
1688
1690
  },
1689
1691
  "hidden": true
1690
1692
  },
1693
+ {
1694
+ "name": "list_checkout_session_line_items",
1695
+ "description": "List line items for a checkout session",
1696
+ "inputSchema": {
1697
+ "type": "object",
1698
+ "properties": {
1699
+ "checkout_session_id": {
1700
+ "type": "string"
1701
+ },
1702
+ "limit": {
1703
+ "default": 10,
1704
+ "type": "integer",
1705
+ "minimum": 1,
1706
+ "maximum": 100
1707
+ },
1708
+ "starting_after": {
1709
+ "type": "string"
1710
+ },
1711
+ "ending_before": {
1712
+ "type": "string"
1713
+ }
1714
+ },
1715
+ "required": [
1716
+ "checkout_session_id"
1717
+ ],
1718
+ "additionalProperties": false
1719
+ },
1720
+ "hidden": true
1721
+ },
1691
1722
  {
1692
1723
  "name": "list_checkout_sessions",
1693
1724
  "description": "List checkout sessions",
@@ -2090,12 +2121,13 @@
2090
2121
  "propertyNames": {
2091
2122
  "type": "string"
2092
2123
  },
2093
- "additionalProperties": {
2094
- "type": "string"
2095
- }
2124
+ "additionalProperties": {}
2096
2125
  },
2097
2126
  "default_price": {
2098
2127
  "type": "string"
2128
+ },
2129
+ "tax_code": {
2130
+ "type": "string"
2099
2131
  }
2100
2132
  },
2101
2133
  "required": [
@@ -2543,12 +2575,34 @@
2543
2575
  "jurisdiction": {
2544
2576
  "type": "string"
2545
2577
  },
2578
+ "jurisdiction_level": {
2579
+ "type": "string",
2580
+ "enum": [
2581
+ "country",
2582
+ "state",
2583
+ "county",
2584
+ "city",
2585
+ "district"
2586
+ ]
2587
+ },
2546
2588
  "country": {
2547
2589
  "type": "string"
2548
2590
  },
2549
2591
  "state": {
2550
2592
  "type": "string"
2551
2593
  },
2594
+ "flat_amount": {
2595
+ "type": "integer",
2596
+ "minimum": -9007199254740991,
2597
+ "maximum": 9007199254740991
2598
+ },
2599
+ "rate_type": {
2600
+ "type": "string",
2601
+ "enum": [
2602
+ "percentage",
2603
+ "flat_amount"
2604
+ ]
2605
+ },
2552
2606
  "metadata": {
2553
2607
  "type": "object",
2554
2608
  "propertyNames": {
@@ -2606,6 +2660,16 @@
2606
2660
  "jurisdiction": {
2607
2661
  "type": "string"
2608
2662
  },
2663
+ "jurisdiction_level": {
2664
+ "type": "string",
2665
+ "enum": [
2666
+ "country",
2667
+ "state",
2668
+ "county",
2669
+ "city",
2670
+ "district"
2671
+ ]
2672
+ },
2609
2673
  "country": {
2610
2674
  "type": "string"
2611
2675
  },
@@ -2844,8 +2908,7 @@
2844
2908
  "type": "object",
2845
2909
  "properties": {
2846
2910
  "url": {
2847
- "type": "string",
2848
- "format": "uri"
2911
+ "type": "string"
2849
2912
  },
2850
2913
  "enabled_events": {
2851
2914
  "minItems": 1,
@@ -2871,7 +2934,6 @@
2871
2934
  }
2872
2935
  },
2873
2936
  "required": [
2874
- "url",
2875
2937
  "enabled_events"
2876
2938
  ],
2877
2939
  "additionalProperties": false
@@ -2928,8 +2990,7 @@
2928
2990
  "type": "string"
2929
2991
  },
2930
2992
  "url": {
2931
- "type": "string",
2932
- "format": "uri"
2993
+ "type": "string"
2933
2994
  },
2934
2995
  "enabled_events": {
2935
2996
  "type": "array",
@@ -3154,6 +3215,9 @@
3154
3215
  "source_transaction": {
3155
3216
  "type": "string"
3156
3217
  },
3218
+ "transfer_group": {
3219
+ "type": "string"
3220
+ },
3157
3221
  "description": {
3158
3222
  "type": "string"
3159
3223
  },
@@ -3535,6 +3599,9 @@
3535
3599
  },
3536
3600
  "additionalProperties": {}
3537
3601
  },
3602
+ "name": {
3603
+ "type": "string"
3604
+ },
3538
3605
  "metadata": {
3539
3606
  "type": "object",
3540
3607
  "propertyNames": {
@@ -5721,6 +5788,13 @@
5721
5788
  },
5722
5789
  "type": {
5723
5790
  "type": "string"
5791
+ },
5792
+ "cart": {
5793
+ "type": "object",
5794
+ "propertyNames": {
5795
+ "type": "string"
5796
+ },
5797
+ "additionalProperties": {}
5724
5798
  }
5725
5799
  },
5726
5800
  "required": [
@@ -5784,6 +5858,13 @@
5784
5858
  },
5785
5859
  "type": {
5786
5860
  "type": "string"
5861
+ },
5862
+ "cart": {
5863
+ "type": "object",
5864
+ "propertyNames": {
5865
+ "type": "string"
5866
+ },
5867
+ "additionalProperties": {}
5787
5868
  }
5788
5869
  },
5789
5870
  "required": [
@@ -5847,6 +5928,13 @@
5847
5928
  },
5848
5929
  "type": {
5849
5930
  "type": "string"
5931
+ },
5932
+ "cart": {
5933
+ "type": "object",
5934
+ "propertyNames": {
5935
+ "type": "string"
5936
+ },
5937
+ "additionalProperties": {}
5850
5938
  }
5851
5939
  },
5852
5940
  "required": [
@@ -5910,6 +5998,13 @@
5910
5998
  },
5911
5999
  "type": {
5912
6000
  "type": "string"
6001
+ },
6002
+ "cart": {
6003
+ "type": "object",
6004
+ "propertyNames": {
6005
+ "type": "string"
6006
+ },
6007
+ "additionalProperties": {}
5913
6008
  }
5914
6009
  },
5915
6010
  "required": [
@@ -5973,6 +6068,13 @@
5973
6068
  },
5974
6069
  "type": {
5975
6070
  "type": "string"
6071
+ },
6072
+ "cart": {
6073
+ "type": "object",
6074
+ "propertyNames": {
6075
+ "type": "string"
6076
+ },
6077
+ "additionalProperties": {}
5976
6078
  }
5977
6079
  },
5978
6080
  "required": [
@@ -6059,10 +6161,6 @@
6059
6161
  }
6060
6162
  }
6061
6163
  },
6062
- "required": [
6063
- "name",
6064
- "lookup_key"
6065
- ],
6066
6164
  "additionalProperties": false
6067
6165
  },
6068
6166
  "hidden": true
@@ -7326,6 +7424,10 @@
7326
7424
  "additionalProperties": {
7327
7425
  "type": "string"
7328
7426
  }
7427
+ },
7428
+ "customer_details": {},
7429
+ "__preview": {
7430
+ "type": "boolean"
7329
7431
  }
7330
7432
  },
7331
7433
  "additionalProperties": false
@@ -7366,9 +7468,7 @@
7366
7468
  "propertyNames": {
7367
7469
  "type": "string"
7368
7470
  },
7369
- "additionalProperties": {
7370
- "type": "string"
7371
- }
7471
+ "additionalProperties": {}
7372
7472
  },
7373
7473
  "expires_at": {
7374
7474
  "type": "number"
@@ -8067,6 +8167,9 @@
8067
8167
  },
8068
8168
  "additionalProperties": {}
8069
8169
  },
8170
+ "name": {
8171
+ "type": "string"
8172
+ },
8070
8173
  "metadata": {
8071
8174
  "type": "object",
8072
8175
  "propertyNames": {
@@ -10213,6 +10316,12 @@
10213
10316
  "type": "integer",
10214
10317
  "minimum": 1,
10215
10318
  "maximum": 100
10319
+ },
10320
+ "starting_after": {
10321
+ "type": "string"
10322
+ },
10323
+ "ending_before": {
10324
+ "type": "string"
10216
10325
  }
10217
10326
  },
10218
10327
  "required": [
@@ -10327,14 +10436,7 @@
10327
10436
  "type": "object",
10328
10437
  "properties": {
10329
10438
  "status": {
10330
- "type": "string",
10331
- "enum": [
10332
- "requires_input",
10333
- "processing",
10334
- "verified",
10335
- "canceled",
10336
- "redacted"
10337
- ]
10439
+ "type": "string"
10338
10440
  },
10339
10441
  "limit": {
10340
10442
  "default": 10,
@@ -10457,6 +10559,9 @@
10457
10559
  "verification_session": {
10458
10560
  "type": "string"
10459
10561
  },
10562
+ "type": {
10563
+ "type": "string"
10564
+ },
10460
10565
  "limit": {
10461
10566
  "default": 10,
10462
10567
  "type": "integer",
@@ -13832,6 +13937,7 @@
13832
13937
  "type": "string"
13833
13938
  },
13834
13939
  "replacements": {
13940
+ "default": [],
13835
13941
  "type": "array",
13836
13942
  "items": {
13837
13943
  "type": "string"
@@ -13839,16 +13945,19 @@
13839
13945
  },
13840
13946
  "request": {
13841
13947
  "type": "object",
13842
- "propertyNames": {
13843
- "type": "string"
13948
+ "properties": {
13949
+ "headers": {
13950
+ "type": "array",
13951
+ "items": {}
13952
+ },
13953
+ "body": {}
13844
13954
  },
13845
13955
  "additionalProperties": {}
13846
13956
  }
13847
13957
  },
13848
13958
  "required": [
13849
13959
  "url",
13850
- "payment_method",
13851
- "replacements"
13960
+ "payment_method"
13852
13961
  ],
13853
13962
  "additionalProperties": false
13854
13963
  },
@@ -13909,8 +14018,8 @@
13909
14018
  "limit": {
13910
14019
  "default": 10,
13911
14020
  "type": "integer",
13912
- "minimum": 1,
13913
- "maximum": 100
14021
+ "minimum": 0,
14022
+ "maximum": 9007199254740991
13914
14023
  },
13915
14024
  "starting_after": {
13916
14025
  "type": "string"
@@ -14395,13 +14504,21 @@
14395
14504
  "inputSchema": {
14396
14505
  "type": "object",
14397
14506
  "properties": {
14398
- "amount": {
14507
+ "payment_method_details": {
14399
14508
  "type": "object",
14400
14509
  "propertyNames": {
14401
14510
  "type": "string"
14402
14511
  },
14403
14512
  "additionalProperties": {}
14404
14513
  },
14514
+ "amount_details": {
14515
+ "type": "object",
14516
+ "propertyNames": {
14517
+ "type": "string"
14518
+ },
14519
+ "additionalProperties": {}
14520
+ },
14521
+ "amount": {},
14405
14522
  "payment_method_type": {
14406
14523
  "type": "string"
14407
14524
  },
@@ -14421,10 +14538,6 @@
14421
14538
  }
14422
14539
  }
14423
14540
  },
14424
- "required": [
14425
- "amount",
14426
- "payment_method_type"
14427
- ],
14428
14541
  "additionalProperties": false
14429
14542
  },
14430
14543
  "hidden": true
@@ -14473,7 +14586,9 @@
14473
14586
  "type": "integer",
14474
14587
  "minimum": -9007199254740991,
14475
14588
  "maximum": 9007199254740991
14476
- }
14589
+ },
14590
+ "amount": {},
14591
+ "currency": {}
14477
14592
  },
14478
14593
  "required": [
14479
14594
  "payment_record"
@@ -14488,6 +14603,9 @@
14488
14603
  "inputSchema": {
14489
14604
  "type": "object",
14490
14605
  "properties": {
14606
+ "payment_record": {
14607
+ "type": "string"
14608
+ },
14491
14609
  "limit": {
14492
14610
  "default": 10,
14493
14611
  "type": "integer",
@@ -14553,13 +14671,7 @@
14553
14671
  "payment_record": {
14554
14672
  "type": "string"
14555
14673
  },
14556
- "failed": {
14557
- "type": "object",
14558
- "propertyNames": {
14559
- "type": "string"
14560
- },
14561
- "additionalProperties": {}
14562
- },
14674
+ "failed": {},
14563
14675
  "reported_at": {
14564
14676
  "type": "integer",
14565
14677
  "minimum": -9007199254740991,
@@ -14848,7 +14960,11 @@
14848
14960
  "description": "List reporting report types",
14849
14961
  "inputSchema": {
14850
14962
  "type": "object",
14851
- "properties": {},
14963
+ "properties": {
14964
+ "limit": {
14965
+ "not": {}
14966
+ }
14967
+ },
14852
14968
  "additionalProperties": false
14853
14969
  },
14854
14970
  "hidden": true
@@ -14870,6 +14986,29 @@
14870
14986
  },
14871
14987
  "hidden": true
14872
14988
  },
14989
+ {
14990
+ "name": "list_entitlement_features_rest",
14991
+ "description": "List entitlement features via REST",
14992
+ "inputSchema": {
14993
+ "type": "object",
14994
+ "properties": {
14995
+ "limit": {
14996
+ "default": 10,
14997
+ "type": "integer",
14998
+ "minimum": 1,
14999
+ "maximum": 100
15000
+ },
15001
+ "starting_after": {
15002
+ "type": "string"
15003
+ },
15004
+ "ending_before": {
15005
+ "type": "string"
15006
+ }
15007
+ },
15008
+ "additionalProperties": false
15009
+ },
15010
+ "hidden": true
15011
+ },
14873
15012
  {
14874
15013
  "name": "retrieve_entitlement_feature",
14875
15014
  "description": "Retrieve an entitlement feature",