removedInput schema / $schema
Removed value: -"https://json-schema.org/draft/2020-12/schema"
addedInput schema / dependentRequired
Added value: +{
+ "endLine": [
+ "startLine"
+ ]
+}
removedInput schema / description
Removed value: -"Use one read mode only: 'head', 'tail', or 'startLine'/'endLine'."
addedInput schema / oneOf
Added value: +[
+ {
+ "required": [
+ "path"
+ ]
+ },
+ {
+ "required": [
+ "paths"
+ ]
+ }
+]
changedInput schema / properties / endLine / description
Previous value: -"End line (1-based, inclusive). Defaults to last line when startLine is set."New value: +"End line (1-indexed)"
changedInput schema / properties / endLine / maximum
Previous value: -9007199254740991New value: +100000
changedInput schema / properties / head / description
Previous value: -"Read first N lines (preview)"New value: +"Return first N lines"
changedInput schema / properties / includeHash / description
Previous value: -"Include SHA-256 hash of full file content"New value: +"Include SHA-256 hash of the returned content in the response"
changedInput schema / properties / path / description
Previous value: -"Absolute path to file or directory."New value: +"Single file path; mutually exclusive with paths"
addedInput schema / properties / paths
Added value: +{
+ "description": "Array of file paths for batch mode (max 1000); mutually exclusive with path",
+ "items": {
+ "description": "File or directory path inside an allowed workspace root.",
+ "maxLength": 4096,
+ "minLength": 1,
+ "type": "string"
+ },
+ "maxItems": 1000,
+ "minItems": 1,
+ "type": "array"
+}
changedInput schema / properties / startLine / description
Previous value: -"Start line (1-based, inclusive). Defaults to 1 when endLine is set."New value: +"Start line (1-indexed)"
changedInput schema / properties / startLine / maximum
Previous value: -9007199254740991New value: +100000
changedInput schema / properties / tail / description
Previous value: -"Read last N lines"New value: +"Return last N lines"
removedInput schema / required
Removed value: -[
- "path"
-]
removedOutput schema / $schema
Removed value: -"https://json-schema.org/draft/2020-12/schema"
removedOutput schema / properties / content
Removed value: -{
- "description": "Content",
- "type": "string"
-}
removedOutput schema / properties / contentHash
Removed value: -{
- "description": "SHA-256 of full file content",
- "pattern": "^[a-f0-9]{64}$",
- "type": "string"
-}
removedOutput schema / properties / endLine
Removed value: -{
- "description": "End line",
- "maximum": 9007199254740991,
- "minimum": 1,
- "type": "integer"
-}
removedOutput schema / properties / hasMoreLines
Removed value: -{
- "description": "More lines?",
- "type": "boolean"
-}
removedOutput schema / properties / head
Removed value: -{
- "description": "Head lines",
- "maximum": 9007199254740991,
- "minimum": 1,
- "type": "integer"
-}
removedOutput schema / properties / linesRead
Removed value: -{
- "description": "Lines read",
- "maximum": 9007199254740991,
- "minimum": 0,
- "type": "integer"
-}
removedOutput schema / properties / ok
Removed value: -{
- "const": true,
- "type": "boolean"
-}
removedOutput schema / properties / path
Removed value: -{
- "type": "string"
-}
removedOutput schema / properties / resourceUri
Removed value: -{
- "description": "Full content URI",
- "type": "string"
-}
addedOutput schema / properties / results
Added value: +{
+ "description": "Per-path results ordered to match the input paths",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "error": {
+ "additionalProperties": false,
+ "description": "Error details; present on failure",
+ "properties": {
+ "code": {
+ "type": "string"
+ },
+ "message": {
+ "type": "string"
+ },
+ "path": {
+ "type": "string"
+ },
+ "suggestion": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "code",
+ "message"
+ ],
+ "type": "object"
+ },
+ "path": {
+ "description": "Requested file path",
+ "type": "string"
+ },
+ "value": {
+ "additionalProperties": false,
+ "description": "Read result; present on success",
+ "properties": {
+ "contentHash": {
+ "description": "SHA-256 hex digest of the returned content (present when includeHash=true)",
+ "pattern": "^[0-9a-f]{64}$",
+ "type": "string"
+ },
+ "continuation": {
+ "additionalProperties": false,
+ "description": "Next-read arguments; present when content was truncated due to size limits",
+ "properties": {
+ "args": {
+ "additionalProperties": false,
+ "description": "Ready-to-use arguments for the next call; pass verbatim",
+ "properties": {
+ "endLine": {
+ "exclusiveMinimum": 0,
+ "type": "integer"
+ },
+ "path": {
+ "type": "string"
+ },
+ "startLine": {
+ "exclusiveMinimum": 0,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "path",
+ "startLine",
+ "endLine"
+ ],
+ "type": "object"
+ },
+ "hint": {
+ "description": "One-sentence description of the data still remaining to be read",
+ "type": "string"
+ },
+ "tool": {
+ "description": "Tool name to call for the next chunk",
+ "type": "string"
+ }
+ },
+ "required": [
+ "tool",
+ "args",
+ "hint"
+ ],
+ "type": "object"
+ },
+ "endLine": {
+ "description": "End line",
+ "exclusiveMinimum": 0,
+ "type": "integer"
+ },
+ "hasMoreLines": {
+ "description": "True when additional lines remain beyond what was returned",
+ "type": "boolean"
+ },
+ "head": {
+ "description": "Head lines requested",
+ "exclusiveMinimum": 0,
+ "type": "integer"
+ },
+ "kind": {
+ "description": "Broad file kind: text, binary, image, audio, or pdf",
+ "enum": [
+ "text",
+ "binary",
+ "image",
+ "audio",
+ "pdf"
+ ],
+ "type": "string"
+ },
+ "linesRead": {
+ "description": "Number of lines returned in this response",
+ "minimum": 0,
+ "type": "integer"
+ },
+ "mimeType": {
+ "description": "Detected MIME type (e.g. text/typescript)",
+ "type": "string"
+ },
+ "resourceUri": {
+ "description": "Resource URI for externalized content (present when file is stored in resource store)",
+ "type": "string"
+ },
+ "startLine": {
+ "description": "Start line",
+ "exclusiveMinimum": 0,
+ "type": "integer"
+ },
+ "tail": {
+ "description": "Tail lines requested",
+ "exclusiveMinimum": 0,
+ "type": "integer"
+ },
+ "totalLines": {
+ "description": "Total line count in the full file",
+ "minimum": 0,
+ "type": "integer"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "required": [
+ "path"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
removedOutput schema / properties / startLine
Removed value: -{
- "description": "Start line",
- "maximum": 9007199254740991,
- "minimum": 1,
- "type": "integer"
-}
addedOutput schema / properties / summary
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "failed": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "succeeded": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "total": {
+ "minimum": 0,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "total",
+ "succeeded",
+ "failed"
+ ],
+ "type": "object"
+}
removedOutput schema / properties / tail
Removed value: -{
- "description": "Tail lines",
- "maximum": 9007199254740991,
- "minimum": 1,
- "type": "integer"
-}
removedOutput schema / properties / totalLines
Removed value: -{
- "description": "Total lines",
- "maximum": 9007199254740991,
- "minimum": 0,
- "type": "integer"
-}
removedOutput schema / properties / truncated
Removed value: -{
- "description": "Truncated?",
- "type": "boolean"
-}
changedOutput schema / required
Previous value: -[
- "ok"
-]New value: +[
+ "results",
+ "summary"
+]