diff options
Diffstat (limited to 'AGENTS.md')
| -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 |
