blob: c98925178861b7e7e927bafd7ef6398919fc35ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Omni/Task
The Task Manager system for the Omnirepo.
## Task Types
- `Epic`: A container for related tasks.
- `WorkTask`: A standard unit of work (default).
- `HumanTask`: A task specifically for human operators. These are excluded from the `task ready` queue used by agents.
## Usage
```bash
# Create a human task
task create "Manual review required" --type=human
# List all human tasks
task list --type=human
```
|