@claudexor/schema 3.1.0 → 3.1.1
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.
- package/dist/agent-capabilities.d.ts +8 -8
- package/dist/budget.d.ts +9 -9
- package/dist/config.d.ts +70 -38
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +12 -1
- package/dist/config.js.map +1 -1
- package/dist/control-operation-responses.d.ts +27 -27
- package/dist/control-run-detail.d.ts +13 -13
- package/dist/control.d.ts +135 -84
- package/dist/control.d.ts.map +1 -1
- package/dist/effort.d.ts +132 -0
- package/dist/effort.d.ts.map +1 -0
- package/dist/effort.js +167 -0
- package/dist/effort.js.map +1 -0
- package/dist/events.d.ts +4 -4
- package/dist/events.d.ts.map +1 -1
- package/dist/events.js +6 -0
- package/dist/events.js.map +1 -1
- package/dist/gate.d.ts +2 -2
- package/dist/harness.d.ts +98 -25
- package/dist/harness.d.ts.map +1 -1
- package/dist/harness.js +30 -13
- package/dist/harness.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/operation.d.ts +16 -16
- package/dist/readiness.d.ts +48 -7
- package/dist/readiness.d.ts.map +1 -1
- package/dist/task.d.ts +62 -59
- package/dist/task.d.ts.map +1 -1
- package/dist/task.js +9 -8
- package/dist/task.js.map +1 -1
- package/dist/telemetry.d.ts +16 -16
- package/generated/AgentCapabilityCatalog.schema.json +4 -8
- package/generated/ControlHarnessListResponse.schema.json +45 -9
- package/generated/ControlHarnessSettingsPatch.schema.json +4 -8
- package/generated/ControlRunAgainDraft.schema.json +3 -7
- package/generated/ControlRunDetail.schema.json +3 -7
- package/generated/ControlRunListResponse.schema.json +3 -7
- package/generated/ControlRunStartRequest.schema.json +3 -7
- package/generated/ControlRunSummary.schema.json +3 -7
- package/generated/ControlSettingsSnapshot.schema.json +4 -8
- package/generated/ControlSettingsUpdateRequest.schema.json +4 -8
- package/generated/ControlThreadTurnRequest.schema.json +3 -7
- package/generated/GlobalConfig.schema.json +4 -8
- package/generated/HarnessManifest.schema.json +45 -9
- package/generated/HarnessStatusDto.schema.json +45 -9
- package/generated/ProjectConfig.schema.json +26 -0
- package/generated/RunEvent.schema.json +1 -0
- package/generated/TaskContract.schema.json +5 -9
- package/package.json +2 -2
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
"type": "string"
|
|
152
152
|
},
|
|
153
153
|
"default": [],
|
|
154
|
-
"description": "Approval globs — path globs (e.g. `migrations/**`, `**/*.env`) whose changes escalate a run to a human-approval gate before it can be applied.
|
|
154
|
+
"description": "Approval globs — path globs (e.g. `migrations/**`, `**/*.env`) whose matching create, modify, delete, or rename changes escalate a run to a human-approval gate before it can be applied. Project-config-owned and never suppressed by per-run protected-path approvals."
|
|
155
155
|
},
|
|
156
156
|
"deny_paths": {
|
|
157
157
|
"type": "array",
|
|
@@ -512,14 +512,10 @@
|
|
|
512
512
|
"type": "object",
|
|
513
513
|
"additionalProperties": {
|
|
514
514
|
"type": "string",
|
|
515
|
-
"
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
"xhigh",
|
|
520
|
-
"max"
|
|
521
|
-
],
|
|
522
|
-
"description": "Cross-harness reasoning-effort level, weakest to strongest; adapters declare the subset they support and a shared normalizer clamps requests onto the nearest supported level."
|
|
515
|
+
"minLength": 1,
|
|
516
|
+
"maxLength": 32,
|
|
517
|
+
"pattern": "^[a-z0-9]+(?:[_-][a-z0-9]+)*$",
|
|
518
|
+
"description": "Cross-harness reasoning-effort level as a lowercase slug (open vocabulary, mirroring the vendor contract); adapters advertise the levels they accept per model, ordered weakest to strongest by the vendor itself, and a shared normalizer passes advertised levels through, clamps inside the vendor order, and refuses levels the advertised ladder has never seen."
|
|
523
519
|
},
|
|
524
520
|
"default": {},
|
|
525
521
|
"description": "Resolved harness-scoped reasoning-effort map for this run (harness id to effort), frozen so an Exact Retry replays the same effort instead of re-resolving current settings."
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claudexor/schema",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Single source of truth for all Claudexor data shapes (Zod + generated JSON Schema).",
|
|
6
6
|
"type": "module",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"zod": "^3.24.1",
|
|
22
22
|
"zod-to-json-schema": "^3.24.1",
|
|
23
|
-
"@claudexor/util": "3.1.
|
|
23
|
+
"@claudexor/util": "3.1.1"
|
|
24
24
|
},
|
|
25
25
|
"repository": {
|
|
26
26
|
"type": "git",
|