From 476c4c5be4c0710c8e21171694c5d6b279548a92 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Fri, 28 Nov 2025 01:46:45 -0500 Subject: Update AGENTS.md to use jr task instead of task All task management commands should go through the jr CLI wrapper. --- AGENTS.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'AGENTS.md') 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=` - ✅ 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 in-progress --json +jr task update in-progress --json # 3. During work: create discovered issues -task create "Fix type error found" --discovered-from= --json +jr task create "Fix type error found" --discovered-from= --json # 4. Complete the task -task update done --json +jr task update done --json ``` **Bug Discovery:** ```bash # Create a task immediately -task create "Command X fails when Y" --discovered-from= --json +jr task create "Command X fails when Y" --discovered-from= --json ``` ## Directory Structure -- cgit v1.2.3