> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chamelio.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Customization - Task Customization

> Update a task's title, priority, owner, assignee, or due date mid-flow

## Overview

The Customization step updates a task's properties as the flow runs, based on a static value or a value from earlier in the flow.

## Use When

* The task's title, priority, owner, assignee, or due date should change based on something the flow already knows (e.g. set priority once risk level is known)

## Configuration

Click **Add Attribute**, then for each one:

* **Attribute Type** — exactly one of: **Title**, **Due Date**, **Priority**, **Owner**, **Assignee**
* **Value** — either a static value you type directly, or **From Flow** — a variable selected from an earlier step

Use **Delete field** to remove an attribute you've added, and add as many attributes as the task needs updated.

<Tip>
  There's no calculated-value formula language (like `dueDate = requestDate + 2 days`) — a value is either typed directly or pulled as-is from a flow variable. To compute something first, do the calculation in an earlier [Agent](/features/flows/agent-step) step and set that step's output as the "From Flow" source here.
</Tip>

## Related Components

<CardGroup cols={2}>
  <Card title="Intake" icon="inbox-in" href="/features/flows/intake">
    Update tasks based on intake data
  </Card>

  <Card title="Agent" icon="robot" href="/features/flows/agent-step">
    Adjust properties based on AI analysis
  </Card>

  <Card title="Condition" icon="code-branch" href="/features/flows/condition">
    Apply different updates on different branches
  </Card>
</CardGroup>
