Skip to main content
Glama

plan_capture

Read-onlyIdempotent

Bind a current capture for a declared workload without executing it, selecting adapter, capture mode, and profiler options for later audit and comparison.

Instructions

Bind one current capture without running it.

    The default auto mode runs the declared workload directly in the local environment and
    records that no enforced descendant containment was used. Use managed only when the
    project policy explicitly requires containment, and use trusted_local to request the
    same direct local execution explicitly. This tool never runs a measurement, but an
    adapter may execute a bounded compatibility probe such as NVBench ``--version``.
    

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
adapterYesAdapter value reported by list_capabilities for this workload.
parametersYesDeclared workload parameters; inspect get_declared_workflow first.
capture_modeNoauto
workload_nameYesCurrent declared workload name from list_declared_workflows.
memray_optionsNo
preflight_modeNoauto
external_contextNo
nsight_compute_optionsNo
torch_profiler_optionsNo
compute_sanitizer_optionsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed180 schema fields changedv0.1.15
    • changedInput schema / $defs / ComputeSanitizerCaptureOptions / properties / launch_count / default
      Previous value: -0New value: +1
    • addedInput schema / $defs / MemrayCaptureOptions
      Added value: +{
      +  "additionalProperties": false,
      +  "description": "The supported Memray capture scopes.\n\n``sdk`` relies on one explicit workload-owned context. Memray tracks every\nthread in the process while its tracker is active, so it is an exact time\nregion rather than a single-thread filter.",
      +  "properties": {
      +    "mode": {
      +      "default": "whole_entrypoint",
      +      "enum": [
      +        "whole_entrypoint",
      +        "sdk"
      +      ],
      +      "title": "Mode",
      +      "type": "string"
      +    },
      +    "native_traces": {
      +      "default": false,
      +      "title": "Native Traces",
      +      "type": "boolean"
      +    },
      +    "region": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "pattern": "^[A-Za-z0-9][A-Za-z0-9._/-]*$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Region"
      +    },
      +    "trace_python_allocators": {
      +      "default": false,
      +      "title": "Trace Python Allocators",
      +      "type": "boolean"
      +    },
      +    "warmup_count": {
      +      "default": 0,
      +      "maximum": 1000000,
      +      "minimum": 0,
      +      "title": "Warmup Count",
      +      "type": "integer"
      +    }
      +  },
      +  "title": "MemrayCaptureOptions",
      +  "type": "object"
      +}
    • addedInput schema / $defs / NsightComputeOptions
      Added value: +{
      +  "additionalProperties": false,
      +  "description": "Bounded selections accepted by the managed Nsight Compute capture.",
      +  "properties": {
      +    "kernel_name": {
      +      "anyOf": [
      +        {
      +          "maxLength": 500,
      +          "minLength": 1,
      +          "pattern": "^[^\\x00\\r\\n]+$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Kernel Name"
      +    },
      +    "launch_count": {
      +      "default": 1,
      +      "maximum": 1000000,
      +      "minimum": 1,
      +      "title": "Launch Count",
      +      "type": "integer"
      +    },
      +    "launch_skip": {
      +      "default": 0,
      +      "maximum": 1000000,
      +      "minimum": 0,
      +      "title": "Launch Skip",
      +      "type": "integer"
      +    },
      +    "replay_mode": {
      +      "default": "kernel",
      +      "enum": [
      +        "kernel",
      +        "application",
      +        "range",
      +        "app-range"
      +      ],
      +      "title": "Replay Mode",
      +      "type": "string"
      +    },
      +    "sections": {
      +      "anyOf": [
      +        {
      +          "items": {
      +            "maxLength": 100,
      +            "minLength": 1,
      +            "pattern": "^[A-Za-z0-9_.-]+$",
      +            "type": "string"
      +          },
      +          "maxItems": 32,
      +          "minItems": 1,
      +          "type": "array"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Sections"
      +    },
      +    "set": {
      +      "anyOf": [
      +        {
      +          "maxLength": 100,
      +          "minLength": 1,
      +          "pattern": "^[A-Za-z0-9_.-]+$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": "basic",
      +      "title": "Set"
      +    }
      +  },
      +  "title": "NsightComputeOptions",
      +  "type": "object"
      +}
    • addedInput schema / $defs / PreflightMode
      Added value: +{
      +  "enum": [
      +    "auto",
      +    "passive",
      +    "active"
      +  ],
      +  "title": "PreflightMode",
      +  "type": "string"
      +}
    • changedInput schema / $defs / SdkTorchProfilerOptions / properties / profile_memory / default
      Previous value: -trueNew value: +false
    • changedInput schema / $defs / SdkTorchProfilerOptions / properties / record_shapes / default
      Previous value: -trueNew value: +false
    • changedInput schema / $defs / SdkTorchProfilerOptions / properties / with_stack / default
      Previous value: -trueNew value: +false
    • changedInput schema / $defs / WholeEntrypointTorchProfilerOptions / properties / profile_memory / default
      Previous value: -trueNew value: +false
    • changedInput schema / $defs / WholeEntrypointTorchProfilerOptions / properties / record_shapes / default
      Previous value: -trueNew value: +false
    • changedInput schema / $defs / WholeEntrypointTorchProfilerOptions / properties / with_stack / default
      Previous value: -trueNew value: +false
    • addedInput schema / properties / memray_options
      Added value: +{
      +  "anyOf": [
      +    {
      +      "$ref": "#/$defs/MemrayCaptureOptions"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null
      +}
    • addedInput schema / properties / nsight_compute_options
      Added value: +{
      +  "anyOf": [
      +    {
      +      "$ref": "#/$defs/NsightComputeOptions"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null
      +}
    • addedInput schema / properties / preflight_mode / $ref
      Added value: +"#/$defs/PreflightMode"
    • removedInput schema / properties / preflight_mode / enum
      Removed value: -[
      -  "auto",
      -  "passive",
      -  "active"
      -]
    • removedInput schema / properties / preflight_mode / title
      Removed value: -"Preflight Mode"
    • removedInput schema / properties / preflight_mode / type
      Removed value: -"string"
    • addedOutput schema / $defs / ActionId
      Added value: +{
      +  "description": "Stable product-level identities for executable agent workflow edges.",
      +  "enum": [
      +    "workspace.initialize",
      +    "workload.configuration.inspect",
      +    "workload.configure",
      +    "capabilities.inspect",
      +    "capabilities.setup.start",
      +    "capabilities.setup.status",
      +    "adapter.prepare",
      +    "workload.dependencies.prepare",
      +    "workflow.list",
      +    "workflow.get",
      +    "fault_experiment.plan",
      +    "capture.plan",
      +    "capture.detached.start",
      +    "capture.detached.status",
      +    "catalog.rebuild",
      +    "run.list",
      +    "artifact.list",
      +    "artifact.preview",
      +    "artifact.native_viewer.plan",
      +    "artifact.import",
      +    "artifact.import.xctrace",
      +    "artifact.extract.perfetto",
      +    "artifact.extract.memray",
      +    "artifact.extract.status",
      +    "artifact.extract.nsight_systems",
      +    "artifact.extract.nsight_compute",
      +    "artifact.extract.compute_sanitizer",
      +    "inference.server.configure",
      +    "inference.configuration.list",
      +    "inference.scenario.plan",
      +    "reduction.execute",
      +    "reduction.status",
      +    "analysis.memory",
      +    "analysis.nsight_compute"
      +  ],
      +  "title": "ActionId",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / ActiveCapturePlan
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "adapter_capability": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/CapabilityReport"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "adapter_execution_plan": {
      +      "anyOf": [
      +        {
      +          "additionalProperties": {
      +            "$ref": "#/$defs/JsonValue"
      +          },
      +          "type": "object"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Adapter Execution Plan"
      +    },
      +    "adapter_package_identity": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Adapter Package Identity"
      +    },
      +    "adapter_workload_qualification": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/AdapterWorkloadQualification"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "alternative_action": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ToolAction"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "collector_argv": {
      +      "items": {
      +        "type": "string"
      +      },
      +      "title": "Collector Argv",
      +      "type": "array"
      +    },
      +    "collector_environment": {
      +      "additionalProperties": {
      +        "type": "string"
      +      },
      +      "title": "Collector Environment",
      +      "type": "object"
      +    },
      +    "collector_executable_binding": {
      +      "$ref": "#/$defs/ResolvedExecutable"
      +    },
      +    "collector_implementation_id": {
      +      "anyOf": [
      +        {
      +          "pattern": "^sha256:[0-9a-f]{64}$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Collector Implementation Id"
      +    },
      +    "compiler_identity": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/CompilerIdentity"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "containment": {
      +      "const": "active",
      +      "title": "Containment",
      +      "type": "string"
      +    },
      +    "created_at": {
      +      "format": "date-time",
      +      "title": "Created At",
      +      "type": "string"
      +    },
      +    "dynamic_parameters": {
      +      "default": [],
      +      "items": {
      +        "maxLength": 200,
      +        "minLength": 1,
      +        "type": "string"
      +      },
      +      "title": "Dynamic Parameters",
      +      "type": "array"
      +    },
      +    "execution_limits": {
      +      "$ref": "#/$defs/CaptureExecutionLimits"
      +    },
      +    "execution_policy": {
      +      "enum": [
      +        "trusted_local",
      +        "approved_agent"
      +      ],
      +      "title": "Execution Policy",
      +      "type": "string"
      +    },
      +    "expected_artifact_kinds": {
      +      "items": {
      +        "$ref": "#/$defs/ArtifactKind"
      +      },
      +      "title": "Expected Artifact Kinds",
      +      "type": "array"
      +    },
      +    "expected_overhead": {
      +      "title": "Expected Overhead",
      +      "type": "string"
      +    },
      +    "expires_at": {
      +      "format": "date-time",
      +      "title": "Expires At",
      +      "type": "string"
      +    },
      +    "external_context": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ExternalExecutionContext"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "limitation_details": {
      +      "default": [],
      +      "items": {
      +        "$ref": "#/$defs/LimitationDetail"
      +      },
      +      "title": "Limitation Details",
      +      "type": "array"
      +    },
      +    "network_contained": {
      +      "title": "Network Contained",
      +      "type": "boolean"
      +    },
      +    "oracle_argv": {
      +      "anyOf": [
      +        {
      +          "items": {
      +            "type": "string"
      +          },
      +          "type": "array"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Oracle Argv"
      +    },
      +    "oracle_containment": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/CaptureContainment"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "oracle_executable_binding": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ResolvedExecutable"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "oracle_launch_executable_binding": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ResolvedExecutable"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "oracle_network_contained": {
      +      "anyOf": [
      +        {
      +          "type": "boolean"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Oracle Network Contained"
      +    },
      +    "oracle_systemd_scope_unit": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Oracle Systemd Scope Unit"
      +    },
      +    "permissions": {
      +      "default": [],
      +      "items": {
      +        "type": "string"
      +      },
      +      "title": "Permissions",
      +      "type": "array"
      +    },
      +    "plan_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Plan Id",
      +      "type": "string"
      +    },
      +    "plan_token": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Plan Token",
      +      "type": "string"
      +    },
      +    "planned_execution_identity": {
      +      "$ref": "#/$defs/WorkloadExecutionIdentity"
      +    },
      +    "preflight": {
      +      "$ref": "#/$defs/PreflightReport"
      +    },
      +    "run_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Run Id",
      +      "type": "string"
      +    },
      +    "semantics": {
      +      "$ref": "#/$defs/RunSemantics"
      +    },
      +    "systemd_scope_unit": {
      +      "title": "Systemd Scope Unit",
      +      "type": "string"
      +    },
      +    "warnings": {
      +      "default": [],
      +      "items": {
      +        "type": "string"
      +      },
      +      "title": "Warnings",
      +      "type": "array"
      +    },
      +    "workload_definition_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Workload Definition Id",
      +      "type": "string"
      +    },
      +    "workload_instance": {
      +      "$ref": "#/$defs/WorkloadInstance"
      +    },
      +    "workload_name": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Workload Name",
      +      "type": "string"
      +    },
      +    "workspace_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Workspace Id",
      +      "type": "string"
      +    },
      +    "writable_roots": {
      +      "default": [],
      +      "items": {
      +        "$ref": "#/$defs/WritableRootBinding"
      +      },
      +      "title": "Writable Roots",
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "plan_token",
      +    "plan_id",
      +    "run_id",
      +    "workspace_id",
      +    "workload_name",
      +    "workload_definition_id",
      +    "workload_instance",
      +    "semantics",
      +    "execution_policy",
      +    "collector_argv",
      +    "collector_executable_binding",
      +    "expected_artifact_kinds",
      +    "expected_overhead",
      +    "preflight",
      +    "planned_execution_identity",
      +    "execution_limits",
      +    "expires_at",
      +    "containment",
      +    "network_contained",
      +    "systemd_scope_unit"
      +  ],
      +  "title": "ActiveCapturePlan",
      +  "type": "object"
      +}
    • removedOutput schema / $defs / AdapterSetup / properties / method
      Removed value: -{
      -  "const": "prepare_adapter",
      -  "title": "Method",
      -  "type": "string"
      -}
    • addedOutput schema / $defs / AdapterSetup / properties / next_action
      Added value: +{
      +  "$ref": "#/$defs/ToolAction"
      +}
    • removedOutput schema / $defs / AdapterSetup / properties / next_tool
      Removed value: -{
      -  "enum": [
      -    "prepare_adapter",
      -    "list_capabilities"
      -  ],
      -  "title": "Next Tool",
      -  "type": "string"
      -}
    • addedOutput schema / $defs / AdapterSetup / properties / verification_action
      Added value: +{
      +  "$ref": "#/$defs/ToolAction"
      +}
    • removedOutput schema / $defs / AdapterSetup / properties / verification_tool
      Removed value: -{
      -  "const": "list_capabilities",
      -  "default": "list_capabilities",
      -  "title": "Verification Tool",
      -  "type": "string"
      -}
    • changedOutput schema / $defs / AdapterSetup / required
      Previous value: -[
      -  "method",
      -  "adapter",
      -  "distribution",
      -  "package_identity",
      -  "next_tool"
      -]New value: +[
      +  "adapter",
      +  "distribution",
      +  "package_identity",
      +  "next_action",
      +  "verification_action"
      +]
    • addedOutput schema / $defs / AdapterWorkloadQualification
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "observed_version": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Observed Version",
      +      "type": "string"
      +    },
      +    "protocol": {
      +      "$ref": "#/$defs/WorkloadExecutionProtocol"
      +    }
      +  },
      +  "required": [
      +    "protocol",
      +    "observed_version"
      +  ],
      +  "title": "AdapterWorkloadQualification",
      +  "type": "object"
      +}
    • changedOutput schema / $defs / ArtifactKind / enum
      Previous value: -[
      -  "execution_trace",
      -  "otlp_trace",
      -  "python_startup",
      -  "test_execution",
      -  "sample_profile",
      -  "memory_profile",
      -  "benchmark_samples",
      -  "execution_coverage",
      -  "semantic_observations",
      -  "process_output",
      -  "validation_output",
      -  "core_dump",
      -  "sanitizer_report",
      -  "source_snapshot",
      -  "collector_metadata",
      -  "analysis_result",
      -  "process_tree_snapshot",
      -  "experiment_configuration",
      -  "inference_request_trace",
      -  "inference_result",
      -  "kernel_build",
      -  "kernel_profile"
      -]New value: +[
      +  "execution_trace",
      +  "otlp_trace",
      +  "python_startup",
      +  "test_execution",
      +  "sample_profile",
      +  "memory_profile",
      +  "benchmark_samples",
      +  "execution_coverage",
      +  "semantic_observations",
      +  "process_output",
      +  "validation_output",
      +  "core_dump",
      +  "sanitizer_report",
      +  "source_snapshot",
      +  "collector_metadata",
      +  "analysis_result",
      +  "process_tree_snapshot",
      +  "experiment_configuration",
      +  "inference_request_trace",
      +  "inference_result",
      +  "kernel_build",
      +  "kernel_profile",
      +  "metal_trace",
      +  "reduced_candidate"
      +]
    • addedOutput schema / $defs / CapabilityExtra
      Added value: +{
      +  "enum": [
      +    "cpu",
      +    "execution",
      +    "hardware",
      +    "inference",
      +    "memory",
      +    "reduction",
      +    "test",
      +    "trace",
      +    "torch",
      +    "toxiproxy"
      +  ],
      +  "title": "CapabilityExtra",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / CapabilityPermissionStatus
      Added value: +{
      +  "enum": [
      +    "unknown_until_active_probe",
      +    "not_exercised",
      +    "granted",
      +    "denied",
      +    "unknown"
      +  ],
      +  "title": "CapabilityPermissionStatus",
      +  "type": "string"
      +}
    • changedOutput schema / $defs / CapabilityProvisioning / enum
      Previous value: -[
      -  "bundled",
      -  "managed_runtime",
      -  "host",
      -  "third_party_approval",
      -  "unsupported"
      -]New value: +[
      +  "bundled",
      +  "managed_runtime",
      +  "workload_environment",
      +  "host",
      +  "third_party_approval",
      +  "unsupported"
      +]
    • changedOutput schema / $defs / CapabilityReport / properties / permission_status / anyOf
      Previous value: -[
      -  {
      -    "type": "string"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "$ref": "#/$defs/CapabilityPermissionStatus"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • removedOutput schema / $defs / CapabilityReport / properties / permission_status / title
      Removed value: -"Permission Status"
    • addedOutput schema / $defs / CapabilityReport / properties / probe_kind / $ref
      Added value: +"#/$defs/ProbeKind"
    • removedOutput schema / $defs / CapabilityReport / properties / probe_kind / enum
      Removed value: -[
      -  "passive",
      -  "active"
      -]
    • removedOutput schema / $defs / CapabilityReport / properties / probe_kind / title
      Removed value: -"Probe Kind"
    • removedOutput schema / $defs / CapabilityReport / properties / probe_kind / type
      Removed value: -"string"
    • removedOutput schema / $defs / CapabilityReport / properties / schema_version
      Removed value: -{
      -  "const": 1,
      -  "default": 1,
      -  "title": "Schema Version",
      -  "type": "integer"
      -}
    • addedOutput schema / $defs / CapabilityReport / properties / setup_verification / $ref
      Added value: +"#/$defs/CapabilitySetupVerification"
    • removedOutput schema / $defs / CapabilityReport / properties / setup_verification / enum
      Removed value: -[
      -  "not_required",
      -  "pending",
      -  "passive",
      -  "active"
      -]
    • removedOutput schema / $defs / CapabilityReport / properties / setup_verification / title
      Removed value: -"Setup Verification"
    • removedOutput schema / $defs / CapabilityReport / properties / setup_verification / type
      Removed value: -"string"
    • addedOutput schema / $defs / CapabilitySetup / properties / extra / $ref
      Added value: +"#/$defs/CapabilityExtra"
    • removedOutput schema / $defs / CapabilitySetup / properties / extra / enum
      Removed value: -[
      -  "cpu",
      -  "execution",
      -  "memory",
      -  "test",
      -  "trace",
      -  "torch",
      -  "toxiproxy"
      -]
    • removedOutput schema / $defs / CapabilitySetup / properties / extra / title
      Removed value: -"Extra"
    • removedOutput schema / $defs / CapabilitySetup / properties / extra / type
      Removed value: -"string"
    • removedOutput schema / $defs / CapabilitySetup / properties / method
      Removed value: -{
      -  "const": "start_capability_setup",
      -  "title": "Method",
      -  "type": "string"
      -}
    • addedOutput schema / $defs / CapabilitySetup / properties / next_action
      Added value: +{
      +  "$ref": "#/$defs/ManualAction"
      +}
    • removedOutput schema / $defs / CapabilitySetup / properties / next_tool
      Removed value: -{
      -  "enum": [
      -    "start_capability_setup",
      -    "list_capabilities"
      -  ],
      -  "title": "Next Tool",
      -  "type": "string"
      -}
    • addedOutput schema / $defs / CapabilitySetup / properties / verification_action
      Added value: +{
      +  "$ref": "#/$defs/ToolAction"
      +}
    • removedOutput schema / $defs / CapabilitySetup / properties / verification_tool
      Removed value: -{
      -  "const": "list_capabilities",
      -  "default": "list_capabilities",
      -  "title": "Verification Tool",
      -  "type": "string"
      -}
    • changedOutput schema / $defs / CapabilitySetup / required
      Previous value: -[
      -  "method",
      -  "extra",
      -  "next_tool"
      -]New value: +[
      +  "extra",
      +  "next_action",
      +  "verification_action"
      +]
    • addedOutput schema / $defs / CapabilitySetupVerification
      Added value: +{
      +  "enum": [
      +    "not_required",
      +    "pending",
      +    "passive",
      +    "active"
      +  ],
      +  "title": "CapabilitySetupVerification",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / CaptureContainment
      Added value: +{
      +  "enum": [
      +    "active",
      +    "degraded",
      +    "uncontained",
      +    "unavailable"
      +  ],
      +  "type": "string"
      +}
    • addedOutput schema / $defs / CaptureExecutionLimits
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "child_environment_allowlist": {
      +      "items": {
      +        "type": "string"
      +      },
      +      "title": "Child Environment Allowlist",
      +      "type": "array"
      +    },
      +    "max_artifact_bytes": {
      +      "exclusiveMinimum": 0,
      +      "title": "Max Artifact Bytes",
      +      "type": "integer"
      +    },
      +    "max_output_bytes": {
      +      "exclusiveMinimum": 0,
      +      "title": "Max Output Bytes",
      +      "type": "integer"
      +    },
      +    "max_resource_observed_files": {
      +      "exclusiveMinimum": 0,
      +      "maximum": 1000000,
      +      "title": "Max Resource Observed Files",
      +      "type": "integer"
      +    },
      +    "max_rows_per_generation": {
      +      "exclusiveMinimum": 0,
      +      "title": "Max Rows Per Generation",
      +      "type": "integer"
      +    },
      +    "minimum_free_bytes": {
      +      "minimum": 0,
      +      "title": "Minimum Free Bytes",
      +      "type": "integer"
      +    },
      +    "resource_sampling_interval_ms": {
      +      "maximum": 10000,
      +      "minimum": 25,
      +      "title": "Resource Sampling Interval Ms",
      +      "type": "integer"
      +    }
      +  },
      +  "required": [
      +    "child_environment_allowlist",
      +    "max_output_bytes",
      +    "max_artifact_bytes",
      +    "minimum_free_bytes",
      +    "resource_sampling_interval_ms",
      +    "max_resource_observed_files",
      +    "max_rows_per_generation"
      +  ],
      +  "title": "CaptureExecutionLimits",
      +  "type": "object"
      +}
    • removedOutput schema / $defs / CapturePlan
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "adapter": {
      -      "maxLength": 200,
      -      "minLength": 1,
      -      "title": "Adapter",
      -      "type": "string"
      -    },
      -    "adapter_capability": {
      -      "anyOf": [
      -        {
      -          "$ref": "#/$defs/CapabilityReport"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null
      -    },
      -    "adapter_execution_plan": {
      -      "anyOf": [
      -        {
      -          "additionalProperties": {
      -            "$ref": "#/$defs/JsonValue"
      -          },
      -          "type": "object"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "title": "Adapter Execution Plan"
      -    },
      -    "adapter_options": {
      -      "additionalProperties": {
      -        "$ref": "#/$defs/JsonValue"
      -      },
      -      "title": "Adapter Options",
      -      "type": "object"
      -    },
      -    "adapter_version": {
      -      "anyOf": [
      -        {
      -          "type": "string"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "title": "Adapter Version"
      -    },
      -    "bound_identities": {
      -      "additionalProperties": {
      -        "$ref": "#/$defs/JsonValue"
      -      },
      -      "title": "Bound Identities",
      -      "type": "object"
      -    },
      -    "collector_argv": {
      -      "items": {
      -        "type": "string"
      -      },
      -      "title": "Collector Argv",
      -      "type": "array"
      -    },
      -    "collector_environment": {
      -      "additionalProperties": {
      -        "type": "string"
      -      },
      -      "title": "Collector Environment",
      -      "type": "object"
      -    },
      -    "containment": {
      -      "enum": [
      -        "active",
      -        "degraded",
      -        "uncontained",
      -        "unavailable"
      -      ],
      -      "title": "Containment",
      -      "type": "string"
      -    },
      -    "created_at": {
      -      "format": "date-time",
      -      "title": "Created At",
      -      "type": "string"
      -    },
      -    "dynamic_parameters": {
      -      "default": [],
      -      "items": {
      -        "maxLength": 200,
      -        "minLength": 1,
      -        "type": "string"
      -      },
      -      "title": "Dynamic Parameters",
      -      "type": "array"
      -    },
      -    "execution_policy": {
      -      "enum": [
      -        "trusted_local",
      -        "approved_agent"
      -      ],
      -      "title": "Execution Policy",
      -      "type": "string"
      -    },
      -    "expected_artifact_kinds": {
      -      "items": {
      -        "$ref": "#/$defs/ArtifactKind"
      -      },
      -      "title": "Expected Artifact Kinds",
      -      "type": "array"
      -    },
      -    "expected_overhead": {
      -      "title": "Expected Overhead",
      -      "type": "string"
      -    },
      -    "expires_at": {
      -      "format": "date-time",
      -      "title": "Expires At",
      -      "type": "string"
      -    },
      -    "external_context": {
      -      "anyOf": [
      -        {
      -          "$ref": "#/$defs/ExternalExecutionContext"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null
      -    },
      -    "limitation_details": {
      -      "default": [],
      -      "items": {
      -        "$ref": "#/$defs/LimitationDetail"
      -      },
      -      "title": "Limitation Details",
      -      "type": "array"
      -    },
      -    "limits": {
      -      "additionalProperties": {
      -        "$ref": "#/$defs/JsonValue"
      -      },
      -      "title": "Limits",
      -      "type": "object"
      -    },
      -    "network_contained": {
      -      "title": "Network Contained",
      -      "type": "boolean"
      -    },
      -    "permissions": {
      -      "default": [],
      -      "items": {
      -        "type": "string"
      -      },
      -      "title": "Permissions",
      -      "type": "array"
      -    },
      -    "plan_id": {
      -      "maxLength": 200,
      -      "minLength": 1,
      -      "title": "Plan Id",
      -      "type": "string"
      -    },
      -    "planned_execution_identity": {
      -      "$ref": "#/$defs/WorkloadExecutionIdentity"
      -    },
      -    "preflight": {
      -      "$ref": "#/$defs/PreflightReport"
      -    },
      -    "request_digest": {
      -      "pattern": "^sha256:[0-9a-f]{64}$",
      -      "title": "Request Digest",
      -      "type": "string"
      -    },
      -    "run_id": {
      -      "maxLength": 200,
      -      "minLength": 1,
      -      "title": "Run Id",
      -      "type": "string"
      -    },
      -    "schema_version": {
      -      "const": 1,
      -      "default": 1,
      -      "title": "Schema Version",
      -      "type": "integer"
      -    },
      -    "systemd_scope_unit": {
      -      "anyOf": [
      -        {
      -          "type": "string"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "title": "Systemd Scope Unit"
      -    },
      -    "warnings": {
      -      "default": [],
      -      "items": {
      -        "type": "string"
      -      },
      -      "title": "Warnings",
      -      "type": "array"
      -    },
      -    "workload_definition_id": {
      -      "pattern": "^sha256:[0-9a-f]{64}$",
      -      "title": "Workload Definition Id",
      -      "type": "string"
      -    },
      -    "workload_instance": {
      -      "$ref": "#/$defs/WorkloadInstance"
      -    },
      -    "workload_name": {
      -      "maxLength": 200,
      -      "minLength": 1,
      -      "title": "Workload Name",
      -      "type": "string"
      -    },
      -    "workspace_id": {
      -      "maxLength": 200,
      -      "minLength": 1,
      -      "title": "Workspace Id",
      -      "type": "string"
      -    },
      -    "writable_roots": {
      -      "default": [],
      -      "items": {
      -        "$ref": "#/$defs/WritableRootBinding"
      -      },
      -      "title": "Writable Roots",
      -      "type": "array"
      -    }
      -  },
      -  "required": [
      -    "plan_id",
      -    "run_id",
      -    "request_digest",
      -    "workspace_id",
      -    "workload_name",
      -    "workload_definition_id",
      -    "workload_instance",
      -    "adapter",
      -    "execution_policy",
      -    "collector_argv",
      -    "expected_artifact_kinds",
      -    "expected_overhead",
      -    "containment",
      -    "network_contained",
      -    "preflight",
      -    "planned_execution_identity",
      -    "expires_at"
      -  ],
      -  "title": "CapturePlan",
      -  "type": "object"
      -}
    • addedOutput schema / $defs / CaptureScope
      Added value: +{
      +  "additionalProperties": false,
      +  "description": "Property-defining capture scope projected from validated adapter options.",
      +  "properties": {
      +    "bounds": {
      +      "additionalProperties": {
      +        "$ref": "#/$defs/JsonValue"
      +      },
      +      "maxProperties": 32,
      +      "propertyNames": {
      +        "maxLength": 200,
      +        "minLength": 1
      +      },
      +      "title": "Bounds",
      +      "type": "object"
      +    },
      +    "filters": {
      +      "additionalProperties": {
      +        "$ref": "#/$defs/JsonValue"
      +      },
      +      "maxProperties": 32,
      +      "propertyNames": {
      +        "maxLength": 200,
      +        "minLength": 1
      +      },
      +      "title": "Filters",
      +      "type": "object"
      +    },
      +    "mode": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/SemanticOption"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "process_scope": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/SemanticOption"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "workload_cwd": {
      +      "anyOf": [
      +        {
      +          "maxLength": 4096,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Workload Cwd"
      +    }
      +  },
      +  "title": "CaptureScope",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / CompilerIdentity
      Added value: +{
      +  "additionalProperties": false,
      +  "description": "The exact Triton distribution executed by one declared interpreter.",
      +  "properties": {
      +    "adapter": {
      +      "const": "triton.compiler",
      +      "title": "Adapter",
      +      "type": "string"
      +    },
      +    "content_digest": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Content Digest",
      +      "type": "string"
      +    },
      +    "distribution": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "pattern": "^[A-Za-z0-9][A-Za-z0-9._-]*$",
      +      "title": "Distribution",
      +      "type": "string"
      +    },
      +    "interpreter_digest": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Interpreter Digest",
      +      "type": "string"
      +    },
      +    "version": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Version",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "adapter",
      +    "distribution",
      +    "version",
      +    "content_digest",
      +    "interpreter_digest"
      +  ],
      +  "title": "CompilerIdentity",
      +  "type": "object"
      +}
    • removedOutput schema / $defs / ConfigureInferenceRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "configure_inference",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "enum": [
      -        "configure_inference_server",
      -        "list_inference_configurations"
      -      ],
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "ConfigureInferenceRecovery",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / ConfigureWorkloadRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "context": {
      -      "anyOf": [
      -        {
      -          "$ref": "#/$defs/ConfigureWorkloadRecoveryContext"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null
      -    },
      -    "kind": {
      -      "const": "configure_workload",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "configure_workload",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "ConfigureWorkloadRecovery",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / ConfigureWorkloadRecoveryContext
      Removed value: -{
      -  "additionalProperties": false,
      -  "description": "Typed arguments for the safe structured configuration recovery.",
      -  "properties": {
      -    "config_path": {
      -      "const": "flameox.toml",
      -      "default": "flameox.toml",
      -      "title": "Config Path",
      -      "type": "string"
      -    },
      -    "kind": {
      -      "const": "configure_workload",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "operation": {
      -      "const": "create",
      -      "default": "create",
      -      "title": "Operation",
      -      "type": "string"
      -    }
      -  },
      -  "required": [
      -    "kind"
      -  ],
      -  "title": "ConfigureWorkloadRecoveryContext",
      -  "type": "object"
      -}
    • addedOutput schema / $defs / DegradedCapturePlan
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "adapter_capability": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/CapabilityReport"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "adapter_execution_plan": {
      +      "anyOf": [
      +        {
      +          "additionalProperties": {
      +            "$ref": "#/$defs/JsonValue"
      +          },
      +          "type": "object"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Adapter Execution Plan"
      +    },
      +    "adapter_package_identity": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Adapter Package Identity"
      +    },
      +    "adapter_workload_qualification": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/AdapterWorkloadQualification"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "alternative_action": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ToolAction"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "collector_argv": {
      +      "items": {
      +        "type": "string"
      +      },
      +      "title": "Collector Argv",
      +      "type": "array"
      +    },
      +    "collector_environment": {
      +      "additionalProperties": {
      +        "type": "string"
      +      },
      +      "title": "Collector Environment",
      +      "type": "object"
      +    },
      +    "collector_executable_binding": {
      +      "$ref": "#/$defs/ResolvedExecutable"
      +    },
      +    "collector_implementation_id": {
      +      "anyOf": [
      +        {
      +          "pattern": "^sha256:[0-9a-f]{64}$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Collector Implementation Id"
      +    },
      +    "compiler_identity": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/CompilerIdentity"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "containment": {
      +      "const": "degraded",
      +      "title": "Containment",
      +      "type": "string"
      +    },
      +    "created_at": {
      +      "format": "date-time",
      +      "title": "Created At",
      +      "type": "string"
      +    },
      +    "dynamic_parameters": {
      +      "default": [],
      +      "items": {
      +        "maxLength": 200,
      +        "minLength": 1,
      +        "type": "string"
      +      },
      +      "title": "Dynamic Parameters",
      +      "type": "array"
      +    },
      +    "execution_limits": {
      +      "$ref": "#/$defs/CaptureExecutionLimits"
      +    },
      +    "execution_policy": {
      +      "enum": [
      +        "trusted_local",
      +        "approved_agent"
      +      ],
      +      "title": "Execution Policy",
      +      "type": "string"
      +    },
      +    "expected_artifact_kinds": {
      +      "items": {
      +        "$ref": "#/$defs/ArtifactKind"
      +      },
      +      "title": "Expected Artifact Kinds",
      +      "type": "array"
      +    },
      +    "expected_overhead": {
      +      "title": "Expected Overhead",
      +      "type": "string"
      +    },
      +    "expires_at": {
      +      "format": "date-time",
      +      "title": "Expires At",
      +      "type": "string"
      +    },
      +    "external_context": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ExternalExecutionContext"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "limitation_details": {
      +      "default": [],
      +      "items": {
      +        "$ref": "#/$defs/LimitationDetail"
      +      },
      +      "title": "Limitation Details",
      +      "type": "array"
      +    },
      +    "network_contained": {
      +      "title": "Network Contained",
      +      "type": "boolean"
      +    },
      +    "oracle_argv": {
      +      "anyOf": [
      +        {
      +          "items": {
      +            "type": "string"
      +          },
      +          "type": "array"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Oracle Argv"
      +    },
      +    "oracle_containment": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/CaptureContainment"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "oracle_executable_binding": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ResolvedExecutable"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "oracle_launch_executable_binding": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ResolvedExecutable"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "oracle_network_contained": {
      +      "anyOf": [
      +        {
      +          "type": "boolean"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Oracle Network Contained"
      +    },
      +    "oracle_systemd_scope_unit": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Oracle Systemd Scope Unit"
      +    },
      +    "permissions": {
      +      "default": [],
      +      "items": {
      +        "type": "string"
      +      },
      +      "title": "Permissions",
      +      "type": "array"
      +    },
      +    "plan_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Plan Id",
      +      "type": "string"
      +    },
      +    "plan_token": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Plan Token",
      +      "type": "string"
      +    },
      +    "planned_execution_identity": {
      +      "$ref": "#/$defs/WorkloadExecutionIdentity"
      +    },
      +    "preflight": {
      +      "$ref": "#/$defs/PreflightReport"
      +    },
      +    "run_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Run Id",
      +      "type": "string"
      +    },
      +    "semantics": {
      +      "$ref": "#/$defs/RunSemantics"
      +    },
      +    "systemd_scope_unit": {
      +      "default": null,
      +      "title": "Systemd Scope Unit",
      +      "type": "null"
      +    },
      +    "warnings": {
      +      "default": [],
      +      "items": {
      +        "type": "string"
      +      },
      +      "title": "Warnings",
      +      "type": "array"
      +    },
      +    "workload_definition_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Workload Definition Id",
      +      "type": "string"
      +    },
      +    "workload_instance": {
      +      "$ref": "#/$defs/WorkloadInstance"
      +    },
      +    "workload_name": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Workload Name",
      +      "type": "string"
      +    },
      +    "workspace_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Workspace Id",
      +      "type": "string"
      +    },
      +    "writable_roots": {
      +      "default": [],
      +      "items": {
      +        "$ref": "#/$defs/WritableRootBinding"
      +      },
      +      "title": "Writable Roots",
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "plan_token",
      +    "plan_id",
      +    "run_id",
      +    "workspace_id",
      +    "workload_name",
      +    "workload_definition_id",
      +    "workload_instance",
      +    "semantics",
      +    "execution_policy",
      +    "collector_argv",
      +    "collector_executable_binding",
      +    "expected_artifact_kinds",
      +    "expected_overhead",
      +    "preflight",
      +    "planned_execution_identity",
      +    "execution_limits",
      +    "expires_at",
      +    "containment",
      +    "network_contained"
      +  ],
      +  "title": "DegradedCapturePlan",
      +  "type": "object"
      +}
    • removedOutput schema / $defs / DiscoverArtifactsRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "discover_artifacts",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "list_artifacts",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "DiscoverArtifactsRecovery",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / DiscoverRunsRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "discover_runs",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "list_runs",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "DiscoverRunsRecovery",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / DiscoverWorkflowsRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "discover_workflows",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "enum": [
      -        "list_declared_workflows",
      -        "get_declared_workflow"
      -      ],
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "DiscoverWorkflowsRecovery",
      -  "type": "object"
      -}
    • changedOutput schema / $defs / ErrorCode / enum
      Previous value: -[
      -  "INVALID_ARGUMENTS",
      -  "WORKSPACE_NOT_FOUND",
      -  "WORKSPACE_INVALID",
      -  "RUN_NOT_FOUND",
      -  "CAPABILITY_UNAVAILABLE",
      -  "INVALID_CAPTURE_PLAN",
      -  "EXECUTION_REFUSED",
      -  "PROCESS_FAILED",
      -  "PROCESS_TIMEOUT",
      -  "PROCESS_CANCELLED",
      -  "ARTIFACT_TOO_LARGE",
      -  "ARTIFACT_INTEGRITY_FAILED",
      -  "ARTIFACT_PARSE_FAILED",
      -  "EVIDENCE_SCHEMA_MISMATCH",
      -  "COMPARISON_INVALID",
      -  "QUERY_BUDGET_EXCEEDED",
      -  "STORAGE_QUOTA_EXCEEDED",
      -  "WRITE_LOCK_TIMEOUT",
      -  "SENSITIVE_ARTIFACT_REFUSED",
      -  "REVISION_CONFLICT",
      -  "STALE_CURSOR",
      -  "INTERNAL_ERROR"
      -]New value: +[
      +  "INVALID_ARGUMENTS",
      +  "WORKSPACE_NOT_FOUND",
      +  "WORKSPACE_INVALID",
      +  "RUN_NOT_FOUND",
      +  "CAPABILITY_UNAVAILABLE",
      +  "INVALID_CAPTURE_PLAN",
      +  "PLAN_ID_MISMATCH",
      +  "PLAN_TOKEN_UNKNOWN",
      +  "PLAN_TOKEN_EXPIRED",
      +  "PLAN_TOKEN_CONSUMED",
      +  "EXECUTION_REFUSED",
      +  "PROCESS_FAILED",
      +  "PROCESS_TIMEOUT",
      +  "PROCESS_CANCELLED",
      +  "ARTIFACT_TOO_LARGE",
      +  "ARTIFACT_NOT_FOUND",
      +  "ARTIFACT_INTEGRITY_FAILED",
      +  "ARTIFACT_PARSE_FAILED",
      +  "ADAPTER_INCOMPATIBLE",
      +  "EVIDENCE_SCHEMA_MISMATCH",
      +  "COMPARISON_INVALID",
      +  "QUERY_BUDGET_EXCEEDED",
      +  "STORAGE_QUOTA_EXCEEDED",
      +  "WRITE_LOCK_TIMEOUT",
      +  "LOCK_ORDER_VIOLATION",
      +  "SENSITIVE_ARTIFACT_REFUSED",
      +  "REVISION_CONFLICT",
      +  "STALE_CURSOR",
      +  "INTERNAL_ERROR"
      +]
    • addedOutput schema / $defs / ExecutableIdentity
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "device": {
      +      "minimum": 0,
      +      "title": "Device",
      +      "type": "integer"
      +    },
      +    "inode": {
      +      "minimum": 0,
      +      "title": "Inode",
      +      "type": "integer"
      +    },
      +    "mode": {
      +      "minimum": 0,
      +      "title": "Mode",
      +      "type": "integer"
      +    },
      +    "modified_ns": {
      +      "minimum": 0,
      +      "title": "Modified Ns",
      +      "type": "integer"
      +    },
      +    "sha256": {
      +      "title": "Sha256",
      +      "type": "string"
      +    },
      +    "size": {
      +      "minimum": 0,
      +      "title": "Size",
      +      "type": "integer"
      +    }
      +  },
      +  "required": [
      +    "sha256",
      +    "size",
      +    "mode",
      +    "device",
      +    "inode",
      +    "modified_ns"
      +  ],
      +  "title": "ExecutableIdentity",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / ExecutablePolicyDecision
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "allowed": {
      +      "title": "Allowed",
      +      "type": "boolean"
      +    },
      +    "matched_root": {
      +      "anyOf": [
      +        {
      +          "format": "path",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Matched Root"
      +    },
      +    "policy": {
      +      "$ref": "#/$defs/ExecutableTrustPolicy"
      +    }
      +  },
      +  "required": [
      +    "policy",
      +    "allowed"
      +  ],
      +  "title": "ExecutablePolicyDecision",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / ExecutableResolutionOrigin
      Added value: +{
      +  "enum": [
      +    "explicit_path",
      +    "path_search"
      +  ],
      +  "title": "ExecutableResolutionOrigin",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / ExecutableTrustPolicy
      Added value: +{
      +  "enum": [
      +    "project_bound",
      +    "managed_tool",
      +    "trusted_host_tool",
      +    "exact_path"
      +  ],
      +  "title": "ExecutableTrustPolicy",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / ExecutionIdentityBasis
      Added value: +{
      +  "enum": [
      +    "project_source",
      +    "distribution_metadata",
      +    "interpreter_stdlib",
      +    "explicit_file"
      +  ],
      +  "title": "ExecutionIdentityBasis",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / ExecutionIdentityInput / properties / identity_basis
      Added value: +{
      +  "anyOf": [
      +    {
      +      "$ref": "#/$defs/ExecutionIdentityBasis"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null
      +}
    • addedOutput schema / $defs / ExecutionIdentityInput / properties / kind / $ref
      Added value: +"#/$defs/ExecutionIdentityInputKind"
    • removedOutput schema / $defs / ExecutionIdentityInput / properties / kind / enum
      Removed value: -[
      -  "python_module",
      -  "native_file"
      -]
    • removedOutput schema / $defs / ExecutionIdentityInput / properties / kind / title
      Removed value: -"Kind"
    • removedOutput schema / $defs / ExecutionIdentityInput / properties / kind / type
      Removed value: -"string"
    • addedOutput schema / $defs / ExecutionIdentityInput / properties / status / $ref
      Added value: +"#/$defs/ExecutionIdentityInputStatus"
    • removedOutput schema / $defs / ExecutionIdentityInput / properties / status / enum
      Removed value: -[
      -  "exact",
      -  "missing",
      -  "ambiguous",
      -  "resolution_failed",
      -  "not_observed"
      -]
    • removedOutput schema / $defs / ExecutionIdentityInput / properties / status / title
      Removed value: -"Status"
    • removedOutput schema / $defs / ExecutionIdentityInput / properties / status / type
      Removed value: -"string"
    • addedOutput schema / $defs / ExecutionIdentityInputKind
      Added value: +{
      +  "enum": [
      +    "python_module",
      +    "native_file"
      +  ],
      +  "title": "ExecutionIdentityInputKind",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / ExecutionIdentityInputStatus
      Added value: +{
      +  "enum": [
      +    "exact",
      +    "missing",
      +    "ambiguous",
      +    "resolution_failed",
      +    "not_observed"
      +  ],
      +  "title": "ExecutionIdentityInputStatus",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / ExecutionIdentityQuality
      Added value: +{
      +  "enum": [
      +    "exact",
      +    "partial",
      +    "unknown",
      +    "not_applicable"
      +  ],
      +  "title": "ExecutionIdentityQuality",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / ExternalAction
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "instruction": {
      +      "maxLength": 500,
      +      "minLength": 1,
      +      "title": "Instruction",
      +      "type": "string"
      +    },
      +    "kind": {
      +      "const": "external",
      +      "default": "external",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "system": {
      +      "maxLength": 100,
      +      "minLength": 1,
      +      "title": "System",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "instruction",
      +    "system"
      +  ],
      +  "title": "ExternalAction",
      +  "type": "object"
      +}
    • removedOutput schema / $defs / ExtractPerfettoRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "context": {
      -      "anyOf": [
      -        {
      -          "$ref": "#/$defs/ExtractPerfettoRecoveryContext"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null
      -    },
      -    "kind": {
      -      "const": "extract_perfetto",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "extract_perfetto",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": true,
      -      "default": true,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "ExtractPerfettoRecovery",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / ExtractPerfettoRecoveryContext
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "extract_perfetto",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "run_id": {
      -      "minLength": 1,
      -      "title": "Run Id",
      -      "type": "string"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "run_id"
      -  ],
      -  "title": "ExtractPerfettoRecoveryContext",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / FailurePayload / properties / schema_version
      Removed value: -{
      -  "const": 1,
      -  "title": "Schema Version",
      -  "type": "integer"
      -}
    • changedOutput schema / $defs / FailurePayload / required
      Previous value: -[
      -  "schema_version",
      -  "ok",
      -  "result",
      -  "error"
      -]New value: +[
      +  "ok",
      +  "result",
      +  "error"
      +]
    • removedOutput schema / $defs / ImportArtifactRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "import_artifact",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "import_artifact",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "ImportArtifactRecovery",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / InitializeWorkspaceRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "initialize_workspace",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "initialize_workspace",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "InitializeWorkspaceRecovery",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / InspectCapabilitiesRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "inspect_capabilities",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "list_capabilities",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "InspectCapabilitiesRecovery",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / InspectWorkloadConfigurationRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "inspect_workload_configuration",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "workload_configuration_status",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "InspectWorkloadConfigurationRecovery",
      -  "type": "object"
      -}
    • addedOutput schema / $defs / LimitationDetail / properties / source / $ref
      Added value: +"#/$defs/LimitationSource"
    • removedOutput schema / $defs / LimitationDetail / properties / source / enum
      Removed value: -[
      -  "adapter",
      -  "containment",
      -  "preflight",
      -  "collector",
      -  "artifact",
      -  "resource",
      -  "validation"
      -]
    • removedOutput schema / $defs / LimitationDetail / properties / source / title
      Removed value: -"Source"
    • removedOutput schema / $defs / LimitationDetail / properties / source / type
      Removed value: -"string"
    • addedOutput schema / $defs / LimitationSource
      Added value: +{
      +  "enum": [
      +    "adapter",
      +    "containment",
      +    "preflight",
      +    "collector",
      +    "artifact",
      +    "resource",
      +    "validation"
      +  ],
      +  "title": "LimitationSource",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / ManualAction
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "instruction": {
      +      "maxLength": 500,
      +      "minLength": 1,
      +      "title": "Instruction",
      +      "type": "string"
      +    },
      +    "kind": {
      +      "const": "manual",
      +      "default": "manual",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "missing_arguments": {
      +      "default": [],
      +      "items": {
      +        "type": "string"
      +      },
      +      "title": "Missing Arguments",
      +      "type": "array"
      +    },
      +    "suggested_action": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ActionId"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    }
      +  },
      +  "required": [
      +    "instruction"
      +  ],
      +  "title": "ManualAction",
      +  "type": "object"
      +}
    • removedOutput schema / $defs / ManualConfigurationRecoveryContext
      Removed value: -{
      -  "additionalProperties": false,
      -  "description": "Typed context for configuration that cannot be safely rewritten by MCP.",
      -  "properties": {
      -    "config_path": {
      -      "const": "flameox.toml",
      -      "default": "flameox.toml",
      -      "title": "Config Path",
      -      "type": "string"
      -    },
      -    "diagnostic": {
      -      "maxLength": 500,
      -      "title": "Diagnostic",
      -      "type": "string"
      -    },
      -    "kind": {
      -      "const": "manual_configuration",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "verification_tool": {
      -      "const": "workload_configuration_status",
      -      "default": "workload_configuration_status",
      -      "title": "Verification Tool",
      -      "type": "string"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "diagnostic"
      -  ],
      -  "title": "ManualConfigurationRecoveryContext",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / ManualRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "context": {
      -      "anyOf": [
      -        {
      -          "$ref": "#/$defs/ManualConfigurationRecoveryContext"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null
      -    },
      -    "kind": {
      -      "const": "manual",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "default": null,
      -      "title": "Next Tool",
      -      "type": "null"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind"
      -  ],
      -  "title": "ManualRecovery",
      -  "type": "object"
      -}
    • addedOutput schema / $defs / NextAction
      Added value: +{
      +  "discriminator": {
      +    "mapping": {
      +      "external": "#/$defs/ExternalAction",
      +      "manual": "#/$defs/ManualAction",
      +      "tool": "#/$defs/ToolAction"
      +    },
      +    "propertyName": "kind"
      +  },
      +  "oneOf": [
      +    {
      +      "$ref": "#/$defs/ToolAction"
      +    },
      +    {
      +      "$ref": "#/$defs/ManualAction"
      +    },
      +    {
      +      "$ref": "#/$defs/ExternalAction"
      +    }
      +  ]
      +}
    • addedOutput schema / $defs / PreflightDisposition
      Added value: +{
      +  "enum": [
      +    "ready",
      +    "blocked",
      +    "exploratory"
      +  ],
      +  "title": "PreflightDisposition",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / PreflightReport / properties / disposition / $ref
      Added value: +"#/$defs/PreflightDisposition"
    • removedOutput schema / $defs / PreflightReport / properties / disposition / enum
      Removed value: -[
      -  "ready",
      -  "blocked",
      -  "exploratory"
      -]
    • removedOutput schema / $defs / PreflightReport / properties / disposition / title
      Removed value: -"Disposition"
    • removedOutput schema / $defs / PreflightReport / properties / disposition / type
      Removed value: -"string"
    • addedOutput schema / $defs / PreflightReport / properties / mode / $ref
      Added value: +"#/$defs/ProbeKind"
    • removedOutput schema / $defs / PreflightReport / properties / mode / enum
      Removed value: -[
      -  "passive",
      -  "active"
      -]
    • removedOutput schema / $defs / PreflightReport / properties / mode / title
      Removed value: -"Mode"
    • removedOutput schema / $defs / PreflightReport / properties / mode / type
      Removed value: -"string"
    • removedOutput schema / $defs / PreflightReport / properties / schema_version
      Removed value: -{
      -  "const": 1,
      -  "default": 1,
      -  "title": "Schema Version",
      -  "type": "integer"
      -}
    • removedOutput schema / $defs / PrepareAdapterRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "prepare_adapter",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "prepare_adapter",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": true,
      -      "default": true,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "PrepareAdapterRecovery",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / PrepareWorkloadDependenciesRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "prepare_workload_dependencies",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "prepare_workload_dependencies",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": true,
      -      "default": true,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "PrepareWorkloadDependenciesRecovery",
      -  "type": "object"
      -}
    • addedOutput schema / $defs / ProbeKind
      Added value: +{
      +  "enum": [
      +    "passive",
      +    "active"
      +  ],
      +  "title": "ProbeKind",
      +  "type": "string"
      +}
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / configure_inference
      Removed value: -"#/$defs/ConfigureInferenceRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / configure_workload
      Removed value: -"#/$defs/ConfigureWorkloadRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / discover_artifacts
      Removed value: -"#/$defs/DiscoverArtifactsRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / discover_runs
      Removed value: -"#/$defs/DiscoverRunsRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / discover_workflows
      Removed value: -"#/$defs/DiscoverWorkflowsRecovery"
    • addedOutput schema / $defs / RecoveryAction / discriminator / mapping / external
      Added value: +"#/$defs/RecoveryExternalAction"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / extract_perfetto
      Removed value: -"#/$defs/ExtractPerfettoRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / import_artifact
      Removed value: -"#/$defs/ImportArtifactRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / initialize_workspace
      Removed value: -"#/$defs/InitializeWorkspaceRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / inspect_capabilities
      Removed value: -"#/$defs/InspectCapabilitiesRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / inspect_workload_configuration
      Removed value: -"#/$defs/InspectWorkloadConfigurationRecovery"
    • changedOutput schema / $defs / RecoveryAction / discriminator / mapping / manual
      Previous value: -"#/$defs/ManualRecovery"New value: +"#/$defs/RecoveryManualAction"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / prepare_adapter
      Removed value: -"#/$defs/PrepareAdapterRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / prepare_workload_dependencies
      Removed value: -"#/$defs/PrepareWorkloadDependenciesRecovery"
    • changedOutput schema / $defs / RecoveryAction / discriminator / mapping / repeat_same_call
      Previous value: -"#/$defs/RepeatSameCallRecovery"New value: +"#/$defs/RetryRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / replan_capture
      Removed value: -"#/$defs/ReplanCaptureRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / replan_inference
      Removed value: -"#/$defs/ReplanInferenceRecovery"
    • removedOutput schema / $defs / RecoveryAction / discriminator / mapping / start_capability_setup
      Removed value: -"#/$defs/StartCapabilitySetupRecovery"
    • addedOutput schema / $defs / RecoveryAction / discriminator / mapping / tool
      Added value: +"#/$defs/RecoveryToolAction"
    • changedOutput schema / $defs / RecoveryAction / discriminator / mapping / wait_then_repeat
      Previous value: -"#/$defs/WaitThenRepeatRecovery"New value: +"#/$defs/RetryRecovery"
    • changedOutput schema / $defs / RecoveryAction / oneOf
      Previous value: -[
      -  {
      -    "$ref": "#/$defs/RepeatSameCallRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/WaitThenRepeatRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/ReplanCaptureRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/InitializeWorkspaceRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/ConfigureWorkloadRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/InspectWorkloadConfigurationRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/StartCapabilitySetupRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/PrepareAdapterRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/PrepareWorkloadDependenciesRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/InspectCapabilitiesRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/DiscoverWorkflowsRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/DiscoverRunsRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/DiscoverArtifactsRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/ImportArtifactRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/ExtractPerfettoRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/ConfigureInferenceRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/ReplanInferenceRecovery"
      -  },
      -  {
      -    "$ref": "#/$defs/ManualRecovery"
      -  }
      -]New value: +[
      +  {
      +    "$ref": "#/$defs/RetryRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/RecoveryToolAction"
      +  },
      +  {
      +    "$ref": "#/$defs/RecoveryManualAction"
      +  },
      +  {
      +    "$ref": "#/$defs/RecoveryExternalAction"
      +  }
      +]
    • addedOutput schema / $defs / RecoveryExternalAction
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "instruction": {
      +      "maxLength": 500,
      +      "minLength": 1,
      +      "title": "Instruction",
      +      "type": "string"
      +    },
      +    "kind": {
      +      "const": "external",
      +      "default": "external",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    },
      +    "system": {
      +      "maxLength": 100,
      +      "minLength": 1,
      +      "title": "System",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "instruction",
      +    "system"
      +  ],
      +  "title": "RecoveryExternalAction",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / RecoveryManualAction
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "instruction": {
      +      "maxLength": 500,
      +      "minLength": 1,
      +      "title": "Instruction",
      +      "type": "string"
      +    },
      +    "kind": {
      +      "const": "manual",
      +      "default": "manual",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "missing_arguments": {
      +      "default": [],
      +      "items": {
      +        "type": "string"
      +      },
      +      "title": "Missing Arguments",
      +      "type": "array"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "instruction"
      +  ],
      +  "title": "RecoveryManualAction",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / RecoveryToolAction
      Added value: +{
      +  "additionalProperties": false,
      +  "description": "One executable MCP recovery action with a concrete tool name.",
      +  "properties": {
      +    "arguments": {
      +      "additionalProperties": true,
      +      "title": "Arguments",
      +      "type": "object"
      +    },
      +    "kind": {
      +      "const": "tool",
      +      "default": "tool",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    },
      +    "tool_name": {
      +      "$ref": "#/$defs/ToolName"
      +    }
      +  },
      +  "required": [
      +    "tool_name"
      +  ],
      +  "title": "RecoveryToolAction",
      +  "type": "object"
      +}
    • removedOutput schema / $defs / RepeatSameCallRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "repeat_same_call",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "default": null,
      -      "title": "Next Tool",
      -      "type": "null"
      -    },
      -    "retry_after_ms": {
      -      "minimum": 0,
      -      "title": "Retry After Ms",
      -      "type": "integer"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": true,
      -      "default": true,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "retry_after_ms"
      -  ],
      -  "title": "RepeatSameCallRecovery",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / ReplanCaptureRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "replan_capture",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "plan_capture",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "ReplanCaptureRecovery",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / ReplanInferenceRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "replan_inference",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "plan_inference_scenario",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": false,
      -      "default": false,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "ReplanInferenceRecovery",
      -  "type": "object"
      -}
    • addedOutput schema / $defs / RequirementKind
      Added value: +{
      +  "enum": [
      +    "executable",
      +    "python_distribution",
      +    "capability"
      +  ],
      +  "title": "RequirementKind",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / RequirementResult / properties / kind / $ref
      Added value: +"#/$defs/RequirementKind"
    • removedOutput schema / $defs / RequirementResult / properties / kind / enum
      Removed value: -[
      -  "executable",
      -  "python_distribution",
      -  "capability"
      -]
    • removedOutput schema / $defs / RequirementResult / properties / kind / title
      Removed value: -"Kind"
    • removedOutput schema / $defs / RequirementResult / properties / kind / type
      Removed value: -"string"
    • addedOutput schema / $defs / RequirementResult / properties / next_action
      Added value: +{
      +  "anyOf": [
      +    {
      +      "$ref": "#/$defs/NextAction"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null
      +}
    • removedOutput schema / $defs / RequirementResult / properties / next_tool
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "enum": [
      -        "prepare_adapter",
      -        "start_capability_setup",
      -        "prepare_workload_dependencies",
      -        "list_capabilities",
      -        "plan_capture"
      -      ],
      -      "type": "string"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "title": "Next Tool"
      -}
    • addedOutput schema / $defs / RequirementResult / properties / probe_kind / $ref
      Added value: +"#/$defs/ProbeKind"
    • removedOutput schema / $defs / RequirementResult / properties / probe_kind / enum
      Removed value: -[
      -  "passive",
      -  "active"
      -]
    • removedOutput schema / $defs / RequirementResult / properties / probe_kind / title
      Removed value: -"Probe Kind"
    • removedOutput schema / $defs / RequirementResult / properties / probe_kind / type
      Removed value: -"string"
    • addedOutput schema / $defs / RequirementResult / properties / status / $ref
      Added value: +"#/$defs/RequirementStatus"
    • removedOutput schema / $defs / RequirementResult / properties / status / enum
      Removed value: -[
      -  "available",
      -  "absent",
      -  "permission_denied",
      -  "environment_blocked",
      -  "unsupported",
      -  "unknown",
      -  "probe_failed"
      -]
    • removedOutput schema / $defs / RequirementResult / properties / status / title
      Removed value: -"Status"
    • removedOutput schema / $defs / RequirementResult / properties / status / type
      Removed value: -"string"
    • addedOutput schema / $defs / RequirementStatus
      Added value: +{
      +  "enum": [
      +    "available",
      +    "absent",
      +    "permission_denied",
      +    "environment_blocked",
      +    "unsupported",
      +    "unknown",
      +    "probe_failed"
      +  ],
      +  "title": "RequirementStatus",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / ResolvedExecutable
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "canonical_target": {
      +      "format": "path",
      +      "title": "Canonical Target",
      +      "type": "string"
      +    },
      +    "identity": {
      +      "$ref": "#/$defs/ExecutableIdentity"
      +    },
      +    "invocation_path": {
      +      "format": "path",
      +      "title": "Invocation Path",
      +      "type": "string"
      +    },
      +    "matched_path_entry": {
      +      "anyOf": [
      +        {
      +          "format": "path",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Matched Path Entry"
      +    },
      +    "origin": {
      +      "$ref": "#/$defs/ExecutableResolutionOrigin"
      +    },
      +    "policy_decision": {
      +      "$ref": "#/$defs/ExecutablePolicyDecision"
      +    },
      +    "requested_token": {
      +      "title": "Requested Token",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "requested_token",
      +    "invocation_path",
      +    "canonical_target",
      +    "origin",
      +    "identity",
      +    "policy_decision"
      +  ],
      +  "title": "ResolvedExecutable",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / RetryRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "enum": [
      +        "repeat_same_call",
      +        "wait_then_repeat"
      +      ],
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "minimum": 0,
      +      "title": "Retry After Ms",
      +      "type": "integer"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": true,
      +      "default": true,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "retry_after_ms"
      +  ],
      +  "title": "RetryRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / RunSemantics
      Added value: +{
      +  "additionalProperties": false,
      +  "description": "Durable authority for what a run attempted, independent of produced bytes.",
      +  "properties": {
      +    "adapter": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Adapter"
      +    },
      +    "adapter_version": {
      +      "anyOf": [
      +        {
      +          "maxLength": 200,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Adapter Version"
      +    },
      +    "configuration": {
      +      "additionalProperties": {
      +        "$ref": "#/$defs/JsonValue"
      +      },
      +      "maxProperties": 64,
      +      "propertyNames": {
      +        "maxLength": 200,
      +        "minLength": 1
      +      },
      +      "title": "Configuration",
      +      "type": "object"
      +    },
      +    "origin": {
      +      "enum": [
      +        "capture",
      +        "import",
      +        "internal"
      +      ],
      +      "title": "Origin",
      +      "type": "string"
      +    },
      +    "scope": {
      +      "$ref": "#/$defs/CaptureScope"
      +    },
      +    "unavailable_fields": {
      +      "default": [],
      +      "items": {
      +        "maxLength": 200,
      +        "minLength": 1,
      +        "type": "string"
      +      },
      +      "maxItems": 32,
      +      "title": "Unavailable Fields",
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "origin"
      +  ],
      +  "title": "RunSemantics",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / SemanticOption
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "name": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Name",
      +      "type": "string"
      +    },
      +    "value": {
      +      "$ref": "#/$defs/JsonValue"
      +    }
      +  },
      +  "required": [
      +    "name",
      +    "value"
      +  ],
      +  "title": "SemanticOption",
      +  "type": "object"
      +}
    • removedOutput schema / $defs / StartCapabilitySetupRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "start_capability_setup",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "const": "start_capability_setup",
      -      "title": "Next Tool",
      -      "type": "string"
      -    },
      -    "retry_after_ms": {
      -      "default": null,
      -      "title": "Retry After Ms",
      -      "type": "null"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": true,
      -      "default": true,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "next_tool"
      -  ],
      -  "title": "StartCapabilitySetupRecovery",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / SuccessPayload_CapturePlan_ / properties / result / $ref
      Removed value: -"#/$defs/CapturePlan"
    • addedOutput schema / $defs / SuccessPayload_CapturePlan_ / properties / result / discriminator
      Added value: +{
      +  "mapping": {
      +    "active": "#/$defs/ActiveCapturePlan",
      +    "degraded": "#/$defs/DegradedCapturePlan",
      +    "unavailable": "#/$defs/UnavailableCapturePlan",
      +    "uncontained": "#/$defs/UncontainedCapturePlan"
      +  },
      +  "propertyName": "containment"
      +}
    • addedOutput schema / $defs / SuccessPayload_CapturePlan_ / properties / result / oneOf
      Added value: +[
      +  {
      +    "$ref": "#/$defs/ActiveCapturePlan"
      +  },
      +  {
      +    "$ref": "#/$defs/DegradedCapturePlan"
      +  },
      +  {
      +    "$ref": "#/$defs/UncontainedCapturePlan"
      +  },
      +  {
      +    "$ref": "#/$defs/UnavailableCapturePlan"
      +  }
      +]
    • addedOutput schema / $defs / SuccessPayload_CapturePlan_ / properties / result / title
      Added value: +"Result"
    • removedOutput schema / $defs / SuccessPayload_CapturePlan_ / properties / schema_version
      Removed value: -{
      -  "const": 1,
      -  "title": "Schema Version",
      -  "type": "integer"
      -}
    • changedOutput schema / $defs / SuccessPayload_CapturePlan_ / required
      Previous value: -[
      -  "schema_version",
      -  "ok",
      -  "result",
      -  "error"
      -]New value: +[
      +  "ok",
      +  "result",
      +  "error"
      +]
    • addedOutput schema / $defs / ToolAction
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "action": {
      +      "$ref": "#/$defs/ActionId"
      +    },
      +    "arguments": {
      +      "additionalProperties": true,
      +      "title": "Arguments",
      +      "type": "object"
      +    },
      +    "kind": {
      +      "const": "tool",
      +      "default": "tool",
      +      "title": "Kind",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "action"
      +  ],
      +  "title": "ToolAction",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / ToolName
      Added value: +{
      +  "enum": [
      +    "initialize_workspace",
      +    "workload_configuration_status",
      +    "configure_workload",
      +    "list_capabilities",
      +    "start_capability_setup",
      +    "get_capability_setup",
      +    "prepare_adapter",
      +    "prepare_workload_dependencies",
      +    "list_declared_workflows",
      +    "get_declared_workflow",
      +    "plan_fault_experiment",
      +    "plan_capture",
      +    "start_detached_capture",
      +    "get_detached_capture",
      +    "rebuild_catalog",
      +    "list_runs",
      +    "list_artifacts",
      +    "preview_artifact",
      +    "get_native_viewer_plan",
      +    "import_artifact",
      +    "import_xctrace",
      +    "extract_perfetto",
      +    "extract_memray",
      +    "get_extraction",
      +    "extract_nsight_systems",
      +    "extract_nsight_compute",
      +    "extract_compute_sanitizer",
      +    "configure_inference_server",
      +    "list_inference_configurations",
      +    "plan_inference_scenario",
      +    "execute_reduction",
      +    "get_reduction",
      +    "analyze_memory",
      +    "analyze_nsight_compute"
      +  ],
      +  "title": "ToolName",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / UnavailableCapturePlan
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "adapter_capability": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/CapabilityReport"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "adapter_execution_plan": {
      +      "anyOf": [
      +        {
      +          "additionalProperties": {
      +            "$ref": "#/$defs/JsonValue"
      +          },
      +          "type": "object"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Adapter Execution Plan"
      +    },
      +    "adapter_package_identity": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Adapter Package Identity"
      +    },
      +    "adapter_workload_qualification": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/AdapterWorkloadQualification"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "alternative_action": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ToolAction"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "collector_argv": {
      +      "items": {
      +        "type": "string"
      +      },
      +      "title": "Collector Argv",
      +      "type": "array"
      +    },
      +    "collector_environment": {
      +      "additionalProperties": {
      +        "type": "string"
      +      },
      +      "title": "Collector Environment",
      +      "type": "object"
      +    },
      +    "collector_executable_binding": {
      +      "$ref": "#/$defs/ResolvedExecutable"
      +    },
      +    "collector_implementation_id": {
      +      "anyOf": [
      +        {
      +          "pattern": "^sha256:[0-9a-f]{64}$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Collector Implementation Id"
      +    },
      +    "compiler_identity": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/CompilerIdentity"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "containment": {
      +      "const": "unavailable",
      +      "title": "Containment",
      +      "type": "string"
      +    },
      +    "created_at": {
      +      "format": "date-time",
      +      "title": "Created At",
      +      "type": "string"
      +    },
      +    "dynamic_parameters": {
      +      "default": [],
      +      "items": {
      +        "maxLength": 200,
      +        "minLength": 1,
      +        "type": "string"
      +      },
      +      "title": "Dynamic Parameters",
      +      "type": "array"
      +    },
      +    "execution_limits": {
      +      "$ref": "#/$defs/CaptureExecutionLimits"
      +    },
      +    "execution_policy": {
      +      "enum": [
      +        "trusted_local",
      +        "approved_agent"
      +      ],
      +      "title": "Execution Policy",
      +      "type": "string"
      +    },
      +    "expected_artifact_kinds": {
      +      "items": {
      +        "$ref": "#/$defs/ArtifactKind"
      +      },
      +      "title": "Expected Artifact Kinds",
      +      "type": "array"
      +    },
      +    "expected_overhead": {
      +      "title": "Expected Overhead",
      +      "type": "string"
      +    },
      +    "expires_at": {
      +      "format": "date-time",
      +      "title": "Expires At",
      +      "type": "string"
      +    },
      +    "external_context": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ExternalExecutionContext"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "limitation_details": {
      +      "default": [],
      +      "items": {
      +        "$ref": "#/$defs/LimitationDetail"
      +      },
      +      "title": "Limitation Details",
      +      "type": "array"
      +    },
      +    "network_contained": {
      +      "const": false,
      +      "default": false,
      +      "title": "Network Contained",
      +      "type": "boolean"
      +    },
      +    "oracle_argv": {
      +      "anyOf": [
      +        {
      +          "items": {
      +            "type": "string"
      +          },
      +          "type": "array"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Oracle Argv"
      +    },
      +    "oracle_containment": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/CaptureContainment"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "oracle_executable_binding": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ResolvedExecutable"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "oracle_launch_executable_binding": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ResolvedExecutable"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "oracle_network_contained": {
      +      "anyOf": [
      +        {
      +          "type": "boolean"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Oracle Network Contained"
      +    },
      +    "oracle_systemd_scope_unit": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Oracle Systemd Scope Unit"
      +    },
      +    "permissions": {
      +      "default": [],
      +      "items": {
      +        "type": "string"
      +      },
      +      "title": "Permissions",
      +      "type": "array"
      +    },
      +    "plan_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Plan Id",
      +      "type": "string"
      +    },
      +    "plan_token": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Plan Token",
      +      "type": "string"
      +    },
      +    "planned_execution_identity": {
      +      "$ref": "#/$defs/WorkloadExecutionIdentity"
      +    },
      +    "preflight": {
      +      "$ref": "#/$defs/PreflightReport"
      +    },
      +    "run_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Run Id",
      +      "type": "string"
      +    },
      +    "semantics": {
      +      "$ref": "#/$defs/RunSemantics"
      +    },
      +    "systemd_scope_unit": {
      +      "default": null,
      +      "title": "Systemd Scope Unit",
      +      "type": "null"
      +    },
      +    "warnings": {
      +      "default": [],
      +      "items": {
      +        "type": "string"
      +      },
      +      "title": "Warnings",
      +      "type": "array"
      +    },
      +    "workload_definition_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Workload Definition Id",
      +      "type": "string"
      +    },
      +    "workload_instance": {
      +      "$ref": "#/$defs/WorkloadInstance"
      +    },
      +    "workload_name": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Workload Name",
      +      "type": "string"
      +    },
      +    "workspace_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Workspace Id",
      +      "type": "string"
      +    },
      +    "writable_roots": {
      +      "default": [],
      +      "items": {
      +        "$ref": "#/$defs/WritableRootBinding"
      +      },
      +      "title": "Writable Roots",
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "plan_token",
      +    "plan_id",
      +    "run_id",
      +    "workspace_id",
      +    "workload_name",
      +    "workload_definition_id",
      +    "workload_instance",
      +    "semantics",
      +    "execution_policy",
      +    "collector_argv",
      +    "collector_executable_binding",
      +    "expected_artifact_kinds",
      +    "expected_overhead",
      +    "preflight",
      +    "planned_execution_identity",
      +    "execution_limits",
      +    "expires_at",
      +    "containment"
      +  ],
      +  "title": "UnavailableCapturePlan",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / UncontainedCapturePlan
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "adapter_capability": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/CapabilityReport"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "adapter_execution_plan": {
      +      "anyOf": [
      +        {
      +          "additionalProperties": {
      +            "$ref": "#/$defs/JsonValue"
      +          },
      +          "type": "object"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Adapter Execution Plan"
      +    },
      +    "adapter_package_identity": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Adapter Package Identity"
      +    },
      +    "adapter_workload_qualification": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/AdapterWorkloadQualification"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "alternative_action": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ToolAction"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "collector_argv": {
      +      "items": {
      +        "type": "string"
      +      },
      +      "title": "Collector Argv",
      +      "type": "array"
      +    },
      +    "collector_environment": {
      +      "additionalProperties": {
      +        "type": "string"
      +      },
      +      "title": "Collector Environment",
      +      "type": "object"
      +    },
      +    "collector_executable_binding": {
      +      "$ref": "#/$defs/ResolvedExecutable"
      +    },
      +    "collector_implementation_id": {
      +      "anyOf": [
      +        {
      +          "pattern": "^sha256:[0-9a-f]{64}$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Collector Implementation Id"
      +    },
      +    "compiler_identity": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/CompilerIdentity"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "containment": {
      +      "const": "uncontained",
      +      "title": "Containment",
      +      "type": "string"
      +    },
      +    "created_at": {
      +      "format": "date-time",
      +      "title": "Created At",
      +      "type": "string"
      +    },
      +    "dynamic_parameters": {
      +      "default": [],
      +      "items": {
      +        "maxLength": 200,
      +        "minLength": 1,
      +        "type": "string"
      +      },
      +      "title": "Dynamic Parameters",
      +      "type": "array"
      +    },
      +    "execution_limits": {
      +      "$ref": "#/$defs/CaptureExecutionLimits"
      +    },
      +    "execution_policy": {
      +      "enum": [
      +        "trusted_local",
      +        "approved_agent"
      +      ],
      +      "title": "Execution Policy",
      +      "type": "string"
      +    },
      +    "expected_artifact_kinds": {
      +      "items": {
      +        "$ref": "#/$defs/ArtifactKind"
      +      },
      +      "title": "Expected Artifact Kinds",
      +      "type": "array"
      +    },
      +    "expected_overhead": {
      +      "title": "Expected Overhead",
      +      "type": "string"
      +    },
      +    "expires_at": {
      +      "format": "date-time",
      +      "title": "Expires At",
      +      "type": "string"
      +    },
      +    "external_context": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ExternalExecutionContext"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "limitation_details": {
      +      "default": [],
      +      "items": {
      +        "$ref": "#/$defs/LimitationDetail"
      +      },
      +      "title": "Limitation Details",
      +      "type": "array"
      +    },
      +    "network_contained": {
      +      "const": false,
      +      "default": false,
      +      "title": "Network Contained",
      +      "type": "boolean"
      +    },
      +    "oracle_argv": {
      +      "anyOf": [
      +        {
      +          "items": {
      +            "type": "string"
      +          },
      +          "type": "array"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Oracle Argv"
      +    },
      +    "oracle_containment": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/CaptureContainment"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "oracle_executable_binding": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ResolvedExecutable"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "oracle_launch_executable_binding": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ResolvedExecutable"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "oracle_network_contained": {
      +      "anyOf": [
      +        {
      +          "type": "boolean"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Oracle Network Contained"
      +    },
      +    "oracle_systemd_scope_unit": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Oracle Systemd Scope Unit"
      +    },
      +    "permissions": {
      +      "default": [],
      +      "items": {
      +        "type": "string"
      +      },
      +      "title": "Permissions",
      +      "type": "array"
      +    },
      +    "plan_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Plan Id",
      +      "type": "string"
      +    },
      +    "plan_token": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Plan Token",
      +      "type": "string"
      +    },
      +    "planned_execution_identity": {
      +      "$ref": "#/$defs/WorkloadExecutionIdentity"
      +    },
      +    "preflight": {
      +      "$ref": "#/$defs/PreflightReport"
      +    },
      +    "run_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Run Id",
      +      "type": "string"
      +    },
      +    "semantics": {
      +      "$ref": "#/$defs/RunSemantics"
      +    },
      +    "systemd_scope_unit": {
      +      "default": null,
      +      "title": "Systemd Scope Unit",
      +      "type": "null"
      +    },
      +    "warnings": {
      +      "default": [],
      +      "items": {
      +        "type": "string"
      +      },
      +      "title": "Warnings",
      +      "type": "array"
      +    },
      +    "workload_definition_id": {
      +      "pattern": "^sha256:[0-9a-f]{64}$",
      +      "title": "Workload Definition Id",
      +      "type": "string"
      +    },
      +    "workload_instance": {
      +      "$ref": "#/$defs/WorkloadInstance"
      +    },
      +    "workload_name": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Workload Name",
      +      "type": "string"
      +    },
      +    "workspace_id": {
      +      "maxLength": 200,
      +      "minLength": 1,
      +      "title": "Workspace Id",
      +      "type": "string"
      +    },
      +    "writable_roots": {
      +      "default": [],
      +      "items": {
      +        "$ref": "#/$defs/WritableRootBinding"
      +      },
      +      "title": "Writable Roots",
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "plan_token",
      +    "plan_id",
      +    "run_id",
      +    "workspace_id",
      +    "workload_name",
      +    "workload_definition_id",
      +    "workload_instance",
      +    "semantics",
      +    "execution_policy",
      +    "collector_argv",
      +    "collector_executable_binding",
      +    "expected_artifact_kinds",
      +    "expected_overhead",
      +    "preflight",
      +    "planned_execution_identity",
      +    "execution_limits",
      +    "expires_at",
      +    "containment"
      +  ],
      +  "title": "UncontainedCapturePlan",
      +  "type": "object"
      +}
    • removedOutput schema / $defs / WaitThenRepeatRecovery
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "kind": {
      -      "const": "wait_then_repeat",
      -      "title": "Kind",
      -      "type": "string"
      -    },
      -    "next_tool": {
      -      "default": null,
      -      "title": "Next Tool",
      -      "type": "null"
      -    },
      -    "retry_after_ms": {
      -      "minimum": 0,
      -      "title": "Retry After Ms",
      -      "type": "integer"
      -    },
      -    "safe_to_repeat_same_call": {
      -      "const": true,
      -      "default": true,
      -      "title": "Safe To Repeat Same Call",
      -      "type": "boolean"
      -    }
      -  },
      -  "required": [
      -    "kind",
      -    "retry_after_ms"
      -  ],
      -  "title": "WaitThenRepeatRecovery",
      -  "type": "object"
      -}
    • addedOutput schema / $defs / WorkloadExecutionIdentity / properties / quality / $ref
      Added value: +"#/$defs/ExecutionIdentityQuality"
    • removedOutput schema / $defs / WorkloadExecutionIdentity / properties / quality / enum
      Removed value: -[
      -  "exact",
      -  "partial",
      -  "unknown",
      -  "not_applicable"
      -]
    • removedOutput schema / $defs / WorkloadExecutionIdentity / properties / quality / title
      Removed value: -"Quality"
    • removedOutput schema / $defs / WorkloadExecutionIdentity / properties / quality / type
      Removed value: -"string"
    • removedOutput schema / $defs / WorkloadExecutionIdentity / properties / schema_version
      Removed value: -{
      -  "const": 1,
      -  "default": 1,
      -  "title": "Schema Version",
      -  "type": "integer"
      -}
    • addedOutput schema / $defs / WorkloadExecutionProtocol
      Added value: +{
      +  "enum": [
      +    "nvbench"
      +  ],
      +  "title": "WorkloadExecutionProtocol",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / WorkloadInstance / properties / executable_binding
      Added value: +{
      +  "$ref": "#/$defs/ResolvedExecutable"
      +}
    • removedOutput schema / $defs / WorkloadInstance / properties / schema_version
      Removed value: -{
      -  "const": 1,
      -  "default": 1,
      -  "title": "Schema Version",
      -  "type": "integer"
      -}
    • changedOutput schema / $defs / WorkloadInstance / required
      Previous value: -[
      -  "workload_instance_id",
      -  "workload_definition_id",
      -  "command"
      -]New value: +[
      +  "workload_instance_id",
      +  "workload_definition_id",
      +  "command",
      +  "executable_binding"
      +]
  2. Changed54 schema fields changedv0.1.12
    • addedInput schema / $defs / ComputeSanitizerCaptureOptions
      Added value: +{
      +  "additionalProperties": false,
      +  "description": "User-facing Compute Sanitizer selections before plan identity is bound.",
      +  "properties": {
      +    "demangle": {
      +      "default": "full",
      +      "enum": [
      +        "full",
      +        "simple",
      +        "no"
      +      ],
      +      "title": "Demangle",
      +      "type": "string"
      +    },
      +    "finding_exit_code": {
      +      "default": 86,
      +      "maximum": 255,
      +      "minimum": 1,
      +      "title": "Finding Exit Code",
      +      "type": "integer"
      +    },
      +    "kernel_name": {
      +      "anyOf": [
      +        {
      +          "maxLength": 500,
      +          "minLength": 1,
      +          "pattern": "^[^\\x00\\r\\n]+$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Kernel Name"
      +    },
      +    "launch_count": {
      +      "default": 0,
      +      "maximum": 1000000,
      +      "minimum": 0,
      +      "title": "Launch Count",
      +      "type": "integer"
      +    },
      +    "launch_skip": {
      +      "default": 0,
      +      "maximum": 1000000,
      +      "minimum": 0,
      +      "title": "Launch Skip",
      +      "type": "integer"
      +    },
      +    "suppression_file": {
      +      "anyOf": [
      +        {
      +          "maxLength": 500,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Suppression File"
      +    },
      +    "target_processes": {
      +      "default": "application-only",
      +      "enum": [
      +        "application-only",
      +        "all"
      +      ],
      +      "title": "Target Processes",
      +      "type": "string"
      +    },
      +    "target_processes_filter": {
      +      "anyOf": [
      +        {
      +          "maxLength": 500,
      +          "minLength": 1,
      +          "pattern": "^[^\\x00\\r\\n]+$",
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "title": "Target Processes Filter"
      +    },
      +    "tool": {
      +      "default": "memcheck",
      +      "enum": [
      +        "memcheck",
      +        "racecheck",
      +        "initcheck",
      +        "synccheck"
      +      ],
      +      "title": "Tool",
      +      "type": "string"
      +    }
      +  },
      +  "title": "ComputeSanitizerCaptureOptions",
      +  "type": "object"
      +}
    • addedInput schema / $defs / SdkTorchProfilerOptions
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "activities": {
      +      "default": [
      +        "cpu",
      +        "cuda_if_available"
      +      ],
      +      "items": {
      +        "enum": [
      +          "cpu",
      +          "cuda",
      +          "cuda_if_available"
      +        ],
      +        "type": "string"
      +      },
      +      "title": "Activities",
      +      "type": "array"
      +    },
      +    "mode": {
      +      "const": "sdk",
      +      "default": "sdk",
      +      "title": "Mode",
      +      "type": "string"
      +    },
      +    "profile_memory": {
      +      "default": true,
      +      "title": "Profile Memory",
      +      "type": "boolean"
      +    },
      +    "record_shapes": {
      +      "default": true,
      +      "title": "Record Shapes",
      +      "type": "boolean"
      +    },
      +    "schedule": {
      +      "$ref": "#/$defs/TorchProfilerSchedule"
      +    },
      +    "with_flops": {
      +      "default": false,
      +      "title": "With Flops",
      +      "type": "boolean"
      +    },
      +    "with_modules": {
      +      "default": false,
      +      "title": "With Modules",
      +      "type": "boolean"
      +    },
      +    "with_stack": {
      +      "default": true,
      +      "title": "With Stack",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "schedule"
      +  ],
      +  "title": "SdkTorchProfilerOptions",
      +  "type": "object"
      +}
    • removedInput schema / $defs / TorchProfilerCaptureOptions / additionalProperties
      Removed value: -false
    • addedInput schema / $defs / TorchProfilerCaptureOptions / oneOf
      Added value: +[
      +  {
      +    "$ref": "#/$defs/WholeEntrypointTorchProfilerOptions"
      +  },
      +  {
      +    "$ref": "#/$defs/SdkTorchProfilerOptions"
      +  }
      +]
    • removedInput schema / $defs / TorchProfilerCaptureOptions / properties
      Removed value: -{
      -  "activities": {
      -    "default": [
      -      "cpu",
      -      "cuda_if_available"
      -    ],
      -    "items": {
      -      "enum": [
      -        "cpu",
      -        "cuda",
      -        "cuda_if_available"
      -      ],
      -      "type": "string"
      -    },
      -    "title": "Activities",
      -    "type": "array"
      -  },
      -  "mode": {
      -    "default": "whole_entrypoint",
      -    "enum": [
      -      "whole_entrypoint",
      -      "sdk"
      -    ],
      -    "title": "Mode",
      -    "type": "string"
      -  },
      -  "profile_memory": {
      -    "default": true,
      -    "title": "Profile Memory",
      -    "type": "boolean"
      -  },
      -  "record_shapes": {
      -    "default": true,
      -    "title": "Record Shapes",
      -    "type": "boolean"
      -  },
      -  "schedule": {
      -    "anyOf": [
      -      {
      -        "$ref": "#/$defs/TorchProfilerSchedule"
      -      },
      -      {
      -        "type": "null"
      -      }
      -    ],
      -    "default": null
      -  },
      -  "with_flops": {
      -    "default": false,
      -    "title": "With Flops",
      -    "type": "boolean"
      -  },
      -  "with_modules": {
      -    "default": false,
      -    "title": "With Modules",
      -    "type": "boolean"
      -  },
      -  "with_stack": {
      -    "default": true,
      -    "title": "With Stack",
      -    "type": "boolean"
      -  }
      -}
    • removedInput schema / $defs / TorchProfilerCaptureOptions / title
      Removed value: -"TorchProfilerCaptureOptions"
    • removedInput schema / $defs / TorchProfilerCaptureOptions / type
      Removed value: -"object"
    • addedInput schema / $defs / WholeEntrypointTorchProfilerOptions
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "activities": {
      +      "default": [
      +        "cpu",
      +        "cuda_if_available"
      +      ],
      +      "items": {
      +        "enum": [
      +          "cpu",
      +          "cuda",
      +          "cuda_if_available"
      +        ],
      +        "type": "string"
      +      },
      +      "title": "Activities",
      +      "type": "array"
      +    },
      +    "mode": {
      +      "const": "whole_entrypoint",
      +      "default": "whole_entrypoint",
      +      "title": "Mode",
      +      "type": "string"
      +    },
      +    "profile_memory": {
      +      "default": true,
      +      "title": "Profile Memory",
      +      "type": "boolean"
      +    },
      +    "record_shapes": {
      +      "default": true,
      +      "title": "Record Shapes",
      +      "type": "boolean"
      +    },
      +    "schedule": {
      +      "const": null,
      +      "default": null,
      +      "title": "Schedule",
      +      "type": "null"
      +    },
      +    "with_flops": {
      +      "default": false,
      +      "title": "With Flops",
      +      "type": "boolean"
      +    },
      +    "with_modules": {
      +      "default": false,
      +      "title": "With Modules",
      +      "type": "boolean"
      +    },
      +    "with_stack": {
      +      "default": true,
      +      "title": "With Stack",
      +      "type": "boolean"
      +    }
      +  },
      +  "title": "WholeEntrypointTorchProfilerOptions",
      +  "type": "object"
      +}
    • removedInput schema / additionalProperties
      Removed value: -false
    • addedInput schema / properties / compute_sanitizer_options
      Added value: +{
      +  "anyOf": [
      +    {
      +      "$ref": "#/$defs/ComputeSanitizerCaptureOptions"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null
      +}
    • addedInput schema / properties / parameters / maxProperties
      Added value: +128
    • changedOutput schema / $defs / ArtifactKind / enum
      Previous value: -[
      -  "execution_trace",
      -  "otlp_trace",
      -  "python_startup",
      -  "test_execution",
      -  "sample_profile",
      -  "memory_profile",
      -  "benchmark_samples",
      -  "execution_coverage",
      -  "semantic_observations",
      -  "process_output",
      -  "validation_output",
      -  "core_dump",
      -  "sanitizer_report",
      -  "source_snapshot",
      -  "collector_metadata",
      -  "analysis_result",
      -  "process_tree_snapshot",
      -  "experiment_configuration"
      -]New value: +[
      +  "execution_trace",
      +  "otlp_trace",
      +  "python_startup",
      +  "test_execution",
      +  "sample_profile",
      +  "memory_profile",
      +  "benchmark_samples",
      +  "execution_coverage",
      +  "semantic_observations",
      +  "process_output",
      +  "validation_output",
      +  "core_dump",
      +  "sanitizer_report",
      +  "source_snapshot",
      +  "collector_metadata",
      +  "analysis_result",
      +  "process_tree_snapshot",
      +  "experiment_configuration",
      +  "inference_request_trace",
      +  "inference_result",
      +  "kernel_build",
      +  "kernel_profile"
      +]
    • addedOutput schema / $defs / CommandSpec / properties / argv / items / pattern
      Added value: +"^[^\\x00]*$"
    • addedOutput schema / $defs / CommandSpec / properties / argv / minItems
      Added value: +1
    • addedOutput schema / $defs / ConfigureInferenceRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "configure_inference",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "enum": [
      +        "configure_inference_server",
      +        "list_inference_configurations"
      +      ],
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "ConfigureInferenceRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / ConfigureWorkloadRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "context": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ConfigureWorkloadRecoveryContext"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "kind": {
      +      "const": "configure_workload",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "configure_workload",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "ConfigureWorkloadRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / DiscoverArtifactsRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "discover_artifacts",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "list_artifacts",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "DiscoverArtifactsRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / DiscoverRunsRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "discover_runs",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "list_runs",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "DiscoverRunsRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / DiscoverWorkflowsRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "discover_workflows",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "enum": [
      +        "list_declared_workflows",
      +        "get_declared_workflow"
      +      ],
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "DiscoverWorkflowsRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / ErrorCode
      Added value: +{
      +  "enum": [
      +    "INVALID_ARGUMENTS",
      +    "WORKSPACE_NOT_FOUND",
      +    "WORKSPACE_INVALID",
      +    "RUN_NOT_FOUND",
      +    "CAPABILITY_UNAVAILABLE",
      +    "INVALID_CAPTURE_PLAN",
      +    "EXECUTION_REFUSED",
      +    "PROCESS_FAILED",
      +    "PROCESS_TIMEOUT",
      +    "PROCESS_CANCELLED",
      +    "ARTIFACT_TOO_LARGE",
      +    "ARTIFACT_INTEGRITY_FAILED",
      +    "ARTIFACT_PARSE_FAILED",
      +    "EVIDENCE_SCHEMA_MISMATCH",
      +    "COMPARISON_INVALID",
      +    "QUERY_BUDGET_EXCEEDED",
      +    "STORAGE_QUOTA_EXCEEDED",
      +    "WRITE_LOCK_TIMEOUT",
      +    "SENSITIVE_ARTIFACT_REFUSED",
      +    "REVISION_CONFLICT",
      +    "STALE_CURSOR",
      +    "INTERNAL_ERROR"
      +  ],
      +  "title": "ErrorCode",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / ErrorDetail / properties / code / $ref
      Added value: +"#/$defs/ErrorCode"
    • removedOutput schema / $defs / ErrorDetail / properties / code / title
      Removed value: -"Code"
    • removedOutput schema / $defs / ErrorDetail / properties / code / type
      Removed value: -"string"
    • addedOutput schema / $defs / ExtractPerfettoRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "context": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ExtractPerfettoRecoveryContext"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "kind": {
      +      "const": "extract_perfetto",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "extract_perfetto",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": true,
      +      "default": true,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "ExtractPerfettoRecovery",
      +  "type": "object"
      +}
    • removedOutput schema / $defs / FailurePayload / properties / ok / default
      Removed value: -false
    • removedOutput schema / $defs / FailurePayload / properties / result / default
      Removed value: -null
    • addedOutput schema / $defs / FailurePayload / properties / schema_version / const
      Added value: +1
    • removedOutput schema / $defs / FailurePayload / properties / schema_version / default
      Removed value: -1
    • changedOutput schema / $defs / FailurePayload / required
      Previous value: -[
      -  "error"
      -]New value: +[
      +  "schema_version",
      +  "ok",
      +  "result",
      +  "error"
      +]
    • addedOutput schema / $defs / ImportArtifactRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "import_artifact",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "import_artifact",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "ImportArtifactRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / InitializeWorkspaceRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "initialize_workspace",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "initialize_workspace",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "InitializeWorkspaceRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / InspectCapabilitiesRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "inspect_capabilities",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "list_capabilities",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "InspectCapabilitiesRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / InspectWorkloadConfigurationRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "inspect_workload_configuration",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "workload_configuration_status",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "InspectWorkloadConfigurationRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / ManualRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "context": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/ManualConfigurationRecoveryContext"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null
      +    },
      +    "kind": {
      +      "const": "manual",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "default": null,
      +      "title": "Next Tool",
      +      "type": "null"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind"
      +  ],
      +  "title": "ManualRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / PrepareAdapterRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "prepare_adapter",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "prepare_adapter",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": true,
      +      "default": true,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "PrepareAdapterRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / PrepareWorkloadDependenciesRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "prepare_workload_dependencies",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "prepare_workload_dependencies",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": true,
      +      "default": true,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "PrepareWorkloadDependenciesRecovery",
      +  "type": "object"
      +}
    • removedOutput schema / $defs / RecoveryAction / additionalProperties
      Removed value: -false
    • addedOutput schema / $defs / RecoveryAction / discriminator
      Added value: +{
      +  "mapping": {
      +    "configure_inference": "#/$defs/ConfigureInferenceRecovery",
      +    "configure_workload": "#/$defs/ConfigureWorkloadRecovery",
      +    "discover_artifacts": "#/$defs/DiscoverArtifactsRecovery",
      +    "discover_runs": "#/$defs/DiscoverRunsRecovery",
      +    "discover_workflows": "#/$defs/DiscoverWorkflowsRecovery",
      +    "extract_perfetto": "#/$defs/ExtractPerfettoRecovery",
      +    "import_artifact": "#/$defs/ImportArtifactRecovery",
      +    "initialize_workspace": "#/$defs/InitializeWorkspaceRecovery",
      +    "inspect_capabilities": "#/$defs/InspectCapabilitiesRecovery",
      +    "inspect_workload_configuration": "#/$defs/InspectWorkloadConfigurationRecovery",
      +    "manual": "#/$defs/ManualRecovery",
      +    "prepare_adapter": "#/$defs/PrepareAdapterRecovery",
      +    "prepare_workload_dependencies": "#/$defs/PrepareWorkloadDependenciesRecovery",
      +    "repeat_same_call": "#/$defs/RepeatSameCallRecovery",
      +    "replan_capture": "#/$defs/ReplanCaptureRecovery",
      +    "replan_inference": "#/$defs/ReplanInferenceRecovery",
      +    "start_capability_setup": "#/$defs/StartCapabilitySetupRecovery",
      +    "wait_then_repeat": "#/$defs/WaitThenRepeatRecovery"
      +  },
      +  "propertyName": "kind"
      +}
    • addedOutput schema / $defs / RecoveryAction / oneOf
      Added value: +[
      +  {
      +    "$ref": "#/$defs/RepeatSameCallRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/WaitThenRepeatRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/ReplanCaptureRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/InitializeWorkspaceRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/ConfigureWorkloadRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/InspectWorkloadConfigurationRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/StartCapabilitySetupRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/PrepareAdapterRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/PrepareWorkloadDependenciesRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/InspectCapabilitiesRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/DiscoverWorkflowsRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/DiscoverRunsRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/DiscoverArtifactsRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/ImportArtifactRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/ExtractPerfettoRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/ConfigureInferenceRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/ReplanInferenceRecovery"
      +  },
      +  {
      +    "$ref": "#/$defs/ManualRecovery"
      +  }
      +]
    • removedOutput schema / $defs / RecoveryAction / properties
      Removed value: -{
      -  "context": {
      -    "anyOf": [
      -      {
      -        "$ref": "#/$defs/RecoveryContext"
      -      },
      -      {
      -        "type": "null"
      -      }
      -    ],
      -    "default": null
      -  },
      -  "kind": {
      -    "enum": [
      -      "repeat_same_call",
      -      "wait_then_repeat",
      -      "replan_capture",
      -      "initialize_workspace",
      -      "configure_workload",
      -      "inspect_workload_configuration",
      -      "start_capability_setup",
      -      "prepare_adapter",
      -      "prepare_workload_dependencies",
      -      "inspect_capabilities",
      -      "discover_workflows",
      -      "discover_runs",
      -      "discover_artifacts",
      -      "import_artifact",
      -      "extract_perfetto",
      -      "manual"
      -    ],
      -    "title": "Kind",
      -    "type": "string"
      -  },
      -  "next_tool": {
      -    "anyOf": [
      -      {
      -        "type": "string"
      -      },
      -      {
      -        "type": "null"
      -      }
      -    ],
      -    "default": null,
      -    "title": "Next Tool"
      -  },
      -  "retry_after_ms": {
      -    "anyOf": [
      -      {
      -        "minimum": 0,
      -        "type": "integer"
      -      },
      -      {
      -        "type": "null"
      -      }
      -    ],
      -    "default": null,
      -    "title": "Retry After Ms"
      -  },
      -  "safe_to_repeat_same_call": {
      -    "title": "Safe To Repeat Same Call",
      -    "type": "boolean"
      -  }
      -}
    • removedOutput schema / $defs / RecoveryAction / required
      Removed value: -[
      -  "kind",
      -  "safe_to_repeat_same_call"
      -]
    • removedOutput schema / $defs / RecoveryAction / title
      Removed value: -"RecoveryAction"
    • removedOutput schema / $defs / RecoveryAction / type
      Removed value: -"object"
    • removedOutput schema / $defs / RecoveryContext
      Removed value: -{
      -  "discriminator": {
      -    "mapping": {
      -      "configure_workload": "#/$defs/ConfigureWorkloadRecoveryContext",
      -      "extract_perfetto": "#/$defs/ExtractPerfettoRecoveryContext",
      -      "manual_configuration": "#/$defs/ManualConfigurationRecoveryContext"
      -    },
      -    "propertyName": "kind"
      -  },
      -  "oneOf": [
      -    {
      -      "$ref": "#/$defs/ConfigureWorkloadRecoveryContext"
      -    },
      -    {
      -      "$ref": "#/$defs/ManualConfigurationRecoveryContext"
      -    },
      -    {
      -      "$ref": "#/$defs/ExtractPerfettoRecoveryContext"
      -    }
      -  ]
      -}
    • addedOutput schema / $defs / RepeatSameCallRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "repeat_same_call",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "default": null,
      +      "title": "Next Tool",
      +      "type": "null"
      +    },
      +    "retry_after_ms": {
      +      "minimum": 0,
      +      "title": "Retry After Ms",
      +      "type": "integer"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": true,
      +      "default": true,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "retry_after_ms"
      +  ],
      +  "title": "RepeatSameCallRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / ReplanCaptureRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "replan_capture",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "plan_capture",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "ReplanCaptureRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / ReplanInferenceRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "replan_inference",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "plan_inference_scenario",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": false,
      +      "default": false,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "ReplanInferenceRecovery",
      +  "type": "object"
      +}
    • addedOutput schema / $defs / StartCapabilitySetupRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "start_capability_setup",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "const": "start_capability_setup",
      +      "title": "Next Tool",
      +      "type": "string"
      +    },
      +    "retry_after_ms": {
      +      "default": null,
      +      "title": "Retry After Ms",
      +      "type": "null"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": true,
      +      "default": true,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "next_tool"
      +  ],
      +  "title": "StartCapabilitySetupRecovery",
      +  "type": "object"
      +}
    • removedOutput schema / $defs / SuccessPayload_CapturePlan_ / properties / error / default
      Removed value: -null
    • removedOutput schema / $defs / SuccessPayload_CapturePlan_ / properties / ok / default
      Removed value: -true
    • addedOutput schema / $defs / SuccessPayload_CapturePlan_ / properties / schema_version / const
      Added value: +1
    • removedOutput schema / $defs / SuccessPayload_CapturePlan_ / properties / schema_version / default
      Removed value: -1
    • changedOutput schema / $defs / SuccessPayload_CapturePlan_ / required
      Previous value: -[
      -  "result"
      -]New value: +[
      +  "schema_version",
      +  "ok",
      +  "result",
      +  "error"
      +]
    • addedOutput schema / $defs / WaitThenRepeatRecovery
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "kind": {
      +      "const": "wait_then_repeat",
      +      "title": "Kind",
      +      "type": "string"
      +    },
      +    "next_tool": {
      +      "default": null,
      +      "title": "Next Tool",
      +      "type": "null"
      +    },
      +    "retry_after_ms": {
      +      "minimum": 0,
      +      "title": "Retry After Ms",
      +      "type": "integer"
      +    },
      +    "safe_to_repeat_same_call": {
      +      "const": true,
      +      "default": true,
      +      "title": "Safe To Repeat Same Call",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "kind",
      +    "retry_after_ms"
      +  ],
      +  "title": "WaitThenRepeatRecovery",
      +  "type": "object"
      +}
  3. Changed11 schema fields changedv0.1.11
    • changedOutput schema / $defs / ArtifactKind / enum
      Previous value: -[
      -  "execution_trace",
      -  "python_startup",
      -  "test_execution",
      -  "sample_profile",
      -  "memory_profile",
      -  "benchmark_samples",
      -  "execution_coverage",
      -  "semantic_observations",
      -  "process_output",
      -  "validation_output",
      -  "core_dump",
      -  "sanitizer_report",
      -  "source_snapshot",
      -  "collector_metadata",
      -  "analysis_result"
      -]New value: +[
      +  "execution_trace",
      +  "otlp_trace",
      +  "python_startup",
      +  "test_execution",
      +  "sample_profile",
      +  "memory_profile",
      +  "benchmark_samples",
      +  "execution_coverage",
      +  "semantic_observations",
      +  "process_output",
      +  "validation_output",
      +  "core_dump",
      +  "sanitizer_report",
      +  "source_snapshot",
      +  "collector_metadata",
      +  "analysis_result",
      +  "process_tree_snapshot",
      +  "experiment_configuration"
      +]
    • changedOutput schema / $defs / CapabilitySetup / properties / extra / enum
      Previous value: -[
      -  "cpu",
      -  "execution",
      -  "memory",
      -  "test",
      -  "trace",
      -  "torch"
      -]New value: +[
      +  "cpu",
      +  "execution",
      +  "memory",
      +  "test",
      +  "trace",
      +  "torch",
      +  "toxiproxy"
      +]
    • changedOutput schema / $defs / CapabilitySetup / properties / method / const
      Previous value: -"prepare_capabilities"New value: +"start_capability_setup"
    • changedOutput schema / $defs / CapabilitySetup / properties / next_tool / enum
      Previous value: -[
      -  "prepare_capabilities",
      -  "list_capabilities"
      -]New value: +[
      +  "start_capability_setup",
      +  "list_capabilities"
      +]
    • addedOutput schema / $defs / CapabilitySetup / properties / requirement / anyOf
      Added value: +[
      +  {
      +    "type": "string"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • addedOutput schema / $defs / CapabilitySetup / properties / requirement / default
      Added value: +null
    • removedOutput schema / $defs / CapabilitySetup / properties / requirement / type
      Removed value: -"string"
    • changedOutput schema / $defs / CapabilitySetup / required
      Previous value: -[
      -  "method",
      -  "extra",
      -  "requirement",
      -  "next_tool"
      -]New value: +[
      +  "method",
      +  "extra",
      +  "next_tool"
      +]
    • addedOutput schema / $defs / CapturePlan / properties / dynamic_parameters
      Added value: +{
      +  "default": [],
      +  "items": {
      +    "maxLength": 200,
      +    "minLength": 1,
      +    "type": "string"
      +  },
      +  "title": "Dynamic Parameters",
      +  "type": "array"
      +}
    • changedOutput schema / $defs / RecoveryAction / properties / kind / enum
      Previous value: -[
      -  "repeat_same_call",
      -  "wait_then_repeat",
      -  "replan_capture",
      -  "initialize_workspace",
      -  "configure_workload",
      -  "inspect_workload_configuration",
      -  "prepare_capabilities",
      -  "prepare_adapter",
      -  "prepare_workload_dependencies",
      -  "inspect_capabilities",
      -  "discover_workflows",
      -  "discover_runs",
      -  "discover_artifacts",
      -  "import_artifact",
      -  "extract_perfetto",
      -  "manual"
      -]New value: +[
      +  "repeat_same_call",
      +  "wait_then_repeat",
      +  "replan_capture",
      +  "initialize_workspace",
      +  "configure_workload",
      +  "inspect_workload_configuration",
      +  "start_capability_setup",
      +  "prepare_adapter",
      +  "prepare_workload_dependencies",
      +  "inspect_capabilities",
      +  "discover_workflows",
      +  "discover_runs",
      +  "discover_artifacts",
      +  "import_artifact",
      +  "extract_perfetto",
      +  "manual"
      +]
    • changedOutput schema / $defs / RequirementResult / properties / next_tool / anyOf
      Previous value: -[
      -  {
      -    "enum": [
      -      "prepare_adapter",
      -      "prepare_capabilities",
      -      "prepare_workload_dependencies",
      -      "list_capabilities",
      -      "plan_capture"
      -    ],
      -    "type": "string"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "enum": [
      +      "prepare_adapter",
      +      "start_capability_setup",
      +      "prepare_workload_dependencies",
      +      "list_capabilities",
      +      "plan_capture"
      +    ],
      +    "type": "string"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
  4. First observedv0.1.9

TDQS

B3.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the readOnly/idempotent annotations, the description discloses that no measurement is run, that auto mode records the absence of enforced descendant containment, and that an adapter may still execute a bounded compatibility probe such as NVBench --version. The phrase 'runs the declared workload directly' is slightly ambiguous if read literally, but it is qualified by 'without running it' and 'never runs a measurement,' so there is no annotation contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded: the core action appears in the first sentence, followed by the most important mode distinctions and the probe caveat. There is little wasted wording, though the indented line breaks add visual noise without structural value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a complex 10-parameter tool with nested option objects, the description gives useful mode-selection context and the no-measurement boundary but leaves important workflow context implicit: how a 'current capture' is obtained, when to supply each *_options block, and how the bound plan is meant to be consumed afterward. The presence of an output schema reduces the need to describe return values, but the surrounding lifecycle is still under-explained.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is only 30%, and the description compensates only for capture_mode by explaining auto, managed, and trusted_local. It does not clarify adapter, workload_name, parameters, preflight_mode, external_context, or the profiler-specific *_options objects beyond their terse schema labels, leaving most of a 10-parameter tool semantically underspecified.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific action and object: 'Bind one current capture without running it,' and reinforces the boundary with 'This tool never runs a measurement.' This clearly distinguishes planning/binding from execution-oriented siblings like execute_capture_plan or start_detached_capture. However, 'current capture' and 'bind' remain somewhat domain-specific and no sibling tool is named, so it stops short of full differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit conditional guidance for capture_mode sub-values: auto is the default, managed should only be used when project policy requires containment, and trusted_local requests direct local execution explicitly. It does not, however, say when plan_capture itself should be chosen over execution or other capture-planning siblings, and the prerequisite of a 'current capture' is only implied.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/morluto/flameox'

If you have feedback or need assistance with the MCP directory API, please join our Discord server