diff options
| author | Ben Sima <ben@bensima.com> | 2025-11-24 21:43:35 -0500 |
|---|---|---|
| committer | Ben Sima <ben@bensima.com> | 2025-11-24 21:43:35 -0500 |
| commit | 6b9b5f5129dff789753df7d0c82939d3c219b29b (patch) | |
| tree | 0e5a3015a4cb29df2adf06f18898eeda5ee2acfe /Omni/Agent/WORKER_AGENT_GUIDE.md | |
| parent | 32a81cad9782bb82f826307005bd187d4e6f0c93 (diff) | |
Remove harvest command and documentation
The 'harvest' functionality was tied to git-synced JSONL task files,
which have been replaced by a local SQLite database. This commit
removes the command from the CLI and updates documentation to reflect
the new workflow.
Amp-Thread-ID:
https://ampcode.com/threads/T-ac41b9b6-d117-46de-9e4f-842887a22f1d
Co-authored-by: Amp <amp@ampcode.com>
Diffstat (limited to 'Omni/Agent/WORKER_AGENT_GUIDE.md')
| -rw-r--r-- | Omni/Agent/WORKER_AGENT_GUIDE.md | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Omni/Agent/WORKER_AGENT_GUIDE.md b/Omni/Agent/WORKER_AGENT_GUIDE.md index e832a2a..d0bc7a7 100644 --- a/Omni/Agent/WORKER_AGENT_GUIDE.md +++ b/Omni/Agent/WORKER_AGENT_GUIDE.md @@ -90,20 +90,19 @@ task update t-123 in-progress # Sync to get latest state ./Omni/Agent/sync-tasks.sh - # Ensure the task is marked review here too (for harvest visibility) + # Ensure the task is marked review here too task update t-123 review # Commit this status change to the worker branch ./Omni/Agent/sync-tasks.sh --commit ``` - *Note: The Planner will now see 't-123' in 'Review' when it runs `harvest-tasks.sh`.* + *Note: The Planner will now see 't-123' in 'Review' when it runs `task list --status=review`.* ## 3. Planner (Reviewer) Workflow The Planner Agent (running in the main repo) will: -1. **Harvest Updates**: Run `./Omni/Agent/harvest-tasks.sh` to pull "In Progress" and "Review" statuses from workers. -2. **Find Reviews**: Run `task list --status=review`. +1. **Find Reviews**: Run `task list --status=review`. 3. **Review Code**: * Check out the feature branch: `git checkout task/t-123`. * **Rebase onto Live**: Ensure the branch is up-to-date and linear. |
