Skip to main content
Glama

plan_reduction

Read-onlyIdempotent

Reduce execution plans by binding immutable inputs and approved reducer/predicate identities before running, ensuring only authorized transformations with configurable limits.

Instructions

Bind immutable input and approved reducer/predicate identities before execution.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
requestYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

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

  1. Changed81 schema fields changedv0.1.15
    • removedInput schema / $defs / BinaryChunkReductionRequest
      Removed value: -{
      -  "additionalProperties": false,
      -  "description": "A binary reduction whose chunk size is part of its executable contract.",
      -  "properties": {
      -    "chunk_size": {
      -      "maximum": 16777216,
      -      "minimum": 1,
      -      "title": "Chunk Size",
      -      "type": "integer"
      -    },
      -    "engine": {
      -      "const": "native_ddmin",
      -      "default": "native_ddmin",
      -      "title": "Engine",
      -      "type": "string"
      -    },
      -    "expected_determinism": {
      -      "default": "deterministic",
      -      "enum": [
      -        "deterministic",
      -        "repeated"
      -      ],
      -      "title": "Expected Determinism",
      -      "type": "string"
      -    },
      -    "limits": {
      -      "$ref": "#/$defs/ReductionLimits"
      -    },
      -    "original_artifact_id": {
      -      "title": "Original Artifact Id",
      -      "type": "string"
      -    },
      -    "partitioner": {
      -      "const": "binary_chunks",
      -      "title": "Partitioner",
      -      "type": "string"
      -    },
      -    "predicate_parameters": {
      -      "additionalProperties": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "integer"
      -          },
      -          {
      -            "type": "number"
      -          },
      -          {
      -            "type": "boolean"
      -          }
      -        ]
      -      },
      -      "maxProperties": 128,
      -      "title": "Predicate Parameters",
      -      "type": "object"
      -    },
      -    "predicate_workload": {
      -      "title": "Predicate Workload",
      -      "type": "string"
      -    }
      -  },
      -  "required": [
      -    "original_artifact_id",
      -    "predicate_workload",
      -    "partitioner",
      -    "chunk_size"
      -  ],
      -  "title": "BinaryChunkReductionRequest",
      -  "type": "object"
      -}
    • addedInput schema / $defs / PlanReductionRequest / additionalProperties
      Added value: +false
    • removedInput schema / $defs / PlanReductionRequest / discriminator
      Removed value: -{
      -  "mapping": {
      -    "binary_chunks": "#/$defs/BinaryChunkReductionRequest",
      -    "chrome_trace_events": "#/$defs/StructuredReductionRequest",
      -    "json_top_level": "#/$defs/StructuredReductionRequest",
      -    "jsonl_records": "#/$defs/StructuredReductionRequest",
      -    "otlp_spans": "#/$defs/StructuredReductionRequest",
      -    "text_lines": "#/$defs/StructuredReductionRequest"
      -  },
      -  "propertyName": "partitioner"
      -}
    • removedInput schema / $defs / PlanReductionRequest / oneOf
      Removed value: -[
      -  {
      -    "$ref": "#/$defs/BinaryChunkReductionRequest"
      -  },
      -  {
      -    "$ref": "#/$defs/StructuredReductionRequest"
      -  }
      -]
    • addedInput schema / $defs / PlanReductionRequest / properties
      Added value: +{
      +  "limits": {
      +    "$ref": "#/$defs/ReductionLimits"
      +  },
      +  "predicate_parameters": {
      +    "additionalProperties": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "integer"
      +        },
      +        {
      +          "type": "number"
      +        },
      +        {
      +          "type": "boolean"
      +        }
      +      ]
      +    },
      +    "maxProperties": 128,
      +    "title": "Predicate Parameters",
      +    "type": "object"
      +  },
      +  "predicate_workload": {
      +    "title": "Predicate Workload",
      +    "type": "string"
      +  },
      +  "source_registration_id": {
      +    "title": "Source Registration Id",
      +    "type": "string"
      +  },
      +  "source_run_id": {
      +    "title": "Source Run Id",
      +    "type": "string"
      +  }
      +}
    • addedInput schema / $defs / PlanReductionRequest / required
      Added value: +[
      +  "source_run_id",
      +  "source_registration_id",
      +  "predicate_workload"
      +]
    • addedInput schema / $defs / PlanReductionRequest / title
      Added value: +"PlanReductionRequest"
    • addedInput schema / $defs / PlanReductionRequest / type
      Added value: +"object"
    • addedInput schema / $defs / ReductionLimits / properties / max_retained_candidate_bytes
      Added value: +{
      +  "anyOf": [
      +    {
      +      "exclusiveMinimum": 0,
      +      "type": "integer"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Max Retained Candidate Bytes"
      +}
    • addedInput schema / $defs / ReductionLimits / properties / max_staging_bytes
      Added value: +{
      +  "anyOf": [
      +    {
      +      "exclusiveMinimum": 0,
      +      "type": "integer"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Max Staging Bytes"
      +}
    • addedInput schema / $defs / ReductionLimits / properties / max_staging_files
      Added value: +{
      +  "default": 2048,
      +  "maximum": 100000,
      +  "minimum": 8,
      +  "title": "Max Staging Files",
      +  "type": "integer"
      +}
    • addedInput schema / $defs / ReductionLimits / properties / parallelism
      Added value: +{
      +  "const": 1,
      +  "default": 1,
      +  "title": "Parallelism",
      +  "type": "integer"
      +}
    • removedInput schema / $defs / StructuredReductionRequest
      Removed value: -{
      -  "additionalProperties": false,
      -  "description": "A structured reduction, which never accepts binary chunking configuration.",
      -  "properties": {
      -    "engine": {
      -      "const": "native_ddmin",
      -      "default": "native_ddmin",
      -      "title": "Engine",
      -      "type": "string"
      -    },
      -    "expected_determinism": {
      -      "default": "deterministic",
      -      "enum": [
      -        "deterministic",
      -        "repeated"
      -      ],
      -      "title": "Expected Determinism",
      -      "type": "string"
      -    },
      -    "limits": {
      -      "$ref": "#/$defs/ReductionLimits"
      -    },
      -    "original_artifact_id": {
      -      "title": "Original Artifact Id",
      -      "type": "string"
      -    },
      -    "partitioner": {
      -      "enum": [
      -        "text_lines",
      -        "json_top_level",
      -        "jsonl_records",
      -        "otlp_spans",
      -        "chrome_trace_events"
      -      ],
      -      "title": "Partitioner",
      -      "type": "string"
      -    },
      -    "predicate_parameters": {
      -      "additionalProperties": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "integer"
      -          },
      -          {
      -            "type": "number"
      -          },
      -          {
      -            "type": "boolean"
      -          }
      -        ]
      -      },
      -      "maxProperties": 128,
      -      "title": "Predicate Parameters",
      -      "type": "object"
      -    },
      -    "predicate_workload": {
      -      "title": "Predicate Workload",
      -      "type": "string"
      -    }
      -  },
      -  "required": [
      -    "original_artifact_id",
      -    "predicate_workload",
      -    "partitioner"
      -  ],
      -  "title": "StructuredReductionRequest",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / BinaryChunkReductionPlan
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "chunk_size": {
      -      "maximum": 16777216,
      -      "minimum": 1,
      -      "title": "Chunk Size",
      -      "type": "integer"
      -    },
      -    "created_at": {
      -      "format": "date-time",
      -      "title": "Created At",
      -      "type": "string"
      -    },
      -    "engine": {
      -      "const": "native_ddmin",
      -      "default": "native_ddmin",
      -      "title": "Engine",
      -      "type": "string"
      -    },
      -    "expected_determinism": {
      -      "enum": [
      -        "deterministic",
      -        "repeated"
      -      ],
      -      "title": "Expected Determinism",
      -      "type": "string"
      -    },
      -    "limits": {
      -      "$ref": "#/$defs/ReductionLimits"
      -    },
      -    "original_artifact_id": {
      -      "title": "Original Artifact Id",
      -      "type": "string"
      -    },
      -    "partitioner": {
      -      "const": "binary_chunks",
      -      "title": "Partitioner",
      -      "type": "string"
      -    },
      -    "plan_id": {
      -      "title": "Plan Id",
      -      "type": "string"
      -    },
      -    "predicate_command": {
      -      "$ref": "#/$defs/CommandSpec"
      -    },
      -    "predicate_definition_id": {
      -      "title": "Predicate Definition Id",
      -      "type": "string"
      -    },
      -    "predicate_executable_digest": {
      -      "title": "Predicate Executable Digest",
      -      "type": "string"
      -    },
      -    "predicate_instance_id": {
      -      "title": "Predicate Instance Id",
      -      "type": "string"
      -    },
      -    "predicate_parameters": {
      -      "additionalProperties": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "integer"
      -          },
      -          {
      -            "type": "number"
      -          },
      -          {
      -            "type": "boolean"
      -          }
      -        ]
      -      },
      -      "title": "Predicate Parameters",
      -      "type": "object"
      -    },
      -    "predicate_workload": {
      -      "title": "Predicate Workload",
      -      "type": "string"
      -    },
      -    "request_digest": {
      -      "title": "Request Digest",
      -      "type": "string"
      -    },
      -    "schema_version": {
      -      "const": 2,
      -      "default": 2,
      -      "title": "Schema Version",
      -      "type": "integer"
      -    },
      -    "workspace_id": {
      -      "title": "Workspace Id",
      -      "type": "string"
      -    }
      -  },
      -  "required": [
      -    "plan_id",
      -    "request_digest",
      -    "workspace_id",
      -    "original_artifact_id",
      -    "predicate_workload",
      -    "predicate_definition_id",
      -    "predicate_instance_id",
      -    "predicate_command",
      -    "predicate_parameters",
      -    "predicate_executable_digest",
      -    "limits",
      -    "expected_determinism",
      -    "partitioner",
      -    "chunk_size"
      -  ],
      -  "title": "BinaryChunkReductionPlan",
      -  "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"
      -}
    • 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"
      +}
    • 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"
      -}
    • 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"
      -}
    • 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"
      -}
    • 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"
      +}
    • addedOutput schema / $defs / ReductionExecutionLimits
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "max_attempts": {
      +      "default": 1000,
      +      "maximum": 100000,
      +      "minimum": 1,
      +      "title": "Max Attempts",
      +      "type": "integer"
      +    },
      +    "max_retained_candidate_bytes": {
      +      "exclusiveMinimum": 0,
      +      "title": "Max Retained Candidate Bytes",
      +      "type": "integer"
      +    },
      +    "max_staging_bytes": {
      +      "exclusiveMinimum": 0,
      +      "title": "Max Staging Bytes",
      +      "type": "integer"
      +    },
      +    "max_staging_files": {
      +      "default": 2048,
      +      "maximum": 100000,
      +      "minimum": 8,
      +      "title": "Max Staging Files",
      +      "type": "integer"
      +    },
      +    "parallelism": {
      +      "const": 1,
      +      "default": 1,
      +      "title": "Parallelism",
      +      "type": "integer"
      +    },
      +    "predicate_repetitions": {
      +      "default": 1,
      +      "maximum": 20,
      +      "minimum": 1,
      +      "title": "Predicate Repetitions",
      +      "type": "integer"
      +    },
      +    "predicate_timeout_seconds": {
      +      "default": 30,
      +      "exclusiveMinimum": 0,
      +      "maximum": 3600,
      +      "title": "Predicate Timeout Seconds",
      +      "type": "number"
      +    },
      +    "wall_time_seconds": {
      +      "default": 900,
      +      "exclusiveMinimum": 0,
      +      "maximum": 86400,
      +      "title": "Wall Time Seconds",
      +      "type": "number"
      +    }
      +  },
      +  "required": [
      +    "max_staging_bytes",
      +    "max_retained_candidate_bytes"
      +  ],
      +  "title": "ReductionExecutionLimits",
      +  "type": "object"
      +}
    • removedOutput schema / $defs / ReductionLimits
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "max_attempts": {
      -      "default": 1000,
      -      "maximum": 100000,
      -      "minimum": 1,
      -      "title": "Max Attempts",
      -      "type": "integer"
      -    },
      -    "predicate_repetitions": {
      -      "default": 1,
      -      "maximum": 20,
      -      "minimum": 1,
      -      "title": "Predicate Repetitions",
      -      "type": "integer"
      -    },
      -    "predicate_timeout_seconds": {
      -      "default": 30,
      -      "exclusiveMinimum": 0,
      -      "maximum": 3600,
      -      "title": "Predicate Timeout Seconds",
      -      "type": "number"
      -    },
      -    "wall_time_seconds": {
      -      "default": 900,
      -      "exclusiveMinimum": 0,
      -      "maximum": 86400,
      -      "title": "Wall Time Seconds",
      -      "type": "number"
      -    }
      -  },
      -  "title": "ReductionLimits",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / ReductionPlan
      Removed value: -{
      -  "discriminator": {
      -    "mapping": {
      -      "binary_chunks": "#/$defs/BinaryChunkReductionPlan",
      -      "chrome_trace_events": "#/$defs/StructuredReductionPlan",
      -      "json_top_level": "#/$defs/StructuredReductionPlan",
      -      "jsonl_records": "#/$defs/StructuredReductionPlan",
      -      "otlp_spans": "#/$defs/StructuredReductionPlan",
      -      "text_lines": "#/$defs/StructuredReductionPlan"
      -    },
      -    "propertyName": "partitioner"
      -  },
      -  "oneOf": [
      -    {
      -      "$ref": "#/$defs/BinaryChunkReductionPlan"
      -    },
      -    {
      -      "$ref": "#/$defs/StructuredReductionPlan"
      -    }
      -  ]
      -}
    • 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 / 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"
      +}
    • 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 / StructuredReductionPlan
      Removed value: -{
      -  "additionalProperties": false,
      -  "properties": {
      -    "chunk_size": {
      -      "const": null,
      -      "default": null,
      -      "title": "Chunk Size",
      -      "type": "null"
      -    },
      -    "created_at": {
      -      "format": "date-time",
      -      "title": "Created At",
      -      "type": "string"
      -    },
      -    "engine": {
      -      "const": "native_ddmin",
      -      "default": "native_ddmin",
      -      "title": "Engine",
      -      "type": "string"
      -    },
      -    "expected_determinism": {
      -      "enum": [
      -        "deterministic",
      -        "repeated"
      -      ],
      -      "title": "Expected Determinism",
      -      "type": "string"
      -    },
      -    "limits": {
      -      "$ref": "#/$defs/ReductionLimits"
      -    },
      -    "original_artifact_id": {
      -      "title": "Original Artifact Id",
      -      "type": "string"
      -    },
      -    "partitioner": {
      -      "enum": [
      -        "text_lines",
      -        "json_top_level",
      -        "jsonl_records",
      -        "otlp_spans",
      -        "chrome_trace_events"
      -      ],
      -      "title": "Partitioner",
      -      "type": "string"
      -    },
      -    "plan_id": {
      -      "title": "Plan Id",
      -      "type": "string"
      -    },
      -    "predicate_command": {
      -      "$ref": "#/$defs/CommandSpec"
      -    },
      -    "predicate_definition_id": {
      -      "title": "Predicate Definition Id",
      -      "type": "string"
      -    },
      -    "predicate_executable_digest": {
      -      "title": "Predicate Executable Digest",
      -      "type": "string"
      -    },
      -    "predicate_instance_id": {
      -      "title": "Predicate Instance Id",
      -      "type": "string"
      -    },
      -    "predicate_parameters": {
      -      "additionalProperties": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "integer"
      -          },
      -          {
      -            "type": "number"
      -          },
      -          {
      -            "type": "boolean"
      -          }
      -        ]
      -      },
      -      "title": "Predicate Parameters",
      -      "type": "object"
      -    },
      -    "predicate_workload": {
      -      "title": "Predicate Workload",
      -      "type": "string"
      -    },
      -    "request_digest": {
      -      "title": "Request Digest",
      -      "type": "string"
      -    },
      -    "schema_version": {
      -      "const": 2,
      -      "default": 2,
      -      "title": "Schema Version",
      -      "type": "integer"
      -    },
      -    "workspace_id": {
      -      "title": "Workspace Id",
      -      "type": "string"
      -    }
      -  },
      -  "required": [
      -    "plan_id",
      -    "request_digest",
      -    "workspace_id",
      -    "original_artifact_id",
      -    "predicate_workload",
      -    "predicate_definition_id",
      -    "predicate_instance_id",
      -    "predicate_command",
      -    "predicate_parameters",
      -    "predicate_executable_digest",
      -    "limits",
      -    "expected_determinism",
      -    "partitioner"
      -  ],
      -  "title": "StructuredReductionPlan",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / SuccessPayload_ReductionPlan_ / properties / result / $ref
      Removed value: -"#/$defs/ReductionPlan"
    • addedOutput schema / $defs / SuccessPayload_ReductionPlan_ / properties / result / additionalProperties
      Added value: +false
    • addedOutput schema / $defs / SuccessPayload_ReductionPlan_ / properties / result / properties
      Added value: +{
      +  "created_at": {
      +    "format": "date-time",
      +    "title": "Created At",
      +    "type": "string"
      +  },
      +  "engine": {
      +    "const": "shrinkray",
      +    "default": "shrinkray",
      +    "title": "Engine",
      +    "type": "string"
      +  },
      +  "limits": {
      +    "$ref": "#/$defs/ReductionExecutionLimits"
      +  },
      +  "original_artifact_id": {
      +    "title": "Original Artifact Id",
      +    "type": "string"
      +  },
      +  "plan_id": {
      +    "pattern": "^sha256:[0-9a-f]{64}$",
      +    "title": "Plan Id",
      +    "type": "string"
      +  },
      +  "predicate_bridge_binding": {
      +    "$ref": "#/$defs/ResolvedExecutable"
      +  },
      +  "predicate_bridge_digest": {
      +    "title": "Predicate Bridge Digest",
      +    "type": "string"
      +  },
      +  "predicate_command": {
      +    "$ref": "#/$defs/CommandSpec"
      +  },
      +  "predicate_definition_id": {
      +    "title": "Predicate Definition Id",
      +    "type": "string"
      +  },
      +  "predicate_executable_binding": {
      +    "$ref": "#/$defs/ResolvedExecutable"
      +  },
      +  "predicate_executable_digest": {
      +    "title": "Predicate Executable Digest",
      +    "type": "string"
      +  },
      +  "predicate_instance_id": {
      +    "title": "Predicate Instance Id",
      +    "type": "string"
      +  },
      +  "predicate_parameters": {
      +    "additionalProperties": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "integer"
      +        },
      +        {
      +          "type": "number"
      +        },
      +        {
      +          "type": "boolean"
      +        }
      +      ]
      +    },
      +    "title": "Predicate Parameters",
      +    "type": "object"
      +  },
      +  "predicate_workload": {
      +    "title": "Predicate Workload",
      +    "type": "string"
      +  },
      +  "provider_environment_id": {
      +    "title": "Provider Environment Id",
      +    "type": "string"
      +  },
      +  "provider_python_digest": {
      +    "title": "Provider Python Digest",
      +    "type": "string"
      +  },
      +  "shrinkray_executable_binding": {
      +    "$ref": "#/$defs/ResolvedExecutable"
      +  },
      +  "shrinkray_executable_digest": {
      +    "title": "Shrinkray Executable Digest",
      +    "type": "string"
      +  },
      +  "shrinkray_profile": {
      +    "const": "flameox.shrinkray.offline-v1",
      +    "default": "flameox.shrinkray.offline-v1",
      +    "title": "Shrinkray Profile",
      +    "type": "string"
      +  },
      +  "shrinkray_version": {
      +    "const": "26.7.8.0",
      +    "default": "26.7.8.0",
      +    "title": "Shrinkray Version",
      +    "type": "string"
      +  },
      +  "source_registration_id": {
      +    "title": "Source Registration Id",
      +    "type": "string"
      +  },
      +  "source_run_id": {
      +    "title": "Source Run Id",
      +    "type": "string"
      +  },
      +  "workspace_id": {
      +    "title": "Workspace Id",
      +    "type": "string"
      +  }
      +}
    • addedOutput schema / $defs / SuccessPayload_ReductionPlan_ / properties / result / required
      Added value: +[
      +  "plan_id",
      +  "workspace_id",
      +  "source_run_id",
      +  "source_registration_id",
      +  "original_artifact_id",
      +  "predicate_workload",
      +  "predicate_definition_id",
      +  "predicate_instance_id",
      +  "predicate_command",
      +  "predicate_executable_binding",
      +  "predicate_parameters",
      +  "predicate_executable_digest",
      +  "provider_environment_id",
      +  "provider_python_digest",
      +  "shrinkray_executable_binding",
      +  "shrinkray_executable_digest",
      +  "predicate_bridge_binding",
      +  "predicate_bridge_digest",
      +  "limits"
      +]
    • addedOutput schema / $defs / SuccessPayload_ReductionPlan_ / properties / result / title
      Added value: +"ReductionPlan"
    • addedOutput schema / $defs / SuccessPayload_ReductionPlan_ / properties / result / type
      Added value: +"object"
    • removedOutput schema / $defs / SuccessPayload_ReductionPlan_ / properties / schema_version
      Removed value: -{
      -  "const": 1,
      -  "title": "Schema Version",
      -  "type": "integer"
      -}
    • changedOutput schema / $defs / SuccessPayload_ReductionPlan_ / required
      Previous value: -[
      -  "schema_version",
      -  "ok",
      -  "result",
      -  "error"
      -]New value: +[
      +  "ok",
      +  "result",
      +  "error"
      +]
    • 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"
      +}
    • 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"
      -}
  2. Changed61 schema fields changedv0.1.12
    • addedInput schema / $defs / BinaryChunkReductionRequest
      Added value: +{
      +  "additionalProperties": false,
      +  "description": "A binary reduction whose chunk size is part of its executable contract.",
      +  "properties": {
      +    "chunk_size": {
      +      "maximum": 16777216,
      +      "minimum": 1,
      +      "title": "Chunk Size",
      +      "type": "integer"
      +    },
      +    "engine": {
      +      "const": "native_ddmin",
      +      "default": "native_ddmin",
      +      "title": "Engine",
      +      "type": "string"
      +    },
      +    "expected_determinism": {
      +      "default": "deterministic",
      +      "enum": [
      +        "deterministic",
      +        "repeated"
      +      ],
      +      "title": "Expected Determinism",
      +      "type": "string"
      +    },
      +    "limits": {
      +      "$ref": "#/$defs/ReductionLimits"
      +    },
      +    "original_artifact_id": {
      +      "title": "Original Artifact Id",
      +      "type": "string"
      +    },
      +    "partitioner": {
      +      "const": "binary_chunks",
      +      "title": "Partitioner",
      +      "type": "string"
      +    },
      +    "predicate_parameters": {
      +      "additionalProperties": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "integer"
      +          },
      +          {
      +            "type": "number"
      +          },
      +          {
      +            "type": "boolean"
      +          }
      +        ]
      +      },
      +      "maxProperties": 128,
      +      "title": "Predicate Parameters",
      +      "type": "object"
      +    },
      +    "predicate_workload": {
      +      "title": "Predicate Workload",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "original_artifact_id",
      +    "predicate_workload",
      +    "partitioner",
      +    "chunk_size"
      +  ],
      +  "title": "BinaryChunkReductionRequest",
      +  "type": "object"
      +}
    • removedInput schema / $defs / PlanReductionRequest / additionalProperties
      Removed value: -false
    • addedInput schema / $defs / PlanReductionRequest / discriminator
      Added value: +{
      +  "mapping": {
      +    "binary_chunks": "#/$defs/BinaryChunkReductionRequest",
      +    "chrome_trace_events": "#/$defs/StructuredReductionRequest",
      +    "json_top_level": "#/$defs/StructuredReductionRequest",
      +    "jsonl_records": "#/$defs/StructuredReductionRequest",
      +    "otlp_spans": "#/$defs/StructuredReductionRequest",
      +    "text_lines": "#/$defs/StructuredReductionRequest"
      +  },
      +  "propertyName": "partitioner"
      +}
    • addedInput schema / $defs / PlanReductionRequest / oneOf
      Added value: +[
      +  {
      +    "$ref": "#/$defs/BinaryChunkReductionRequest"
      +  },
      +  {
      +    "$ref": "#/$defs/StructuredReductionRequest"
      +  }
      +]
    • removedInput schema / $defs / PlanReductionRequest / properties
      Removed value: -{
      -  "chunk_size": {
      -    "anyOf": [
      -      {
      -        "maximum": 16777216,
      -        "minimum": 1,
      -        "type": "integer"
      -      },
      -      {
      -        "type": "null"
      -      }
      -    ],
      -    "default": null,
      -    "title": "Chunk Size"
      -  },
      -  "engine": {
      -    "const": "native_ddmin",
      -    "default": "native_ddmin",
      -    "title": "Engine",
      -    "type": "string"
      -  },
      -  "expected_determinism": {
      -    "default": "deterministic",
      -    "enum": [
      -      "deterministic",
      -      "repeated"
      -    ],
      -    "title": "Expected Determinism",
      -    "type": "string"
      -  },
      -  "limits": {
      -    "$ref": "#/$defs/ReductionLimits"
      -  },
      -  "original_artifact_id": {
      -    "title": "Original Artifact Id",
      -    "type": "string"
      -  },
      -  "partitioner": {
      -    "enum": [
      -      "text_lines",
      -      "binary_chunks",
      -      "json_top_level",
      -      "jsonl_records",
      -      "otlp_spans",
      -      "chrome_trace_events"
      -    ],
      -    "title": "Partitioner",
      -    "type": "string"
      -  },
      -  "predicate_parameters": {
      -    "additionalProperties": {
      -      "anyOf": [
      -        {
      -          "type": "string"
      -        },
      -        {
      -          "type": "integer"
      -        },
      -        {
      -          "type": "number"
      -        },
      -        {
      -          "type": "boolean"
      -        }
      -      ]
      -    },
      -    "title": "Predicate Parameters",
      -    "type": "object"
      -  },
      -  "predicate_workload": {
      -    "title": "Predicate Workload",
      -    "type": "string"
      -  }
      -}
    • removedInput schema / $defs / PlanReductionRequest / required
      Removed value: -[
      -  "original_artifact_id",
      -  "partitioner",
      -  "predicate_workload"
      -]
    • removedInput schema / $defs / PlanReductionRequest / title
      Removed value: -"PlanReductionRequest"
    • removedInput schema / $defs / PlanReductionRequest / type
      Removed value: -"object"
    • addedInput schema / $defs / StructuredReductionRequest
      Added value: +{
      +  "additionalProperties": false,
      +  "description": "A structured reduction, which never accepts binary chunking configuration.",
      +  "properties": {
      +    "engine": {
      +      "const": "native_ddmin",
      +      "default": "native_ddmin",
      +      "title": "Engine",
      +      "type": "string"
      +    },
      +    "expected_determinism": {
      +      "default": "deterministic",
      +      "enum": [
      +        "deterministic",
      +        "repeated"
      +      ],
      +      "title": "Expected Determinism",
      +      "type": "string"
      +    },
      +    "limits": {
      +      "$ref": "#/$defs/ReductionLimits"
      +    },
      +    "original_artifact_id": {
      +      "title": "Original Artifact Id",
      +      "type": "string"
      +    },
      +    "partitioner": {
      +      "enum": [
      +        "text_lines",
      +        "json_top_level",
      +        "jsonl_records",
      +        "otlp_spans",
      +        "chrome_trace_events"
      +      ],
      +      "title": "Partitioner",
      +      "type": "string"
      +    },
      +    "predicate_parameters": {
      +      "additionalProperties": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "integer"
      +          },
      +          {
      +            "type": "number"
      +          },
      +          {
      +            "type": "boolean"
      +          }
      +        ]
      +      },
      +      "maxProperties": 128,
      +      "title": "Predicate Parameters",
      +      "type": "object"
      +    },
      +    "predicate_workload": {
      +      "title": "Predicate Workload",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "original_artifact_id",
      +    "predicate_workload",
      +    "partitioner"
      +  ],
      +  "title": "StructuredReductionRequest",
      +  "type": "object"
      +}
    • removedInput schema / additionalProperties
      Removed value: -false
    • addedOutput schema / $defs / BinaryChunkReductionPlan
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "chunk_size": {
      +      "maximum": 16777216,
      +      "minimum": 1,
      +      "title": "Chunk Size",
      +      "type": "integer"
      +    },
      +    "created_at": {
      +      "format": "date-time",
      +      "title": "Created At",
      +      "type": "string"
      +    },
      +    "engine": {
      +      "const": "native_ddmin",
      +      "default": "native_ddmin",
      +      "title": "Engine",
      +      "type": "string"
      +    },
      +    "expected_determinism": {
      +      "enum": [
      +        "deterministic",
      +        "repeated"
      +      ],
      +      "title": "Expected Determinism",
      +      "type": "string"
      +    },
      +    "limits": {
      +      "$ref": "#/$defs/ReductionLimits"
      +    },
      +    "original_artifact_id": {
      +      "title": "Original Artifact Id",
      +      "type": "string"
      +    },
      +    "partitioner": {
      +      "const": "binary_chunks",
      +      "title": "Partitioner",
      +      "type": "string"
      +    },
      +    "plan_id": {
      +      "title": "Plan Id",
      +      "type": "string"
      +    },
      +    "predicate_command": {
      +      "$ref": "#/$defs/CommandSpec"
      +    },
      +    "predicate_definition_id": {
      +      "title": "Predicate Definition Id",
      +      "type": "string"
      +    },
      +    "predicate_executable_digest": {
      +      "title": "Predicate Executable Digest",
      +      "type": "string"
      +    },
      +    "predicate_instance_id": {
      +      "title": "Predicate Instance Id",
      +      "type": "string"
      +    },
      +    "predicate_parameters": {
      +      "additionalProperties": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "integer"
      +          },
      +          {
      +            "type": "number"
      +          },
      +          {
      +            "type": "boolean"
      +          }
      +        ]
      +      },
      +      "title": "Predicate Parameters",
      +      "type": "object"
      +    },
      +    "predicate_workload": {
      +      "title": "Predicate Workload",
      +      "type": "string"
      +    },
      +    "request_digest": {
      +      "title": "Request Digest",
      +      "type": "string"
      +    },
      +    "schema_version": {
      +      "const": 2,
      +      "default": 2,
      +      "title": "Schema Version",
      +      "type": "integer"
      +    },
      +    "workspace_id": {
      +      "title": "Workspace Id",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "plan_id",
      +    "request_digest",
      +    "workspace_id",
      +    "original_artifact_id",
      +    "predicate_workload",
      +    "predicate_definition_id",
      +    "predicate_instance_id",
      +    "predicate_command",
      +    "predicate_parameters",
      +    "predicate_executable_digest",
      +    "limits",
      +    "expected_determinism",
      +    "partitioner",
      +    "chunk_size"
      +  ],
      +  "title": "BinaryChunkReductionPlan",
      +  "type": "object"
      +}
    • 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"
      -    }
      -  ]
      -}
    • removedOutput schema / $defs / ReductionPlan / additionalProperties
      Removed value: -false
    • addedOutput schema / $defs / ReductionPlan / discriminator
      Added value: +{
      +  "mapping": {
      +    "binary_chunks": "#/$defs/BinaryChunkReductionPlan",
      +    "chrome_trace_events": "#/$defs/StructuredReductionPlan",
      +    "json_top_level": "#/$defs/StructuredReductionPlan",
      +    "jsonl_records": "#/$defs/StructuredReductionPlan",
      +    "otlp_spans": "#/$defs/StructuredReductionPlan",
      +    "text_lines": "#/$defs/StructuredReductionPlan"
      +  },
      +  "propertyName": "partitioner"
      +}
    • addedOutput schema / $defs / ReductionPlan / oneOf
      Added value: +[
      +  {
      +    "$ref": "#/$defs/BinaryChunkReductionPlan"
      +  },
      +  {
      +    "$ref": "#/$defs/StructuredReductionPlan"
      +  }
      +]
    • removedOutput schema / $defs / ReductionPlan / properties
      Removed value: -{
      -  "chunk_size": {
      -    "anyOf": [
      -      {
      -        "type": "integer"
      -      },
      -      {
      -        "type": "null"
      -      }
      -    ],
      -    "default": null,
      -    "title": "Chunk Size"
      -  },
      -  "created_at": {
      -    "format": "date-time",
      -    "title": "Created At",
      -    "type": "string"
      -  },
      -  "engine": {
      -    "const": "native_ddmin",
      -    "default": "native_ddmin",
      -    "title": "Engine",
      -    "type": "string"
      -  },
      -  "expected_determinism": {
      -    "enum": [
      -      "deterministic",
      -      "repeated"
      -    ],
      -    "title": "Expected Determinism",
      -    "type": "string"
      -  },
      -  "limits": {
      -    "$ref": "#/$defs/ReductionLimits"
      -  },
      -  "original_artifact_id": {
      -    "title": "Original Artifact Id",
      -    "type": "string"
      -  },
      -  "partitioner": {
      -    "enum": [
      -      "text_lines",
      -      "binary_chunks",
      -      "json_top_level",
      -      "jsonl_records",
      -      "otlp_spans",
      -      "chrome_trace_events"
      -    ],
      -    "title": "Partitioner",
      -    "type": "string"
      -  },
      -  "plan_id": {
      -    "title": "Plan Id",
      -    "type": "string"
      -  },
      -  "predicate_command": {
      -    "$ref": "#/$defs/CommandSpec"
      -  },
      -  "predicate_definition_id": {
      -    "title": "Predicate Definition Id",
      -    "type": "string"
      -  },
      -  "predicate_executable_digest": {
      -    "title": "Predicate Executable Digest",
      -    "type": "string"
      -  },
      -  "predicate_instance_id": {
      -    "title": "Predicate Instance Id",
      -    "type": "string"
      -  },
      -  "predicate_parameters": {
      -    "additionalProperties": {
      -      "anyOf": [
      -        {
      -          "type": "string"
      -        },
      -        {
      -          "type": "integer"
      -        },
      -        {
      -          "type": "number"
      -        },
      -        {
      -          "type": "boolean"
      -        }
      -      ]
      -    },
      -    "title": "Predicate Parameters",
      -    "type": "object"
      -  },
      -  "predicate_workload": {
      -    "title": "Predicate Workload",
      -    "type": "string"
      -  },
      -  "request_digest": {
      -    "title": "Request Digest",
      -    "type": "string"
      -  },
      -  "schema_version": {
      -    "const": 2,
      -    "default": 2,
      -    "title": "Schema Version",
      -    "type": "integer"
      -  },
      -  "workspace_id": {
      -    "title": "Workspace Id",
      -    "type": "string"
      -  }
      -}
    • removedOutput schema / $defs / ReductionPlan / required
      Removed value: -[
      -  "plan_id",
      -  "request_digest",
      -  "workspace_id",
      -  "original_artifact_id",
      -  "partitioner",
      -  "predicate_workload",
      -  "predicate_definition_id",
      -  "predicate_instance_id",
      -  "predicate_command",
      -  "predicate_parameters",
      -  "predicate_executable_digest",
      -  "limits",
      -  "expected_determinism"
      -]
    • removedOutput schema / $defs / ReductionPlan / title
      Removed value: -"ReductionPlan"
    • removedOutput schema / $defs / ReductionPlan / type
      Removed value: -"object"
    • 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"
      +}
    • addedOutput schema / $defs / StructuredReductionPlan
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "chunk_size": {
      +      "const": null,
      +      "default": null,
      +      "title": "Chunk Size",
      +      "type": "null"
      +    },
      +    "created_at": {
      +      "format": "date-time",
      +      "title": "Created At",
      +      "type": "string"
      +    },
      +    "engine": {
      +      "const": "native_ddmin",
      +      "default": "native_ddmin",
      +      "title": "Engine",
      +      "type": "string"
      +    },
      +    "expected_determinism": {
      +      "enum": [
      +        "deterministic",
      +        "repeated"
      +      ],
      +      "title": "Expected Determinism",
      +      "type": "string"
      +    },
      +    "limits": {
      +      "$ref": "#/$defs/ReductionLimits"
      +    },
      +    "original_artifact_id": {
      +      "title": "Original Artifact Id",
      +      "type": "string"
      +    },
      +    "partitioner": {
      +      "enum": [
      +        "text_lines",
      +        "json_top_level",
      +        "jsonl_records",
      +        "otlp_spans",
      +        "chrome_trace_events"
      +      ],
      +      "title": "Partitioner",
      +      "type": "string"
      +    },
      +    "plan_id": {
      +      "title": "Plan Id",
      +      "type": "string"
      +    },
      +    "predicate_command": {
      +      "$ref": "#/$defs/CommandSpec"
      +    },
      +    "predicate_definition_id": {
      +      "title": "Predicate Definition Id",
      +      "type": "string"
      +    },
      +    "predicate_executable_digest": {
      +      "title": "Predicate Executable Digest",
      +      "type": "string"
      +    },
      +    "predicate_instance_id": {
      +      "title": "Predicate Instance Id",
      +      "type": "string"
      +    },
      +    "predicate_parameters": {
      +      "additionalProperties": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "integer"
      +          },
      +          {
      +            "type": "number"
      +          },
      +          {
      +            "type": "boolean"
      +          }
      +        ]
      +      },
      +      "title": "Predicate Parameters",
      +      "type": "object"
      +    },
      +    "predicate_workload": {
      +      "title": "Predicate Workload",
      +      "type": "string"
      +    },
      +    "request_digest": {
      +      "title": "Request Digest",
      +      "type": "string"
      +    },
      +    "schema_version": {
      +      "const": 2,
      +      "default": 2,
      +      "title": "Schema Version",
      +      "type": "integer"
      +    },
      +    "workspace_id": {
      +      "title": "Workspace Id",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "plan_id",
      +    "request_digest",
      +    "workspace_id",
      +    "original_artifact_id",
      +    "predicate_workload",
      +    "predicate_definition_id",
      +    "predicate_instance_id",
      +    "predicate_command",
      +    "predicate_parameters",
      +    "predicate_executable_digest",
      +    "limits",
      +    "expected_determinism",
      +    "partitioner"
      +  ],
      +  "title": "StructuredReductionPlan",
      +  "type": "object"
      +}
    • removedOutput schema / $defs / SuccessPayload_ReductionPlan_ / properties / error / default
      Removed value: -null
    • removedOutput schema / $defs / SuccessPayload_ReductionPlan_ / properties / ok / default
      Removed value: -true
    • addedOutput schema / $defs / SuccessPayload_ReductionPlan_ / properties / schema_version / const
      Added value: +1
    • removedOutput schema / $defs / SuccessPayload_ReductionPlan_ / properties / schema_version / default
      Removed value: -1
    • changedOutput schema / $defs / SuccessPayload_ReductionPlan_ / 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. Changed19 schema fields changedv0.1.11
    • addedInput schema / $defs / PlanReductionRequest / properties / chunk_size
      Added value: +{
      +  "anyOf": [
      +    {
      +      "maximum": 16777216,
      +      "minimum": 1,
      +      "type": "integer"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Chunk Size"
      +}
    • addedInput schema / $defs / PlanReductionRequest / properties / engine
      Added value: +{
      +  "const": "native_ddmin",
      +  "default": "native_ddmin",
      +  "title": "Engine",
      +  "type": "string"
      +}
    • addedInput schema / $defs / PlanReductionRequest / properties / partitioner
      Added value: +{
      +  "enum": [
      +    "text_lines",
      +    "binary_chunks",
      +    "json_top_level",
      +    "jsonl_records",
      +    "otlp_spans",
      +    "chrome_trace_events"
      +  ],
      +  "title": "Partitioner",
      +  "type": "string"
      +}
    • removedInput schema / $defs / PlanReductionRequest / properties / reducer_parameters
      Removed value: -{
      -  "additionalProperties": {
      -    "anyOf": [
      -      {
      -        "type": "string"
      -      },
      -      {
      -        "type": "integer"
      -      },
      -      {
      -        "type": "number"
      -      },
      -      {
      -        "type": "boolean"
      -      }
      -    ]
      -  },
      -  "title": "Reducer Parameters",
      -  "type": "object"
      -}
    • removedInput schema / $defs / PlanReductionRequest / properties / reducer_workload
      Removed value: -{
      -  "title": "Reducer Workload",
      -  "type": "string"
      -}
    • changedInput schema / $defs / PlanReductionRequest / required
      Previous value: -[
      -  "original_artifact_id",
      -  "reducer_workload",
      -  "predicate_workload"
      -]New value: +[
      +  "original_artifact_id",
      +  "partitioner",
      +  "predicate_workload"
      +]
    • 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"
      +]
    • addedOutput schema / $defs / ReductionPlan / properties / chunk_size
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "integer"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Chunk Size"
      +}
    • addedOutput schema / $defs / ReductionPlan / properties / engine
      Added value: +{
      +  "const": "native_ddmin",
      +  "default": "native_ddmin",
      +  "title": "Engine",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / ReductionPlan / properties / partitioner
      Added value: +{
      +  "enum": [
      +    "text_lines",
      +    "binary_chunks",
      +    "json_top_level",
      +    "jsonl_records",
      +    "otlp_spans",
      +    "chrome_trace_events"
      +  ],
      +  "title": "Partitioner",
      +  "type": "string"
      +}
    • removedOutput schema / $defs / ReductionPlan / properties / reducer_command
      Removed value: -{
      -  "$ref": "#/$defs/CommandSpec"
      -}
    • removedOutput schema / $defs / ReductionPlan / properties / reducer_definition_id
      Removed value: -{
      -  "title": "Reducer Definition Id",
      -  "type": "string"
      -}
    • removedOutput schema / $defs / ReductionPlan / properties / reducer_executable_digest
      Removed value: -{
      -  "title": "Reducer Executable Digest",
      -  "type": "string"
      -}
    • removedOutput schema / $defs / ReductionPlan / properties / reducer_instance_id
      Removed value: -{
      -  "title": "Reducer Instance Id",
      -  "type": "string"
      -}
    • removedOutput schema / $defs / ReductionPlan / properties / reducer_parameters
      Removed value: -{
      -  "additionalProperties": {
      -    "anyOf": [
      -      {
      -        "type": "string"
      -      },
      -      {
      -        "type": "integer"
      -      },
      -      {
      -        "type": "number"
      -      },
      -      {
      -        "type": "boolean"
      -      }
      -    ]
      -  },
      -  "title": "Reducer Parameters",
      -  "type": "object"
      -}
    • removedOutput schema / $defs / ReductionPlan / properties / reducer_workload
      Removed value: -{
      -  "title": "Reducer Workload",
      -  "type": "string"
      -}
    • changedOutput schema / $defs / ReductionPlan / properties / schema_version / const
      Previous value: -1New value: +2
    • changedOutput schema / $defs / ReductionPlan / properties / schema_version / default
      Previous value: -1New value: +2
    • changedOutput schema / $defs / ReductionPlan / required
      Previous value: -[
      -  "plan_id",
      -  "request_digest",
      -  "workspace_id",
      -  "original_artifact_id",
      -  "reducer_workload",
      -  "reducer_definition_id",
      -  "reducer_instance_id",
      -  "reducer_command",
      -  "reducer_parameters",
      -  "reducer_executable_digest",
      -  "predicate_workload",
      -  "predicate_definition_id",
      -  "predicate_instance_id",
      -  "predicate_command",
      -  "predicate_parameters",
      -  "predicate_executable_digest",
      -  "limits",
      -  "expected_determinism"
      -]New value: +[
      +  "plan_id",
      +  "request_digest",
      +  "workspace_id",
      +  "original_artifact_id",
      +  "partitioner",
      +  "predicate_workload",
      +  "predicate_definition_id",
      +  "predicate_instance_id",
      +  "predicate_command",
      +  "predicate_parameters",
      +  "predicate_executable_digest",
      +  "limits",
      +  "expected_determinism"
      +]
  4. First observedv0.1.9

TDQS

C2.9/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds context about immutability and approval, and the temporal 'before execution' framing, but does not explain what the plan contains or what happens after binding.

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 a single efficient sentence with no filler words. 'Bind immutable input and approved reducer/predicate identities' is front-loaded, and the temporal qualifier is placed at the end. It is concise, though arguably too sparse for the tool's complexity.

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

Completeness2/5

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

This tool has a complex nested schema with many limit fields and zero parameter descriptions, yet the description offers only a vague one-liner. It does not explain what a reduction plan is, how to use the limits, what 'approved identities' means, or how this integrates with execute_reduction and get_reduction.

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 0%, so the description must compensate for the lack of parameter documentation. It does not mention source_run_id, predicate_workload, or limits, and only loosely alludes to 'immutable input' and 'approved reducer/predicate identities' without connecting them to schema fields.

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

Purpose3/5

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

The description uses a specific verb 'Bind' and names resources ('immutable input', 'approved reducer/predicate identities'), and 'before execution' hints that this is a planning step. However, it never explicitly states that this tool creates a reduction plan, and the jargon-heavy phrasing leaves the core purpose vague.

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?

'Before execution' implies this tool is a prerequisite to a later execution step, which distinguishes it from siblings like execute_reduction. But it provides no explicit when/when-not guidance and does not name any alternative tools or conditions.

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