PromptShuttle

create_flow

Creates a new flow in the tenant. A flow groups versioned prompt templates. The new flow starts with an editable draft version containing one empty 'main' template — set its prompt afterwards with update_flow_template. Returns the created flow with its ID and generated name (slug).

Remote Bring a key revuo:promptshuttle

Remote (network-hosted) · Needs a self-provisionable API key

Other tools also called create_flow? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "title": {
      "description": "Human-readable title for the flow",
      "type": "string"
    },
    "description": {
      "description": "Optional description of the flow's purpose",
      "type": "string",
      "default": ""
    }
  },
  "required": [
    "title"
  ]
}