summaryrefslogtreecommitdiff
path: root/Omni/Task/README.md
diff options
context:
space:
mode:
authorBen Sima <ben@bensima.com>2025-11-22 19:30:45 -0500
committerBen Sima <ben@bensima.com>2025-11-22 19:30:45 -0500
commit1e34a47803b10513443ef836aad88c0087c67e5d (patch)
treef27d6eac734a8a00a73125385e4f0f1ec79f60a0 /Omni/Task/README.md
parent6f4b2c97a24967508f3970b46999052fd1f44e67 (diff)
feat: implement t-1o2c9vazf64
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
+```