@lovenyberg/ove 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -56,6 +56,10 @@ Scheduling:
56
56
  list schedules See your scheduled tasks
57
57
  remove schedule #N Remove a scheduled task
58
58
 
59
+ Task management:
60
+ tasks List running and pending tasks
61
+ cancel <id> Kill a running or pending task
62
+
59
63
  Meta:
60
64
  status Queue stats
61
65
  history Recent tasks
@@ -202,11 +206,12 @@ bun test # 150 tests
202
206
  1. Message arrives via any transport (Slack, WhatsApp, Telegram, Discord, CLI, HTTP API, or GitHub comment)
203
207
  2. Chat adapters use `handleMessage`, event adapters use `handleEvent`
204
208
  3. Router parses intent and extracts repo/args
205
- 4. Task gets queued in SQLite (one per repo at a time)
206
- 5. Worker creates an isolated git worktree
207
- 6. Runs the configured agent runner (`claude -p` or `codex exec`) with streaming JSON output
208
- 7. Status updates stream back (chat: edits a message, HTTP: SSE, GitHub: single comment)
209
- 8. Result sent back, worktree cleaned up
209
+ 4. Task gets queued in SQLite (one per repo at a time, different repos run in parallel)
210
+ 5. Worker loop picks up tasks concurrently (up to 5 parallel tasks across different repos)
211
+ 6. Each task gets an isolated git worktree
212
+ 7. Runs the configured agent runner (`claude -p` or `codex exec`) with streaming JSON output
213
+ 8. Status updates stream back (chat: edits a message, HTTP: SSE, GitHub: single comment)
214
+ 9. Result sent back, worktree cleaned up
210
215
 
211
216
  See [example conversations](docs/examples.md) for all flows.
212
217