Duo Agent Platform flows API

  • Tier: Premium, Ultimate
  • Offering: GitLab.com, GitLab Self-Managed, GitLab Dedicated

Use this API to create and manage flows in the GitLab Duo Agent Platform. Flows are combinations of AI agents that work together to complete developer tasks, such as fixing bugs, writing code, or resolving vulnerabilities.

Create a flow

  • Status: Experiment

Creates and starts a new flow.

POST /ai/duo_workflows/workflows

Supported attributes:

AttributeTypeRequiredDescription
additional_contextarray of objectsNoAdditional context for the flow. Each element must be an object with at minimum a Category (string) and Content (string, serialized JSON) key.
agent_privilegesinteger arrayNoPrivilege IDs the agent is allowed to use. Defaults to all privileges. See List all agent privileges.
ai_catalog_item_consumer_idintegerNoID of the AI Catalog item consumer that configures which catalog item to execute. Requires project_id. Cannot be used with workflow_definition; if both are provided, ai_catalog_item_consumer_id takes precedence. See Look up the consumer ID.
ai_catalog_item_version_idintegerNoID of the AI Catalog item version that sourced the flow configuration.
allow_agent_to_request_userbooleanNoWhen true (default), the agent may pause to ask the user questions before proceeding. When false, the agent runs to completion without user input.
environmentstringNoExecution environment. One of: ide, web, chat_partial, chat, ambient.
goalstringNoDescription of the task for the agent to complete. Example: Fix the failing pipeline.
imagestringNoContainer image to use when running the flow in a CI pipeline. Must meet the custom image requirements. Example: registry.gitlab.com/gitlab-org/duo-workflow/custom-image:latest.
issue_idintegerNoIID of the issue to associate the flow with. Requires project_id.
merge_request_idintegerNoIID of the merge request to associate the flow with. Requires project_id.
namespace_idstringNoID or path of the namespace to associate the flow with.
pre_approved_agent_privilegesinteger arrayNoPrivilege IDs the agent can use without asking for user approval. Must be a subset of agent_privileges.
project_idstringNoID or path of the project to associate the flow with.
shallow_clonebooleanNoWhether to use a shallow clone of the repository during execution. Default: true.
source_branchstringNoSource branch for the CI pipeline. Defaults to the project’s default branch.
start_workflowbooleanNoWhen true, starts the flow immediately after creation.
workflow_definitionstringNoFlow type identifier. Example: developer/v1. Cannot be used with ai_catalog_item_consumer_id; if both are provided, ai_catalog_item_consumer_id takes precedence.

If successful, returns 201 Created and the following response attributes:

AttributeTypeDescription
agent_privilegesinteger arrayPrivilege IDs assigned to the agent.
agent_privileges_namesstring arrayNames corresponding to agent_privileges.
ai_catalog_item_version_idintegerID of the AI Catalog item version. null if not set.
allow_agent_to_request_userbooleanWhen true, the agent may pause for user input.
environmentstringExecution environment. null if not set.
gitlab_urlstringBase URL of the GitLab instance.
idintegerID of the flow.
imagestringContainer image for CI pipeline execution. null if not set.
mcp_enabledbooleanWhether MCP (Model Context Protocol) tools are enabled for this flow.
namespace_idintegerID of the associated namespace. null if not set.
pre_approved_agent_privilegesinteger arrayPrivilege IDs the agent can use without asking for approval.
pre_approved_agent_privileges_namesstring arrayNames corresponding to pre_approved_agent_privileges.
project_idintegerID of the associated project. null if not set.
statusstringCurrent flow status. One of created, running, paused, finished, failed, stopped, input_required, plan_approval_required, or tool_call_approval_required.
workflow_definitionstringFlow type identifier.
workloadobjectInformation about the workload.
workload.idstringID of the workload.
workload.messagestringStatus message for the workload.

Look up the consumer ID

Before you can use ai_catalog_item_consumer_id, you must use the GraphQL API to retrieve the ID from the AI Catalog. The item must already be enabled for the project.

query {
  aiCatalogConfiguredItems(projectId: "gid://gitlab/Project/<project_id>") {
    nodes {
      id
      item { name }
    }
  }
}

The id field is a Global ID in the format gid://gitlab/AiCatalogItemConsumer/<numeric_id>. Use the numeric suffix as the ai_catalog_item_consumer_id value.

Example request using a built-in flow type:

curl --request POST \
  --header "PRIVATE-TOKEN: <your_access_token>" \
  --header "Content-Type: application/json" \
  --data '{
    "project_id": "5",
    "goal": "Fix the failing pipeline by correcting the syntax error in .gitlab-ci.yml",
    "workflow_definition": "developer/v1",
    "start_workflow": true
  }' \
  --url "https://gitlab.example.com/api/v4/ai/duo_workflows/workflows"

Example request using a catalog-configured flow:

curl --request POST \
  --header "PRIVATE-TOKEN: <your_access_token>" \
  --header "Content-Type: application/json" \
  --data '{
    "project_id": "5",
    "goal": "Fix the failing pipeline by correcting the syntax error in .gitlab-ci.yml",
    "ai_catalog_item_consumer_id": 12,
    "start_workflow": true
  }' \
  --url "https://gitlab.example.com/api/v4/ai/duo_workflows/workflows"

Example response:

{
  "id": 1,
  "project_id": 5,
  "namespace_id": null,
  "agent_privileges": [1, 2, 3, 4, 5, 6],
  "agent_privileges_names": [
    "read_write_files",
    "read_only_gitlab",
    "read_write_gitlab",
    "run_commands",
    "use_git",
    "run_mcp_tools"
  ],
  "pre_approved_agent_privileges": [],
  "pre_approved_agent_privileges_names": [],
  "workflow_definition": "developer/v1",
  "status": "running",
  "allow_agent_to_request_user": true,
  "image": null,
  "environment": null,
  "ai_catalog_item_version_id": null,
  "workload": {
    "id": "abc-123",
    "message": "Workflow started"
  },
  "mcp_enabled": false,
  "gitlab_url": "https://gitlab.example.com"
}

List all agent privileges

Lists all available agent privileges with their IDs, names, descriptions, and whether each is enabled by default.

GET /ai/duo_workflows/workflows/agent_privileges

This endpoint has no supported attributes.

If successful, returns 200 OK and the following response attributes:

AttributeTypeDescription
all_privilegesarray of objectsAll available agent privileges.
all_privileges[].default_enabledbooleanWhether the privilege is enabled by default.
all_privileges[].descriptionstringHuman-readable description of what the privilege permits.
all_privileges[].idintegerPrivilege ID.
all_privileges[].namestringMachine-readable privilege name.

Example request:

curl --header "PRIVATE-TOKEN: <your_access_token>" \
  --url "https://gitlab.example.com/api/v4/ai/duo_workflows/workflows/agent_privileges"

Example response:

{
  "all_privileges": [
    {
      "id": 1,
      "name": "read_write_files",
      "description": "Allow local filesystem read/write access",
      "default_enabled": true
    },
    {
      "id": 2,
      "name": "read_only_gitlab",
      "description": "Allow read only access to GitLab APIs",
      "default_enabled": true
    },
    {
      "id": 3,
      "name": "read_write_gitlab",
      "description": "Allow write access to GitLab APIs",
      "default_enabled": true
    },
    {
      "id": 4,
      "name": "run_commands",
      "description": "Allow running any commands",
      "default_enabled": true
    },
    {
      "id": 5,
      "name": "use_git",
      "description": "Allow git commits, push and other git commands",
      "default_enabled": true
    },
    {
      "id": 6,
      "name": "run_mcp_tools",
      "description": "Allow running MCP tools",
      "default_enabled": true
    }
  ]
}