@evolvingmachines/evolve 0.0.55-project-sable.20260916.db0bc0bb

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 (98) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +25 -0
  3. package/dist/chunk-5GVMBEYI.js +11 -0
  4. package/dist/chunk-HQJI3HHU.js +1 -0
  5. package/dist/chunk-JS2UTK2I.js +427 -0
  6. package/dist/cli/index.cjs +73 -0
  7. package/dist/cli/index.d.cts +270 -0
  8. package/dist/cli/index.d.ts +270 -0
  9. package/dist/cli/index.js +54 -0
  10. package/dist/index.cjs +669 -0
  11. package/dist/index.d.cts +5023 -0
  12. package/dist/index.d.ts +5023 -0
  13. package/dist/index.js +230 -0
  14. package/dist/managed-modal-IJW62SSK.js +4 -0
  15. package/dist/resumable-HFSICSH3.js +1 -0
  16. package/dist/tar-GVC4KE52.js +1 -0
  17. package/dist/types-DlpTxdR_.d.cts +4777 -0
  18. package/dist/types-DlpTxdR_.d.ts +4777 -0
  19. package/dist/upload-KPYDMWFJ.js +1 -0
  20. package/docs-agents/SKILL.md +138 -0
  21. package/docs-agents/index.md +81 -0
  22. package/docs-agents/python/01-getting-started.md +511 -0
  23. package/docs-agents/python/02-configuration.md +855 -0
  24. package/docs-agents/python/03-runtime.md +899 -0
  25. package/docs-agents/python/04-streaming.md +451 -0
  26. package/docs-agents/python/05-swarm-pipeline.md +953 -0
  27. package/docs-agents/python/index.md +122 -0
  28. package/docs-agents/typescript/01-getting-started.md +494 -0
  29. package/docs-agents/typescript/02-configuration.md +841 -0
  30. package/docs-agents/typescript/03-runtime.md +864 -0
  31. package/docs-agents/typescript/04-streaming.md +478 -0
  32. package/docs-agents/typescript/05-swarm-pipeline.md +957 -0
  33. package/docs-agents/typescript/index.md +121 -0
  34. package/docs-evals/SKILL.md +112 -0
  35. package/docs-evals/cli-reference/agent.mdx +67 -0
  36. package/docs-evals/cli-reference/analysis.mdx +91 -0
  37. package/docs-evals/cli-reference/analyze.mdx +74 -0
  38. package/docs-evals/cli-reference/auth.mdx +60 -0
  39. package/docs-evals/cli-reference/check.mdx +146 -0
  40. package/docs-evals/cli-reference/dataset.mdx +133 -0
  41. package/docs-evals/cli-reference/index.mdx +108 -0
  42. package/docs-evals/cli-reference/job.mdx +239 -0
  43. package/docs-evals/cli-reference/run.mdx +196 -0
  44. package/docs-evals/cli-reference/secrets.mdx +95 -0
  45. package/docs-evals/cli-reference/skill.mdx +51 -0
  46. package/docs-evals/cli-reference/skills.mdx +81 -0
  47. package/docs-evals/cli-reference/trial.mdx +112 -0
  48. package/docs-evals/cli-reference/upload.mdx +36 -0
  49. package/docs-evals/core-concepts/agents.mdx +106 -0
  50. package/docs-evals/core-concepts/analyze.mdx +86 -0
  51. package/docs-evals/core-concepts/check.mdx +51 -0
  52. package/docs-evals/core-concepts/datasets.mdx +138 -0
  53. package/docs-evals/core-concepts/index.mdx +42 -0
  54. package/docs-evals/core-concepts/jobs.mdx +136 -0
  55. package/docs-evals/core-concepts/models.mdx +68 -0
  56. package/docs-evals/core-concepts/sandboxes.mdx +52 -0
  57. package/docs-evals/core-concepts/secrets.mdx +41 -0
  58. package/docs-evals/core-concepts/skills.mdx +42 -0
  59. package/docs-evals/core-concepts/tasks.mdx +216 -0
  60. package/docs-evals/core-concepts/trial-outputs.mdx +103 -0
  61. package/docs-evals/core-concepts/trials.mdx +103 -0
  62. package/docs-evals/core-concepts/upload.mdx +45 -0
  63. package/docs-evals/dashboard/checks.mdx +15 -0
  64. package/docs-evals/dashboard/datasets.mdx +24 -0
  65. package/docs-evals/dashboard/jobs.mdx +65 -0
  66. package/docs-evals/dashboard/traces.mdx +15 -0
  67. package/docs-evals/dashboard/trial-viewer.mdx +30 -0
  68. package/docs-evals/docs.json +180 -0
  69. package/docs-evals/getting-started/installation.mdx +56 -0
  70. package/docs-evals/getting-started/quick-start.mdx +85 -0
  71. package/docs-evals/index.mdx +36 -0
  72. package/docs-evals/sdk/python.mdx +139 -0
  73. package/docs-evals/sdk/typescript.mdx +141 -0
  74. package/docs-evals/sdk-reference/agents.mdx +105 -0
  75. package/docs-evals/sdk-reference/analyses.mdx +125 -0
  76. package/docs-evals/sdk-reference/auth.mdx +76 -0
  77. package/docs-evals/sdk-reference/checks.mdx +166 -0
  78. package/docs-evals/sdk-reference/datasets.mdx +305 -0
  79. package/docs-evals/sdk-reference/errors.mdx +199 -0
  80. package/docs-evals/sdk-reference/index.mdx +58 -0
  81. package/docs-evals/sdk-reference/jobs.mdx +731 -0
  82. package/docs-evals/sdk-reference/meta.mdx +52 -0
  83. package/docs-evals/sdk-reference/skills.mdx +68 -0
  84. package/docs-evals/sdk-reference/trials.mdx +232 -0
  85. package/docs-evals/sdk-reference/types.mdx +272 -0
  86. package/docs-evals/snippets/global-options.mdx +13 -0
  87. package/docs-evals/snippets/list-flags.mdx +23 -0
  88. package/harness-capabilities.json +430 -0
  89. package/hosted-error-codes.json +120 -0
  90. package/package.json +163 -0
  91. package/skills/create-adapter/SKILL.md +287 -0
  92. package/skills/create-task/SKILL.md +491 -0
  93. package/skills/evolve/SKILL.md +39 -0
  94. package/skills/publish/SKILL.md +142 -0
  95. package/skills/rewardkit/SKILL.md +330 -0
  96. package/spec/atif/README.md +45 -0
  97. package/spec/atif/trajectory.schema.json +865 -0
  98. package/spec/openapi.yaml +13447 -0
@@ -0,0 +1,23 @@
1
+ <ParamField path="-l, --limit" type="n">
2
+ Page size.
3
+ </ParamField>
4
+
5
+ <ParamField path="--cursor" type="c">
6
+ Resume from a page cursor.
7
+ </ParamField>
8
+
9
+ <ParamField path="--columns" type="keys | all | help">
10
+ Choose and order columns, comma-separated. `help` lists the keys.
11
+ </ParamField>
12
+
13
+ <ParamField path="-q, --quiet">
14
+ Print only ids, one per line, for piping.
15
+ </ParamField>
16
+
17
+ <ParamField path="--no-trunc">
18
+ Full cell content instead of one-line truncation.
19
+ </ParamField>
20
+
21
+ <ParamField path="--no-headers">
22
+ Omit the header row in piped (TSV) output.
23
+ </ParamField>
@@ -0,0 +1,430 @@
1
+ {
2
+ "$comment": "Per-harness models and reasoning efforts, checked in so two repos that share no test runner can be held to one table. The evolve SDK owns it: AGENT_REGISTRY in packages/sdk-ts/src/registry.ts is the only place models, efforts, or defaults may change, and scripts/generate-harness-capabilities.ts regenerates this file from it (npm run generate:capabilities; the build fails when it is stale). The hosted-evals dashboard consumes this file for its capability document and its parity test diffs the served document against it, the TypeScript SDK test regenerates these exact bytes from the registry, and the Python SDK test asserts its own Literals cover them. Changing a model or an effort therefore means: registry.ts, regenerate this file, and nothing else.",
3
+ "reasoningEfforts": [
4
+ "off",
5
+ "minimal",
6
+ "low",
7
+ "medium",
8
+ "high",
9
+ "xhigh",
10
+ "max",
11
+ "thinking"
12
+ ],
13
+ "binaryEffortValues": [
14
+ "off",
15
+ "minimal",
16
+ "medium",
17
+ "thinking"
18
+ ],
19
+ "defaultReasoningEffort": "medium",
20
+ "harnesses": {
21
+ "claude": {
22
+ "defaultModel": "opus",
23
+ "models": [
24
+ {
25
+ "alias": "fable",
26
+ "modelId": "claude-fable-5-1",
27
+ "description": "Highest capability, long-horizon agentic work"
28
+ },
29
+ {
30
+ "alias": "opus",
31
+ "modelId": "claude-opus-5",
32
+ "description": "Complex reasoning, R&D, architecting"
33
+ },
34
+ {
35
+ "alias": "sonnet",
36
+ "modelId": "claude-sonnet-5",
37
+ "description": "Daily coding, features, tests"
38
+ },
39
+ {
40
+ "alias": "haiku",
41
+ "modelId": "claude-haiku-4-5-20251001",
42
+ "description": "Quick tasks, syntax correction"
43
+ },
44
+ {
45
+ "alias": "opus[1m]",
46
+ "modelId": "opus[1m]",
47
+ "description": "Complex reasoning with 1M context window"
48
+ },
49
+ {
50
+ "alias": "sonnet[1m]",
51
+ "modelId": "sonnet[1m]",
52
+ "description": "Daily coding with 1M context window"
53
+ },
54
+ {
55
+ "alias": "glm-5.3",
56
+ "modelId": "glm-5.3",
57
+ "description": "Zhipu GLM-5.3 via the Evolve gateway"
58
+ },
59
+ {
60
+ "alias": "glm-5.3-flash",
61
+ "modelId": "glm-5.3-flash",
62
+ "description": "Zhipu GLM-5.3 Flash via the Evolve gateway"
63
+ },
64
+ {
65
+ "alias": "openrouter/deepseek/deepseek-v4.1-flash",
66
+ "modelId": "openrouter/deepseek/deepseek-v4.1-flash",
67
+ "description": "DeepSeek V4.1 Flash via OpenRouter"
68
+ },
69
+ {
70
+ "alias": "fireworks/deepseek-v4.1-flash",
71
+ "modelId": "fireworks/deepseek-v4.1-flash",
72
+ "description": "DeepSeek V4.1 Flash via Fireworks"
73
+ }
74
+ ],
75
+ "effortSupport": "level",
76
+ "efforts": [
77
+ "off",
78
+ "minimal",
79
+ "low",
80
+ "medium",
81
+ "high",
82
+ "xhigh",
83
+ "max",
84
+ "thinking"
85
+ ],
86
+ "defaultEffort": "high",
87
+ "supportsConfig": true,
88
+ "presets": [
89
+ "no-internet",
90
+ "pinned-context"
91
+ ]
92
+ },
93
+ "codex": {
94
+ "defaultModel": "gpt-5.6-sol",
95
+ "models": [
96
+ {
97
+ "alias": "gpt-6-astra",
98
+ "modelId": "gpt-6-astra",
99
+ "description": "Newest frontier flagship"
100
+ },
101
+ {
102
+ "alias": "gpt-5.6-sol",
103
+ "modelId": "gpt-5.6-sol",
104
+ "description": "GPT-5.6 flagship (previous generation)"
105
+ },
106
+ {
107
+ "alias": "gpt-5.6-terra",
108
+ "modelId": "gpt-5.6-terra",
109
+ "description": "Balances intelligence and cost"
110
+ },
111
+ {
112
+ "alias": "gpt-5.6-luna",
113
+ "modelId": "gpt-5.6-luna",
114
+ "description": "High-volume, cost-sensitive tier"
115
+ },
116
+ {
117
+ "alias": "gpt-5.5",
118
+ "modelId": "gpt-5.5",
119
+ "description": "GPT-5.5 frontier model (two generations back)"
120
+ },
121
+ {
122
+ "alias": "gpt-5.3-codex",
123
+ "modelId": "gpt-5.3-codex",
124
+ "description": "Industry-leading code-optimized"
125
+ }
126
+ ],
127
+ "effortSupport": "level",
128
+ "efforts": [
129
+ "off",
130
+ "minimal",
131
+ "low",
132
+ "medium",
133
+ "high",
134
+ "xhigh",
135
+ "max",
136
+ "thinking"
137
+ ],
138
+ "defaultEffort": "high",
139
+ "supportsConfig": true,
140
+ "presets": [
141
+ "no-internet",
142
+ "pinned-context"
143
+ ]
144
+ },
145
+ "droid": {
146
+ "defaultModel": "claude-opus-5",
147
+ "models": [
148
+ {
149
+ "alias": "claude-fable-5.1",
150
+ "modelId": "claude-fable-5-1",
151
+ "description": "Factory-managed Claude Fable 5.1"
152
+ },
153
+ {
154
+ "alias": "claude-opus-5",
155
+ "modelId": "claude-opus-5",
156
+ "description": "Factory-managed Claude Opus 5"
157
+ },
158
+ {
159
+ "alias": "claude-sonnet-5",
160
+ "modelId": "claude-sonnet-5",
161
+ "description": "Factory-managed Claude Sonnet 5"
162
+ },
163
+ {
164
+ "alias": "claude-haiku-4-5",
165
+ "modelId": "claude-haiku-4-5-20251001",
166
+ "description": "Factory-managed Claude Haiku 4.5"
167
+ },
168
+ {
169
+ "alias": "gpt-6-astra",
170
+ "modelId": "gpt-6-astra",
171
+ "description": "Factory-managed GPT-6 Astra"
172
+ },
173
+ {
174
+ "alias": "gpt-5.6-sol",
175
+ "modelId": "gpt-5.6-sol",
176
+ "description": "Factory-managed GPT-5.6 Sol"
177
+ },
178
+ {
179
+ "alias": "gpt-5.6-terra",
180
+ "modelId": "gpt-5.6-terra",
181
+ "description": "Factory-managed GPT-5.6 Terra"
182
+ },
183
+ {
184
+ "alias": "gpt-5.6-luna",
185
+ "modelId": "gpt-5.6-luna",
186
+ "description": "Factory-managed GPT-5.6 Luna"
187
+ },
188
+ {
189
+ "alias": "gemini-3.6-flash",
190
+ "modelId": "gemini-3.6-flash",
191
+ "description": "Factory-managed Gemini 3.6 Flash"
192
+ },
193
+ {
194
+ "alias": "qwen3.7-max",
195
+ "modelId": "qwen3.7-max",
196
+ "description": "Qwen 3.7 Max via the Evolve gateway"
197
+ },
198
+ {
199
+ "alias": "kimi-k3",
200
+ "modelId": "kimi-k3",
201
+ "description": "Factory-managed Droid Core Kimi K3"
202
+ },
203
+ {
204
+ "alias": "glm-5.3",
205
+ "modelId": "glm-5.3",
206
+ "description": "Zhipu GLM-5.3 via the Evolve gateway"
207
+ },
208
+ {
209
+ "alias": "glm-5.3-flash",
210
+ "modelId": "glm-5.3-flash",
211
+ "description": "Zhipu GLM-5.3 Flash via the Evolve gateway"
212
+ },
213
+ {
214
+ "alias": "openrouter/deepseek/deepseek-v4.1-flash",
215
+ "modelId": "openrouter/deepseek/deepseek-v4.1-flash",
216
+ "description": "DeepSeek V4.1 Flash via OpenRouter"
217
+ },
218
+ {
219
+ "alias": "fireworks/deepseek-v4.1-flash",
220
+ "modelId": "fireworks/deepseek-v4.1-flash",
221
+ "description": "DeepSeek V4.1 Flash via Fireworks"
222
+ }
223
+ ],
224
+ "effortSupport": "level",
225
+ "efforts": [
226
+ "off",
227
+ "minimal",
228
+ "low",
229
+ "medium",
230
+ "high",
231
+ "xhigh",
232
+ "max",
233
+ "thinking"
234
+ ],
235
+ "defaultEffort": "high",
236
+ "supportsConfig": false,
237
+ "presets": []
238
+ },
239
+ "gemini": {
240
+ "defaultModel": "gemini-3.5-flash",
241
+ "models": [
242
+ {
243
+ "alias": "gemini-3.5-flash",
244
+ "modelId": "gemini-3.5-flash",
245
+ "description": "Latest flash the stable gemini CLI serves: coding + agentic planning"
246
+ },
247
+ {
248
+ "alias": "gemini-3.5-flash-lite",
249
+ "modelId": "gemini-3.5-flash-lite",
250
+ "description": "Most cost-effective 3.5-class model"
251
+ },
252
+ {
253
+ "alias": "gemini-3.1-pro-preview",
254
+ "modelId": "gemini-3.1-pro-preview",
255
+ "description": "Latest pro, complex agentic + coding"
256
+ }
257
+ ],
258
+ "effortSupport": "none",
259
+ "efforts": [],
260
+ "defaultEffort": null,
261
+ "supportsConfig": false,
262
+ "presets": []
263
+ },
264
+ "kimi": {
265
+ "defaultModel": "kimi-k3",
266
+ "models": [
267
+ {
268
+ "alias": "kimi-k3",
269
+ "modelId": "moonshot/kimi-k3",
270
+ "description": "Latest flagship: 1M context, always-on thinking",
271
+ "maxContextSize": 1048576
272
+ },
273
+ {
274
+ "alias": "kimi-k2.7-code",
275
+ "modelId": "moonshot/kimi-k2.7-code",
276
+ "description": "Latest coding-specialized standard model"
277
+ },
278
+ {
279
+ "alias": "kimi-k3-raptor",
280
+ "modelId": "kimi-k3-raptor",
281
+ "description": "Evolve-managed Kimi K3 Raptor route for latency-sensitive agent runs",
282
+ "maxContextSize": 1048576
283
+ },
284
+ {
285
+ "alias": "kimi-k2p7-code-raptor",
286
+ "modelId": "kimi-k2p7-code-raptor",
287
+ "description": "Evolve-managed Kimi K2.7 Code Raptor route for latency-sensitive agent runs"
288
+ }
289
+ ],
290
+ "effortSupport": "level",
291
+ "efforts": [
292
+ "off",
293
+ "minimal",
294
+ "low",
295
+ "medium",
296
+ "high",
297
+ "xhigh",
298
+ "max",
299
+ "thinking"
300
+ ],
301
+ "defaultEffort": "max",
302
+ "supportsConfig": false,
303
+ "presets": []
304
+ },
305
+ "opencode": {
306
+ "defaultModel": "openrouter/anthropic/claude-opus-5",
307
+ "models": [
308
+ {
309
+ "alias": "openrouter/anthropic/claude-fable-5.1",
310
+ "modelId": "openrouter/anthropic/claude-fable-5.1",
311
+ "description": "Anthropic Fable 5.1 via OpenRouter"
312
+ },
313
+ {
314
+ "alias": "openrouter/anthropic/claude-opus-5",
315
+ "modelId": "openrouter/anthropic/claude-opus-5",
316
+ "description": "Anthropic Opus 5 via OpenRouter"
317
+ },
318
+ {
319
+ "alias": "openrouter/anthropic/claude-sonnet-5",
320
+ "modelId": "openrouter/anthropic/claude-sonnet-5",
321
+ "description": "Anthropic Sonnet 5 via OpenRouter"
322
+ },
323
+ {
324
+ "alias": "openrouter/anthropic/claude-haiku-4.5",
325
+ "modelId": "openrouter/anthropic/claude-haiku-4.5",
326
+ "description": "Anthropic Haiku via OpenRouter"
327
+ },
328
+ {
329
+ "alias": "openrouter/openai/gpt-6-astra",
330
+ "modelId": "openrouter/openai/gpt-6-astra",
331
+ "description": "OpenAI GPT-6 Astra via OpenRouter"
332
+ },
333
+ {
334
+ "alias": "openrouter/openai/gpt-5.6-sol",
335
+ "modelId": "openrouter/openai/gpt-5.6-sol",
336
+ "description": "OpenAI GPT-5.6 Sol via OpenRouter"
337
+ },
338
+ {
339
+ "alias": "openrouter/openai/gpt-5.6-terra",
340
+ "modelId": "openrouter/openai/gpt-5.6-terra",
341
+ "description": "OpenAI GPT-5.6 Terra via OpenRouter"
342
+ },
343
+ {
344
+ "alias": "openrouter/openai/gpt-5.6-luna",
345
+ "modelId": "openrouter/openai/gpt-5.6-luna",
346
+ "description": "OpenAI GPT-5.6 Luna via OpenRouter"
347
+ },
348
+ {
349
+ "alias": "openrouter/google/gemini-3.6-flash",
350
+ "modelId": "openrouter/google/gemini-3.6-flash",
351
+ "description": "Gemini 3.6 Flash via OpenRouter"
352
+ },
353
+ {
354
+ "alias": "openrouter/qwen/qwen3.7-max",
355
+ "modelId": "openrouter/qwen/qwen3.7-max",
356
+ "description": "Qwen 3.7 Max via OpenRouter"
357
+ },
358
+ {
359
+ "alias": "openrouter/moonshotai/kimi-k3",
360
+ "modelId": "openrouter/moonshotai/kimi-k3",
361
+ "description": "Kimi K3 via OpenRouter"
362
+ },
363
+ {
364
+ "alias": "openrouter/z-ai/glm-5.3",
365
+ "modelId": "openrouter/z-ai/glm-5.3",
366
+ "description": "Zhipu GLM-5.3 via OpenRouter"
367
+ },
368
+ {
369
+ "alias": "openrouter/z-ai/glm-5.3-flash",
370
+ "modelId": "openrouter/z-ai/glm-5.3-flash",
371
+ "description": "Zhipu GLM-5.3 Flash (OpenRouter id; the Evolve gateway serves it from Fireworks)"
372
+ },
373
+ {
374
+ "alias": "openrouter/deepseek/deepseek-v4.1-flash",
375
+ "modelId": "openrouter/deepseek/deepseek-v4.1-flash",
376
+ "description": "DeepSeek V4.1 Flash via OpenRouter"
377
+ },
378
+ {
379
+ "alias": "fireworks/deepseek-v4.1-flash",
380
+ "modelId": "fireworks/deepseek-v4.1-flash",
381
+ "description": "DeepSeek V4.1 Flash via Fireworks"
382
+ }
383
+ ],
384
+ "effortSupport": "level",
385
+ "efforts": [
386
+ "off",
387
+ "minimal",
388
+ "low",
389
+ "medium",
390
+ "high",
391
+ "xhigh",
392
+ "max",
393
+ "thinking"
394
+ ],
395
+ "defaultEffort": "high",
396
+ "supportsConfig": false,
397
+ "presets": []
398
+ },
399
+ "qwen": {
400
+ "defaultModel": "qwen3.7-max",
401
+ "models": [
402
+ {
403
+ "alias": "qwen3.7-max",
404
+ "modelId": "qwen3.7-max",
405
+ "description": "Strongest reasoning and coding option"
406
+ },
407
+ {
408
+ "alias": "qwen3.7-plus",
409
+ "modelId": "qwen3.7-plus",
410
+ "description": "Latest balanced Qwen Cloud recommendation"
411
+ },
412
+ {
413
+ "alias": "qwen3.6-flash",
414
+ "modelId": "qwen3.6-flash",
415
+ "description": "Fast and cost-effective option"
416
+ }
417
+ ],
418
+ "effortSupport": "binary",
419
+ "efforts": [
420
+ "off",
421
+ "minimal",
422
+ "medium",
423
+ "thinking"
424
+ ],
425
+ "defaultEffort": "thinking",
426
+ "supportsConfig": false,
427
+ "presets": []
428
+ }
429
+ }
430
+ }
@@ -0,0 +1,120 @@
1
+ {
2
+ "$comment": "The hosted evals API's error-code vocabulary, checked in so two repos that share no test runner can be held to one list. The contract owns it: the ErrorCode enum in spec/openapi.yaml is the only place a code may be added. This file is that enum's shadow, and the tests keep everyone honest — the server regenerates these exact bytes and diffs them, the TypeScript SDK asserts HOSTED_ERROR_CODES equals codes[], and the Python SDK asserts both its tuple and its Literal do. Adding a code therefore means: spec enum, this file, both SDK lists.",
3
+ "codes": [
4
+ "missing_authorization",
5
+ "invalid_api_key",
6
+ "read_only_key",
7
+ "credential_service_unavailable",
8
+ "rate_limited",
9
+ "insufficient_credits",
10
+ "quota_exceeded",
11
+ "invalid_json",
12
+ "invalid_input",
13
+ "invalid_limit",
14
+ "invalid_status",
15
+ "invalid_visibility",
16
+ "invalid_cursor",
17
+ "invalid_after",
18
+ "invalid_format",
19
+ "invalid_ids",
20
+ "invalid_multipart",
21
+ "idempotency_key_reused",
22
+ "dataset_not_found",
23
+ "dataset_version_not_found",
24
+ "dataset_name_taken",
25
+ "dataset_in_use",
26
+ "dataset_not_owned",
27
+ "dataset_import_in_progress",
28
+ "upstream_not_watchable",
29
+ "no_active_version",
30
+ "version_not_ready",
31
+ "version_not_activatable",
32
+ "unknown_task_names",
33
+ "no_tasks",
34
+ "task_not_found",
35
+ "task_failed_to_build",
36
+ "upload_session_not_found",
37
+ "upload_offset_mismatch",
38
+ "upload_chunk_digest_mismatch",
39
+ "upload_incomplete",
40
+ "upload_archive_digest_mismatch",
41
+ "upload_session_failed",
42
+ "too_many_concurrent_upload_chunks",
43
+ "agent_not_found",
44
+ "agent_name_taken",
45
+ "agent_name_reserved",
46
+ "agent_invalid_name",
47
+ "agent_source_required",
48
+ "agent_source_conflict",
49
+ "agent_invalid_env",
50
+ "agent_too_large",
51
+ "agent_limit_reached",
52
+ "skill_not_found",
53
+ "skill_name_not_found",
54
+ "skill_ref_invalid",
55
+ "skill_unresolvable",
56
+ "skill_invalid",
57
+ "skill_in_use",
58
+ "skill_too_large",
59
+ "skill_limit_reached",
60
+ "too_many_concurrent_skill_uploads",
61
+ "secret_not_found",
62
+ "secret_ambiguous",
63
+ "secret_brokered_unsupported",
64
+ "secret_exists",
65
+ "secret_not_attached",
66
+ "agent_version_not_found",
67
+ "agent_version_unresolvable",
68
+ "agent_kwarg_unsupported",
69
+ "agent_config_unsupported",
70
+ "agent_config_key_refused",
71
+ "agent_preset_unsupported",
72
+ "provider_unsupported",
73
+ "job_not_found",
74
+ "job_not_terminal",
75
+ "no_failed_trials",
76
+ "trial_not_found",
77
+ "trial_not_settled",
78
+ "concurrent_update",
79
+ "regrade_source_ineligible",
80
+ "no_regradable_trials",
81
+ "invalid_rubric",
82
+ "analysis_already_running",
83
+ "analysis_not_found",
84
+ "analysis_not_terminal",
85
+ "check_not_found",
86
+ "check_not_terminal",
87
+ "no_checkable_tasks",
88
+ "too_many_concurrent_check_uploads",
89
+ "no_analyzable_trials",
90
+ "not_a_job_dir",
91
+ "invalid_trial",
92
+ "trial_too_large",
93
+ "upload_too_large",
94
+ "job_uploaded",
95
+ "job_already_uploaded",
96
+ "too_many_concurrent_job_uploads",
97
+ "job_import_not_found",
98
+ "import_not_found",
99
+ "import_too_large",
100
+ "too_many_concurrent_imports",
101
+ "invalid_archive",
102
+ "unpinned_git_ref",
103
+ "hub_package_not_found",
104
+ "hub_unreachable",
105
+ "package_not_retained",
106
+ "package_corrupt",
107
+ "package_missing",
108
+ "too_many_concurrent_package_downloads",
109
+ "org_not_found",
110
+ "org_slug_taken",
111
+ "org_forbidden",
112
+ "org_personal_immutable",
113
+ "org_last_owner",
114
+ "org_in_use",
115
+ "org_member_not_found",
116
+ "invite_not_found",
117
+ "invite_invalid",
118
+ "internal_error"
119
+ ]
120
+ }