addedInput schema / properties / command_key / default
Added value: +""
addedInput schema / properties / command_keys
Added value: +{
+ "default": [],
+ "items": {
+ "type": "string"
+ },
+ "title": "Command Keys",
+ "type": "array"
+}
addedInput schema / properties / stop_on_failure
Added value: +{
+ "default": true,
+ "title": "Stop On Failure",
+ "type": "boolean"
+}
removedInput schema / required
Removed value: -[
- "command_key"
-]
addedOutput schema / $defs
Added value: +{
+ "CommandEvidence": {
+ "additionalProperties": true,
+ "properties": {
+ "argv": {
+ "items": {
+ "type": "string"
+ },
+ "title": "Argv",
+ "type": "array"
+ },
+ "command": {
+ "title": "Command",
+ "type": "string"
+ },
+ "command_key": {
+ "title": "Command Key",
+ "type": "string"
+ },
+ "command_kind": {
+ "enum": [
+ "test",
+ "build",
+ "lint",
+ "check"
+ ],
+ "title": "Command Kind",
+ "type": "string"
+ },
+ "duration_ms": {
+ "title": "Duration Ms",
+ "type": "integer"
+ },
+ "exit_code": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "Exit Code"
+ },
+ "returncode": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "Returncode"
+ },
+ "status": {
+ "enum": [
+ "success",
+ "failed",
+ "timeout",
+ "output_limit"
+ ],
+ "title": "Status",
+ "type": "string"
+ },
+ "stderr": {
+ "title": "Stderr",
+ "type": "string"
+ },
+ "stderr_truncated": {
+ "title": "Stderr Truncated",
+ "type": "boolean"
+ },
+ "stdout": {
+ "title": "Stdout",
+ "type": "string"
+ },
+ "stdout_truncated": {
+ "title": "Stdout Truncated",
+ "type": "boolean"
+ },
+ "success": {
+ "title": "Success",
+ "type": "boolean"
+ },
+ "timeout_seconds": {
+ "title": "Timeout Seconds",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "command_key",
+ "command_kind",
+ "argv",
+ "command",
+ "status",
+ "success",
+ "exit_code",
+ "returncode",
+ "stdout",
+ "stderr",
+ "stdout_truncated",
+ "stderr_truncated",
+ "timeout_seconds",
+ "duration_ms"
+ ],
+ "title": "CommandEvidence",
+ "type": "object"
+ },
+ "ImageMetadata": {
+ "additionalProperties": true,
+ "properties": {
+ "mime_type": {
+ "enum": [
+ "image/png",
+ "image/jpeg"
+ ],
+ "title": "Mime Type",
+ "type": "string"
+ },
+ "path": {
+ "title": "Path",
+ "type": "string"
+ },
+ "size": {
+ "title": "Size",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "path",
+ "mime_type",
+ "size"
+ ],
+ "title": "ImageMetadata",
+ "type": "object"
+ },
+ "RepositoryRef": {
+ "additionalProperties": true,
+ "properties": {
+ "name": {
+ "title": "Name",
+ "type": "string"
+ },
+ "root": {
+ "title": "Root",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "root"
+ ],
+ "title": "RepositoryRef",
+ "type": "object"
+ }
+}
addedOutput schema / description
Added value: +"Wire contract for repo_run_test structuredContent.\n\nThe command tool has two result shapes (single and bounded batch) and may\nattach image metadata. Common fields are explicit while mode-specific fields\nremain optional. Extra fields stay allowed so the execution layer can evolve\nevidence without silently dropping data from direct CallToolResult responses."
addedOutput schema / properties
Added value: +{
+ "argv": {
+ "anyOf": [
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Argv"
+ },
+ "batch": {
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Batch"
+ },
+ "command": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Command"
+ },
+ "command_key": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Command Key"
+ },
+ "command_kind": {
+ "anyOf": [
+ {
+ "enum": [
+ "test",
+ "build",
+ "lint",
+ "check"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Command Kind"
+ },
+ "completed_count": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Completed Count"
+ },
+ "duration_ms": {
+ "title": "Duration Ms",
+ "type": "integer"
+ },
+ "exit_code": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Exit Code"
+ },
+ "image_warnings": {
+ "anyOf": [
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Image Warnings"
+ },
+ "images": {
+ "anyOf": [
+ {
+ "items": {
+ "$ref": "#/$defs/ImageMetadata"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Images"
+ },
+ "remaining": {
+ "anyOf": [
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Remaining"
+ },
+ "repository": {
+ "$ref": "#/$defs/RepositoryRef"
+ },
+ "requested": {
+ "anyOf": [
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Requested"
+ },
+ "requested_count": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Requested Count"
+ },
+ "results": {
+ "anyOf": [
+ {
+ "items": {
+ "$ref": "#/$defs/CommandEvidence"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Results"
+ },
+ "returncode": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Returncode"
+ },
+ "status": {
+ "enum": [
+ "success",
+ "failed",
+ "timeout",
+ "output_limit"
+ ],
+ "title": "Status",
+ "type": "string"
+ },
+ "stderr": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Stderr"
+ },
+ "stderr_truncated": {
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Stderr Truncated"
+ },
+ "stdout": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Stdout"
+ },
+ "stdout_truncated": {
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Stdout Truncated"
+ },
+ "stop_on_failure": {
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Stop On Failure"
+ },
+ "success": {
+ "title": "Success",
+ "type": "boolean"
+ },
+ "timeout_seconds": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Timeout Seconds"
+ }
+}
addedOutput schema / required
Added value: +[
+ "status",
+ "success",
+ "repository",
+ "duration_ms"
+]
changedOutput schema / title
Previous value: -"repo_run_testDictOutput"New value: +"VerificationResultModel"