Skip to main content
Just ask your agent. The easiest way to customize statuses is to describe what you need:
  • “Add a Blocked status with a red color”
  • “Create a Waiting status for conversations on hold”
  • “Add an In Review status between In Progress and Done”
The agent handles the configuration automatically.
You can also customize statuses manually by editing the workspace’s status configuration file.

Configuration File

Status configuration is stored at:

Config Schema

The configuration file has the following structure:

Status Properties

Each status object supports these properties:
When color is omitted, the design system default is used. When icon is omitted, the app looks for an auto-discovered file at statuses/icons/{id}.{ext} (supports .svg, .png, .jpg, .jpeg).

Adding Custom Statuses

To add a custom status like “Blocked” or “Waiting”, add a new object to the statuses array:
Make sure to adjust the order values of other statuses if needed to position your new status correctly.

Example: Adding Multiple Custom Statuses

Customizing Icons

Icons can be configured in several ways:
Set the icon property to an emoji:
Quick and easy, works everywhere.
Provide a URL to an icon file:
The icon is automatically downloaded and cached locally.

SVG Icon Guidelines

When creating custom SVG icons:
  • Size: 24x24 pixels
  • Use currentColor for stroke/fill to support theming
  • stroke-width: 2
  • stroke-linecap: round
  • stroke-linejoin: round

Changing Colors

Set the color property to customize a status’s appearance:
You can use:
  • Hex colors: "#EF4444", "#22C55E"
  • Tailwind classes: "text-red-500", "text-green-500"

Fixed Statuses

The following statuses cannot be deleted or renamed: You can still customize their color and icon properties.

Validation

Always validate your configuration after making changes.
After editing the config file, validate it to catch errors before they cause issues:
The validator checks:
  • Required fixed statuses exist (todo, done, cancelled)
  • No duplicate status IDs
  • defaultStatusId references an existing status
  • At least one status in each category (open and closed)
  • Icon files exist when referenced
Invalid configurations fall back to defaults at runtime, but validation helps catch issues early.