| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-11-21 | fix(agent): fix start-worker.sh crash and update workflow | Omni Worker | |
| 2025-11-21 | doc: mandate rebase workflow for planner | Omni Worker | |
| 2025-11-21 | Merge live into task/t-rWacMb1av | Omni Worker | |
| Amp-Thread-ID: https://ampcode.com/threads/T-7109f8d0-feb4-4a24-bc4b-37743227e2cb Co-authored-by: Amp <amp@ampcode.com> | |||
| 2025-11-21 | infra: improve worker workflow (attribution, cleaner history) | Ben Sima | |
| 2025-11-21 | fix: lint errors in Omni/Agent/Git.hs and Log.hs | Ben Sima | |
| Amp-Thread-ID: https://ampcode.com/threads/T-7109f8d0-feb4-4a24-bc4b-37743227e2cb Co-authored-by: Amp <amp@ampcode.com> | |||
| 2025-11-21 | Merge branch 'live' into task/t-rWa5yilwM.3 | Ben Sima | |
| 2025-11-21 | Merge branch 'live' into task/t-rWa5yilwM.1 | Ben Sima | |
| 2025-11-21 | Merge live into task/t-1rcIwc8 | Ben Sima | |
| Amp-Thread-ID: https://ampcode.com/threads/T-7109f8d0-feb4-4a24-bc4b-37743227e2cb Co-authored-by: Amp <amp@ampcode.com> | |||
| 2025-11-21 | fix: expose task progress command in CLI | Ben Sima | |
| 2025-11-21 | feat: implement t-rWacMb1av | Ben Sima | |
| 2025-11-21 | feat: implement t-rWa5yilwM.3 | Ben Sima | |
| 2025-11-21 | feat: implement t-rWa5yilwM.1 | Ben Sima | |
| 2025-11-21 | feat: implement t-1rcIwc8 | Ben Sima | |
| 2025-11-21 | feat: implement t-1rcIr6X | Ben Sima | |
| 2025-11-20 | docs(agent): add rigorous git/state learnings to design | Ben Sima | |
| 2025-11-20 | fix(task): exclude Review tasks from task ready | Ben Sima | |
| 2025-11-20 | fix(worker): sleep when skipping already-completed tasks | Ben Sima | |
| 2025-11-20 | fix(worker): verify task status against live before claiming | Ben Sima | |
| 2025-11-20 | fix(worker): use force checkout for base branch | Ben Sima | |
| 2025-11-20 | fix(worker): handle rebase failures at start of loop | Ben Sima | |
| 2025-11-20 | fix(worker): handle rebase failures gracefully | Ben Sima | |
| If the rebase on live fails, we abort it to preserve the local state. We also verify that the task status update to 'review' succeeds before proceeding. | |||
| 2025-11-20 | docs(agent): update logging design with 2-line status UI | Ben Sima | |
| 2025-11-20 | docs: update Agent design with git robustness learnings | Ben Sima | |
| 2025-11-20 | feat(task): remove horizontal bars from output | Ben Sima | |
| 2025-11-20 | fix(worker): force checkout to overwrite untracked files | Ben Sima | |
| 2025-11-20 | fix: rebase on local live branch | Ben Sima | |
| - Removed fetch origin - Rebasing directly on local live branch for shared-repo setup | |||
| 2025-11-20 | fix: update worker script to use rebase | Ben Sima | |
| - Ensures linear history on worker branch | |||
| 2025-11-20 | doc: switch worker to rebase workflow | Ben Sima | |
| - Use 'git rebase' instead of 'git merge' to maintain linear history - Aligns with git-branchless patch-based philosophy | |||
| 2025-11-20 | Merge branch 'task/t-PpYZt2' into live | Ben Sima | |
| 2025-11-20 | feat: implement t-PpYZt2 | Ben Sima | |
| 2025-11-20 | feat: implement t-PpYZt2 | Ben Sima | |
| 2025-11-20 | doc: add design docs for open epics | Ben Sima | |
| - Omni/Task/DESIGN.md: Task manager improvements - Biz/PodcastItLater/DESIGN.md: Architecture and features - Biz/PodcastItLater/TESTING.md: Test strategy - Network/Wai/Middleware/Braid/DESIGN.md: Keep-alive design | |||
| 2025-11-20 | feat: implement t-PpYZt2 | Ben Sima | |
| 2025-11-20 | doc: update agent design to require timestamps in logs | Ben Sima | |
| 2025-11-20 | feat: implement t-PpYZt2 | Ben Sima | |
| 2025-11-20 | doc: add design document for Multi-Agent System 2.0 | Ben Sima | |
| 2025-11-20 | feat: implement t-PpYZt2 | Ben Sima | |
| 2025-11-20 | feat: implement t-PpYZt2 | Ben Sima | |
| 2025-11-20 | fix: remove null noise from worker monitor | Ben Sima | |
| - Use 'empty' in jq to properly filter ignored log lines | |||
| 2025-11-20 | feat: implement t-PpYZt2 | Ben Sima | |
| 2025-11-20 | fix: enable debug logs for worker agent | Ben Sima | |
| - Allows monitoring tool execution details in amp.log | |||
| 2025-11-20 | feat: automate worker workflow in bash | Ben Sima | |
| - Replaced agent-driven workflow with robust bash script - Script handles task claiming, branching, syncing, and submission - Agent is now only responsible for implementation and testing - Eliminates context loss and process adherence issues | |||
| 2025-11-20 | fix: merge local live branch in worker guide | Ben Sima | |
| - We share the .git directory, so we can merge 'live' directly - Avoids dependency on 'origin' which might be stale or unused | |||
| 2025-11-20 | fix: prevent data loss in worker loop | Ben Sima | |
| - Changed 'git reset --hard' to 'git merge' in worker guide - This prevents the worker from wiping its own status updates (commits to base branch) when starting a new task loop | |||
| 2025-11-20 | fix: handle existing task branches in worker guide | Ben Sima | |
| - Workers should reuse existing branches if they crashed/restarted - Changed 'git checkout -b' to 'git checkout || git checkout -b' | |||
| 2025-11-20 | fix: instruct worker to reset to latest live code | Ben Sima | |
| - Workers need to pull the latest merged code before starting a new task - Added 'git reset --hard origin/live' to Step 1 of the loop | |||
| 2025-11-20 | Merge branch 'task/t-1gcR9RV' into live | Ben Sima | |
| 2025-11-20 | Move agent log file to cabdir | Ben Sima | |
| 2025-11-20 | feat: implement task harvesting logic | Ben Sima | |
| - Added Omni/Agent/harvest-tasks.sh for Planner to pull updates from workers - Updated WORKER_AGENT_GUIDE.md to instruct workers to commit status updates to their base branch | |||
| 2025-11-20 | fix: capture worker agent logs to file | Ben Sima | |
| - Added --log-file amp.log to worker command - Allows users to monitor agent progress with tail -f | |||
