{
  "$schema": "http://json-schema.org/schema",
  "$id": "LensmcpAgentBuild",
  "title": "agent-build",
  "description": "Run an instrumented production build that also produces a bundle report and a baseline.",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "kind": {
      "type": "string",
      "enum": ["vite-react"],
      "default": "vite-react"
    },
    "projectRoot": {
      "type": "string",
      "description": "Override the project root passed to Vite. Defaults to the running project's root."
    },
    "updateBaseline": {
      "type": "boolean",
      "default": true,
      "description": "If true, the resulting bundle report is written to .lensmcp/baseline/bundle.json on success."
    }
  },
  "required": []
}
