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
@@ -68,6 +68,31 @@
68
68
  "openWorldHint": false
69
69
  }
70
70
  },
71
+ {
72
+ "name": "create_organization",
73
+ "description": "Creates a new organization.",
74
+ "inputSchema": {
75
+ "type": "object",
76
+ "properties": {
77
+ "name": {
78
+ "type": "string",
79
+ "minLength": 1
80
+ }
81
+ },
82
+ "required": [
83
+ "name"
84
+ ],
85
+ "additionalProperties": false
86
+ },
87
+ "hidden": true,
88
+ "annotations": {
89
+ "title": "Create organization",
90
+ "readOnlyHint": false,
91
+ "destructiveHint": false,
92
+ "idempotentHint": false,
93
+ "openWorldHint": false
94
+ }
95
+ },
71
96
  {
72
97
  "name": "list_projects",
73
98
  "description": "Lists all Supabase projects for the user. Use this to help discover the project ID of the project that the user is working on.",
@@ -727,6 +752,119 @@
727
752
  "openWorldHint": false
728
753
  }
729
754
  },
755
+ {
756
+ "name": "list_edge_functions_rest",
757
+ "description": "REST-only: list Edge Functions with Supabase Management API project-ref errors.",
758
+ "inputSchema": {
759
+ "type": "object",
760
+ "properties": {
761
+ "project_id": {
762
+ "type": "string"
763
+ }
764
+ },
765
+ "required": [
766
+ "project_id"
767
+ ],
768
+ "additionalProperties": false
769
+ },
770
+ "hidden": true,
771
+ "annotations": {
772
+ "title": "List Edge Functions (REST)",
773
+ "readOnlyHint": true,
774
+ "destructiveHint": false,
775
+ "idempotentHint": true,
776
+ "openWorldHint": false
777
+ }
778
+ },
779
+ {
780
+ "name": "get_edge_function_rest",
781
+ "description": "REST-only: get an Edge Function with Supabase Management API project-ref errors.",
782
+ "inputSchema": {
783
+ "type": "object",
784
+ "properties": {
785
+ "project_id": {
786
+ "type": "string"
787
+ },
788
+ "function_slug": {
789
+ "type": "string"
790
+ }
791
+ },
792
+ "required": [
793
+ "project_id",
794
+ "function_slug"
795
+ ],
796
+ "additionalProperties": false
797
+ },
798
+ "hidden": true,
799
+ "annotations": {
800
+ "title": "Get Edge Function (REST)",
801
+ "readOnlyHint": true,
802
+ "destructiveHint": false,
803
+ "idempotentHint": true,
804
+ "openWorldHint": false
805
+ }
806
+ },
807
+ {
808
+ "name": "deploy_edge_function_rest",
809
+ "description": "REST-only: deploy an Edge Function with Supabase Management API project-ref errors.",
810
+ "inputSchema": {
811
+ "type": "object",
812
+ "properties": {
813
+ "project_id": {
814
+ "type": "string"
815
+ },
816
+ "name": {
817
+ "type": "string",
818
+ "description": "The name of the function"
819
+ },
820
+ "entrypoint_path": {
821
+ "description": "The entrypoint of the function",
822
+ "type": "string"
823
+ },
824
+ "import_map_path": {
825
+ "description": "The import map for the function.",
826
+ "type": "string"
827
+ },
828
+ "verify_jwt": {
829
+ "description": "Whether to require a valid JWT in the Authorization header. You SHOULD ALWAYS enable this to ensure authorized access. ONLY disable if the function previously had it disabled OR you've confirmed the function body implements custom authentication (e.g., API keys, webhooks) OR the user explicitly requested it be disabled.",
830
+ "type": "boolean"
831
+ },
832
+ "files": {
833
+ "description": "The files to upload. This should include the entrypoint, deno.json, and any relative dependencies. Include the deno.json and deno.jsonc files to configure the Deno runtime (e.g., compiler options, imports) if they exist.",
834
+ "type": "array",
835
+ "items": {
836
+ "type": "object",
837
+ "properties": {
838
+ "name": {
839
+ "type": "string"
840
+ },
841
+ "content": {
842
+ "type": "string"
843
+ }
844
+ },
845
+ "required": [
846
+ "name",
847
+ "content"
848
+ ],
849
+ "additionalProperties": false
850
+ }
851
+ }
852
+ },
853
+ "required": [
854
+ "project_id",
855
+ "name"
856
+ ],
857
+ "additionalProperties": false
858
+ },
859
+ "hidden": true,
860
+ "annotations": {
861
+ "title": "Deploy Edge Function (REST)",
862
+ "readOnlyHint": false,
863
+ "destructiveHint": true,
864
+ "idempotentHint": false,
865
+ "openWorldHint": false
866
+ }
867
+ },
730
868
  {
731
869
  "name": "create_edge_function",
732
870
  "description": "REST-only: create a new Edge Function (POST behavior — 400 on duplicate slug).",
@@ -788,6 +926,67 @@
788
926
  "openWorldHint": false
789
927
  }
790
928
  },
929
+ {
930
+ "name": "patch_edge_function",
931
+ "description": "REST-only: patch an existing Edge Function (404 on missing slug).",
932
+ "inputSchema": {
933
+ "type": "object",
934
+ "properties": {
935
+ "project_id": {
936
+ "type": "string"
937
+ },
938
+ "name": {
939
+ "type": "string",
940
+ "description": "The name of the function"
941
+ },
942
+ "entrypoint_path": {
943
+ "description": "The entrypoint of the function",
944
+ "type": "string"
945
+ },
946
+ "import_map_path": {
947
+ "description": "The import map for the function.",
948
+ "type": "string"
949
+ },
950
+ "verify_jwt": {
951
+ "description": "Whether to require a valid JWT in the Authorization header. You SHOULD ALWAYS enable this to ensure authorized access. ONLY disable if the function previously had it disabled OR you've confirmed the function body implements custom authentication (e.g., API keys, webhooks) OR the user explicitly requested it be disabled.",
952
+ "type": "boolean"
953
+ },
954
+ "files": {
955
+ "description": "The files to upload. This should include the entrypoint, deno.json, and any relative dependencies. Include the deno.json and deno.jsonc files to configure the Deno runtime (e.g., compiler options, imports) if they exist.",
956
+ "type": "array",
957
+ "items": {
958
+ "type": "object",
959
+ "properties": {
960
+ "name": {
961
+ "type": "string"
962
+ },
963
+ "content": {
964
+ "type": "string"
965
+ }
966
+ },
967
+ "required": [
968
+ "name",
969
+ "content"
970
+ ],
971
+ "additionalProperties": false
972
+ }
973
+ }
974
+ },
975
+ "required": [
976
+ "project_id",
977
+ "name"
978
+ ],
979
+ "additionalProperties": false
980
+ },
981
+ "hidden": true,
982
+ "annotations": {
983
+ "title": "Patch Edge Function (REST)",
984
+ "readOnlyHint": false,
985
+ "destructiveHint": false,
986
+ "idempotentHint": false,
987
+ "openWorldHint": false
988
+ }
989
+ },
791
990
  {
792
991
  "name": "delete_edge_function",
793
992
  "description": "Deletes an Edge Function from a Supabase project.",
@@ -1929,6 +2128,121 @@
1929
2128
  "openWorldHint": false
1930
2129
  }
1931
2130
  },
2131
+ {
2132
+ "name": "get_project_auth_config",
2133
+ "description": "Gets auth configuration for a Supabase project.",
2134
+ "inputSchema": {
2135
+ "type": "object",
2136
+ "properties": {
2137
+ "project_id": {
2138
+ "type": "string"
2139
+ }
2140
+ },
2141
+ "required": [
2142
+ "project_id"
2143
+ ],
2144
+ "additionalProperties": false
2145
+ },
2146
+ "hidden": true,
2147
+ "annotations": {
2148
+ "readOnlyHint": true,
2149
+ "destructiveHint": false,
2150
+ "idempotentHint": true,
2151
+ "openWorldHint": false
2152
+ }
2153
+ },
2154
+ {
2155
+ "name": "get_project_pgsodium",
2156
+ "description": "Gets pgsodium status for a Supabase project.",
2157
+ "inputSchema": {
2158
+ "type": "object",
2159
+ "properties": {
2160
+ "project_id": {
2161
+ "type": "string"
2162
+ }
2163
+ },
2164
+ "required": [
2165
+ "project_id"
2166
+ ],
2167
+ "additionalProperties": false
2168
+ },
2169
+ "hidden": true,
2170
+ "annotations": {
2171
+ "readOnlyHint": true,
2172
+ "destructiveHint": false,
2173
+ "idempotentHint": true,
2174
+ "openWorldHint": false
2175
+ }
2176
+ },
2177
+ {
2178
+ "name": "get_project_ssl_enforcement",
2179
+ "description": "Gets SSL enforcement config for a Supabase project.",
2180
+ "inputSchema": {
2181
+ "type": "object",
2182
+ "properties": {
2183
+ "project_id": {
2184
+ "type": "string"
2185
+ }
2186
+ },
2187
+ "required": [
2188
+ "project_id"
2189
+ ],
2190
+ "additionalProperties": false
2191
+ },
2192
+ "hidden": true,
2193
+ "annotations": {
2194
+ "readOnlyHint": true,
2195
+ "destructiveHint": false,
2196
+ "idempotentHint": true,
2197
+ "openWorldHint": false
2198
+ }
2199
+ },
2200
+ {
2201
+ "name": "get_project_network_restrictions",
2202
+ "description": "Gets network restrictions for a Supabase project.",
2203
+ "inputSchema": {
2204
+ "type": "object",
2205
+ "properties": {
2206
+ "project_id": {
2207
+ "type": "string"
2208
+ }
2209
+ },
2210
+ "required": [
2211
+ "project_id"
2212
+ ],
2213
+ "additionalProperties": false
2214
+ },
2215
+ "hidden": true,
2216
+ "annotations": {
2217
+ "readOnlyHint": true,
2218
+ "destructiveHint": false,
2219
+ "idempotentHint": true,
2220
+ "openWorldHint": false
2221
+ }
2222
+ },
2223
+ {
2224
+ "name": "get_project_custom_hostname",
2225
+ "description": "Gets custom hostname config for a Supabase project.",
2226
+ "inputSchema": {
2227
+ "type": "object",
2228
+ "properties": {
2229
+ "project_id": {
2230
+ "type": "string"
2231
+ }
2232
+ },
2233
+ "required": [
2234
+ "project_id"
2235
+ ],
2236
+ "additionalProperties": false
2237
+ },
2238
+ "hidden": true,
2239
+ "annotations": {
2240
+ "readOnlyHint": true,
2241
+ "destructiveHint": false,
2242
+ "idempotentHint": true,
2243
+ "openWorldHint": false
2244
+ }
2245
+ },
1932
2246
  {
1933
2247
  "name": "list_rls_policies",
1934
2248
  "description": "Lists all Row Level Security policies for a table.",
@@ -2710,6 +3024,22 @@
2710
3024
  "project_id": {
2711
3025
  "type": "string",
2712
3026
  "description": "The project ID"
3027
+ },
3028
+ "page": {
3029
+ "description": "1-based page number",
3030
+ "type": "integer",
3031
+ "exclusiveMinimum": 0,
3032
+ "maximum": 9007199254740991
3033
+ },
3034
+ "per_page": {
3035
+ "description": "Page size",
3036
+ "type": "integer",
3037
+ "exclusiveMinimum": 0,
3038
+ "maximum": 9007199254740991
3039
+ },
3040
+ "search": {
3041
+ "description": "Secret name substring filter",
3042
+ "type": "string"
2713
3043
  }
2714
3044
  },
2715
3045
  "required": [
@@ -2792,6 +3122,113 @@
2792
3122
  "openWorldHint": false
2793
3123
  }
2794
3124
  },
3125
+ {
3126
+ "name": "list_secrets_rest",
3127
+ "description": "REST-only: list Vault secrets with Supabase Management API project-ref errors.",
3128
+ "inputSchema": {
3129
+ "type": "object",
3130
+ "properties": {
3131
+ "project_id": {
3132
+ "type": "string",
3133
+ "description": "The project ID"
3134
+ },
3135
+ "page": {
3136
+ "description": "1-based page number",
3137
+ "type": "integer",
3138
+ "exclusiveMinimum": 0,
3139
+ "maximum": 9007199254740991
3140
+ },
3141
+ "per_page": {
3142
+ "description": "Page size",
3143
+ "type": "integer",
3144
+ "exclusiveMinimum": 0,
3145
+ "maximum": 9007199254740991
3146
+ },
3147
+ "search": {
3148
+ "description": "Secret name substring filter",
3149
+ "type": "string"
3150
+ }
3151
+ },
3152
+ "required": [
3153
+ "project_id"
3154
+ ],
3155
+ "additionalProperties": false
3156
+ },
3157
+ "hidden": true,
3158
+ "annotations": {
3159
+ "readOnlyHint": true,
3160
+ "destructiveHint": false,
3161
+ "idempotentHint": true,
3162
+ "openWorldHint": false
3163
+ }
3164
+ },
3165
+ {
3166
+ "name": "create_secret_rest",
3167
+ "description": "REST-only: create a Vault secret with Supabase Management API project-ref errors.",
3168
+ "inputSchema": {
3169
+ "type": "object",
3170
+ "properties": {
3171
+ "project_id": {
3172
+ "type": "string",
3173
+ "description": "The project ID"
3174
+ },
3175
+ "name": {
3176
+ "type": "string",
3177
+ "description": "The secret name"
3178
+ },
3179
+ "value": {
3180
+ "type": "string",
3181
+ "description": "The secret value"
3182
+ },
3183
+ "description": {
3184
+ "description": "A description for the secret",
3185
+ "type": "string"
3186
+ }
3187
+ },
3188
+ "required": [
3189
+ "project_id",
3190
+ "name",
3191
+ "value"
3192
+ ],
3193
+ "additionalProperties": false
3194
+ },
3195
+ "hidden": true,
3196
+ "annotations": {
3197
+ "readOnlyHint": false,
3198
+ "destructiveHint": false,
3199
+ "idempotentHint": false,
3200
+ "openWorldHint": false
3201
+ }
3202
+ },
3203
+ {
3204
+ "name": "delete_secret_rest",
3205
+ "description": "REST-only: delete a Vault secret with Supabase Management API project-ref errors.",
3206
+ "inputSchema": {
3207
+ "type": "object",
3208
+ "properties": {
3209
+ "project_id": {
3210
+ "type": "string",
3211
+ "description": "The project ID"
3212
+ },
3213
+ "secret_id": {
3214
+ "type": "string",
3215
+ "description": "The secret ID to delete"
3216
+ }
3217
+ },
3218
+ "required": [
3219
+ "project_id",
3220
+ "secret_id"
3221
+ ],
3222
+ "additionalProperties": false
3223
+ },
3224
+ "hidden": true,
3225
+ "annotations": {
3226
+ "readOnlyHint": false,
3227
+ "destructiveHint": true,
3228
+ "idempotentHint": false,
3229
+ "openWorldHint": false
3230
+ }
3231
+ },
2795
3232
  {
2796
3233
  "name": "postgrest_select",
2797
3234
  "description": "Handles PostgREST select requests for REST parity coverage.",