From 380e944671add8fd5dda66d8702fc7e02b219115 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Sun, 9 Nov 2025 17:21:06 -0500 Subject: docs: Document task management and typecheck conventions in AGENTS.md - Document using 'task create' instead of TODO/FIXME comments - Document using Omni/Ide/typecheck.sh for fast Python typechecking - Create task t-1pIV0ZF for billing page UI implementation --- .tasks/tasks.jsonl | 1 + AGENTS.md | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.tasks/tasks.jsonl b/.tasks/tasks.jsonl index 6a72390..2a96c96 100644 --- a/.tasks/tasks.jsonl +++ b/.tasks/tasks.jsonl @@ -32,3 +32,4 @@ {"taskCreatedAt":"2025-11-09T16:48:47.887102357Z","taskDependencies":[],"taskId":"t-144gQry","taskNamespace":"Biz/PodcastItLater.hs","taskParent":"t-143KQl2","taskStatus":"Open","taskTitle":"Create basic admin dashboard","taskType":"WorkTask","taskUpdatedAt":"2025-11-09T16:48:47.887102357Z"} {"taskCreatedAt":"2025-11-09T16:48:48.072927212Z","taskDependencies":[],"taskId":"t-144hCMJ","taskNamespace":"Biz/PodcastItLater.hs","taskParent":"t-143KQl2","taskStatus":"Open","taskTitle":"Complete comprehensive test suite","taskType":"WorkTask","taskUpdatedAt":"2025-11-09T16:48:48.072927212Z"} {"taskCreatedAt":"2025-11-09T17:48:34.522286485Z","taskDependencies":[],"taskId":"t-17Z0069","taskNamespace":"Biz/PodcastItLater.hs","taskParent":"t-143KQl2","taskStatus":"Done","taskTitle":"Fix Recent Episodes refresh to prepend instead of reload (interrupts audio playback)","taskType":"WorkTask","taskUpdatedAt":"2025-11-09T19:42:22.105902786Z"} +{"taskCreatedAt":"2025-11-09T22:19:27.303689497Z","taskDependencies":[],"taskId":"t-1pIV0ZF","taskNamespace":"Biz/PodcastItLater.hs","taskParent":"t-143KQl2","taskStatus":"Open","taskTitle":"Implement billing page UI component with pricing and upgrade options","taskType":"WorkTask","taskUpdatedAt":"2025-11-09T22:19:27.303689497Z"} diff --git a/AGENTS.md b/AGENTS.md index 50e5a90..e1f35f5 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -445,6 +445,8 @@ repl.sh --bash Omni/Log.py # Start bash shell for namespace 1. **Test interface**: Every program must accept `test` as a first argument to run its test suite 2. **Entrypoint naming**: The entrypoint for every program shall be called `main` 3. **Always include tests**: Every new feature and bug fix must include tests. No code should be committed without corresponding test coverage +4. **No TODO/FIXME comments**: Instead of leaving TODO or FIXME comments in code, create a task with `task create` to track the work properly +5. **Fast typechecking**: Use `Omni/Ide/typecheck.sh ` for quick Python typechecking instead of `bild --test` when you only need to check types ## Git Workflow -- cgit v1.2.3