changedInput schema / oneOf
Previous value: -[
- {
- "additionalProperties": false,
- "properties": {
- "action": {
- "const": "pin"
- },
- "duration_ms": {
- "description": "Auto-unpin after this many ms (0–60000). Omit to pin indefinitely.",
- "maximum": 60000,
- "minimum": 0,
- "type": "integer"
- },
- "title": {
- "description": "Partial window title (case-insensitive)",
- "type": "string"
- }
- },
- "required": [
- "action",
- "title"
- ],
- "type": "object"
- },
- {
- "additionalProperties": false,
- "properties": {
- "action": {
- "const": "unpin"
- },
- "title": {
- "description": "Partial window title (case-insensitive)",
- "type": "string"
- }
- },
- "required": [
- "action",
- "title"
- ],
- "type": "object"
- },
- {
- "additionalProperties": false,
- "properties": {
- "action": {
- "const": "dock"
- },
- "corner": {
- "default": "bottom-right",
- "description": "Screen corner to snap the window to. Default 'bottom-right'.",
- "enum": [
- "top-left",
- "top-right",
- "bottom-left",
- "bottom-right"
- ],
- "type": "string"
- },
- "height": {
- "default": 360,
- "description": "Window height in pixels after docking. Default 360.",
- "type": "integer"
- },
- "margin": {
- "default": 8,
- "description": "Pixel padding between the window and the screen edge. Default 8.",
- "minimum": 0,
- "type": "integer"
- },
- "monitorId": {
- "description": "Monitor to dock on (from desktop_state({includeScreen:true})). Omit for primary monitor.",
- "minimum": 0,
- "type": "integer"
- },
- "pin": {
- "default": true,
- "description": "If true, set always-on-top so the docked window stays visible on top of other windows. Use window_dock(action='unpin') to remove the topmost flag later. Default true.",
- "type": "boolean"
- },
- "title": {
- "description": "Partial window title to dock (case-insensitive). Matches the first visible window containing this text. Example: 'Claude Code', 'メモ帳'.",
- "type": "string"
- },
- "width": {
- "default": 480,
- "description": "Window width in pixels after docking. Default 480.",
- "type": "integer"
- }
- },
- "required": [
- "action",
- "title"
- ],
- "type": "object"
- }
-]New value: +[
+ {
+ "additionalProperties": false,
+ "properties": {
+ "action": {
+ "const": "pin"
+ },
+ "duration_ms": {
+ "description": "Auto-unpin after this many ms (0–60000). Omit to pin indefinitely.",
+ "maximum": 60000,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "include": {
+ "description": "Optional response-shape opt-in. `['envelope']` returns the self-documenting envelope (`_version` / `data` / `as_of` / `confidence`). `['raw']` forces raw shape (overrides DESKTOP_TOUCH_ENVELOPE=1 server default). Default behaviour is raw shape (compat with existing clients).",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "title": {
+ "description": "Partial window title (case-insensitive)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "action",
+ "title"
+ ],
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "action": {
+ "const": "unpin"
+ },
+ "include": {
+ "description": "Optional response-shape opt-in. `['envelope']` returns the self-documenting envelope (`_version` / `data` / `as_of` / `confidence`). `['raw']` forces raw shape (overrides DESKTOP_TOUCH_ENVELOPE=1 server default). Default behaviour is raw shape (compat with existing clients).",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "title": {
+ "description": "Partial window title (case-insensitive)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "action",
+ "title"
+ ],
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "action": {
+ "const": "dock"
+ },
+ "corner": {
+ "default": "bottom-right",
+ "description": "Screen corner to snap the window to. Default 'bottom-right'.",
+ "enum": [
+ "top-left",
+ "top-right",
+ "bottom-left",
+ "bottom-right"
+ ],
+ "type": "string"
+ },
+ "height": {
+ "default": 360,
+ "description": "Window height in pixels after docking. Default 360.",
+ "type": "integer"
+ },
+ "include": {
+ "description": "Optional response-shape opt-in. `['envelope']` returns the self-documenting envelope (`_version` / `data` / `as_of` / `confidence`). `['raw']` forces raw shape (overrides DESKTOP_TOUCH_ENVELOPE=1 server default). Default behaviour is raw shape (compat with existing clients).",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "margin": {
+ "default": 8,
+ "description": "Pixel padding between the window and the screen edge. Default 8.",
+ "minimum": 0,
+ "type": "integer"
+ },
+ "monitorId": {
+ "description": "Monitor to dock on (from desktop_state({includeScreen:true})). Omit for primary monitor.",
+ "minimum": 0,
+ "type": "integer"
+ },
+ "pin": {
+ "default": true,
+ "description": "If true, set always-on-top so the docked window stays visible on top of other windows. Use window_dock(action='unpin') to remove the topmost flag later. Default true.",
+ "type": "boolean"
+ },
+ "title": {
+ "description": "Partial window title to dock (case-insensitive). Matches the first visible window containing this text. Example: 'Claude Code', 'メモ帳'.",
+ "type": "string"
+ },
+ "width": {
+ "default": 480,
+ "description": "Window width in pixels after docking. Default 480.",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "action",
+ "title"
+ ],
+ "type": "object"
+ }
+]