workspace.create

Create a named workspace (an agent's own hidden draft; optionally a hosted sandbox container).

Payload

fieldtyperequirednotes
namestring (≤60 chars)yes
kind"agent" | "developer"no
hostedboolean (default false)no

JSON Schema

{
  "$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
}
Generated from the live platform registries at build time — reference pages cannot go stale. Markdown variant: /reference/commands/workspace.create.md