Task List Tags help you decompose complex tasks into smaller, actionable sub-tasks that AI agents execute systematically.

Available Tags

Task list tags: decompose, sequential, ai-sequential, ai-parallel
TagPurpose
@task-list-decomposeAnalyze and break down a complex task into sub-tasks
@task-list-sequentialExecute sub-tasks in listed order, one after another
@task-list-ai-sequentialAI determines optimal sequential order based on dependencies
@task-list-ai-parallelAI determines order, runs independent tasks in parallel

Using Tags

Type @ in your prompt to show available tags and select one.
Command palette showing task list tags
1

Type @

Start typing @ in your prompt to open the tag selector.
2

Select a tag

Choose the appropriate tag for your task.
3

Describe your task

Provide your task description after the tag.

Workflow

Decompose First

Use @task-list-decompose to analyze complex tasks:
User story being decomposed into sub-tasks
The AI outputs a structured breakdown:
Decomposed sub-tasks with analyzed dependencies

Then Execute

Copy the output and use with an execution tag:
  • @task-list-sequential — Tasks run in listed order
  • @task-list-ai-sequential — AI determines optimal order
  • @task-list-ai-parallel — Independent tasks run simultaneously
For simple tasks, skip decompose and use an execution tag directly with a bracketed list: [task1, task2, task3]

When to Use

Decompose complex features:
@task-list-decompose
Implement a user authentication system with OAuth, session management, and RBAC
Break down user stories:
@task-list-decompose
As a user, I want to manage my profile including avatar, bio, and preferences
Execute sequential tasks:
@task-list-sequential
[design login UI, implement form validation, add API integration, write tests]
Run independent tasks in parallel:
@task-list-ai-parallel
[add dark mode, create notifications, implement search]
Parallel execution works best when tasks modify different files. Tasks affecting the same files should run sequentially to avoid conflicts.

Run Selected Tasks

You can also run existing todo tasks directly without typing tags.
1

Select tasks

Check the tasks you want to execute in the todo list.
Selected tasks with Run Tasks button
2

Click Run Tasks

Click the Run Tasks button that appears after selecting tasks.
3

Choose execution mode

Select how tasks should run:
Run Tasks modal with execution mode options
  • Sequential — Tasks execute one after another
  • AI Sequential — AI determines optimal order
  • AI Parallel — Independent tasks run simultaneously
4

Start execution

Click Run to begin. The AI executes tasks in isolated sessions.
This is recommended for running sub-tasks created from decomposition. Select the decomposed tasks and choose an execution mode to run them systematically.