summaryrefslogtreecommitdiff
path: root/Omni/Task/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'Omni/Task/README.md')
-rw-r--r--Omni/Task/README.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/Omni/Task/README.md b/Omni/Task/README.md
new file mode 100644
index 0000000..c989251
--- /dev/null
+++ b/Omni/Task/README.md
@@ -0,0 +1,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
+```