diff options
| author | Ben Sima <ben@bensima.com> | 2025-11-28 01:46:45 -0500 |
|---|---|---|
| committer | Ben Sima <ben@bensima.com> | 2025-11-28 01:46:45 -0500 |
| commit | 476c4c5be4c0710c8e21171694c5d6b279548a92 (patch) | |
| tree | ba3c1515b3c9c49b933e9379b2757467060f1b57 | |
| parent | 85378e95a1af3451546490d2bf219e412c83a300 (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.md | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -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 |
