summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Sima <ben@bensima.com>2025-11-28 01:46:45 -0500
committerBen Sima <ben@bensima.com>2025-11-28 01:46:45 -0500
commit476c4c5be4c0710c8e21171694c5d6b279548a92 (patch)
treeba3c1515b3c9c49b933e9379b2757467060f1b57
parent85378e95a1af3451546490d2bf219e412c83a300 (diff)
Update AGENTS.md to use jr task instead of task
All task management commands should go through the jr CLI wrapper.
-rw-r--r--AGENTS.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/AGENTS.md b/AGENTS.md
index 3c42c8c..bd1bb5b 100644
--- a/AGENTS.md
+++ b/AGENTS.md
@@ -4,12 +4,12 @@ The Omni project is to leverage automation and asymmetries to create wealth.
## Critical Rules for AI Agents
-**CRITICAL**: This project uses `task` for ALL issue tracking. You MUST follow these rules:
+**CRITICAL**: This project uses `jr task` for ALL issue tracking. You MUST follow these rules:
-- ✅ Use `task` for ALL task/TODO tracking (`task create ... --json`)
+- ✅ Use `jr task` for ALL task/TODO tracking (`jr task create ... --json`)
- ✅ Link discovered work with `--discovered-from=<parent-id>`
- ✅ File bugs IMMEDIATELY when you discover unexpected behavior
-- ✅ Run `task ready --json` before asking "what should I work on?"
+- ✅ Run `jr task ready --json` before asking "what should I work on?"
- ✅ Store AI planning docs in `_/llm` directory (NEVER in repo root)
- ❌ Do NOT use `todo_write` tool
- ❌ Do NOT create markdown TODO lists or task checklists
@@ -20,22 +20,22 @@ The Omni project is to leverage automation and asymmetries to create wealth.
**Standard workflow:**
```bash
# 1. Find ready work
-task ready --json
+jr task ready --json
# 2. Claim a task
-task update <id> in-progress --json
+jr task update <id> in-progress --json
# 3. During work: create discovered issues
-task create "Fix type error found" --discovered-from=<current-id> --json
+jr task create "Fix type error found" --discovered-from=<current-id> --json
# 4. Complete the task
-task update <id> done --json
+jr task update <id> done --json
```
**Bug Discovery:**
```bash
# Create a task immediately
-task create "Command X fails when Y" --discovered-from=<current-task-id> --json
+jr task create "Command X fails when Y" --discovered-from=<current-task-id> --json
```
## Directory Structure