# `workspace.create` Create a named workspace (an agent's own hidden draft; optionally a hosted sandbox container). - **scope**: `agents:admin` - **storefront-visible** (bumps the catalog generation): no - **destructive**: no ## Payload | field | type | required | notes | |---|---|---|---| | `name` | string (≤60 chars) | yes | | | `kind` | "agent" \| "developer" | no | | | `hosted` | boolean (default false) | no | | ### JSON Schema ```json { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 60 }, "kind": { "default": "agent", "type": "string", "enum": [ "agent", "developer" ] }, "hosted": { "default": false, "type": "boolean" } }, "required": [ "name" ], "additionalProperties": false } ```