Native pattern for scheduled auto-mode agents driving the action-required queue #72
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally filed by @coilysiren on 2026-04-29T02:11:01Z - https://github.com/coilysiren/repo-recall/issues/30
The idea
The README already pitches the dashboard as a deterministic data layer that an agent can reason over ("Open http://127.0.0.1:7777 and work through every repo flagged as action-required"). What's missing is the schedule — pointing a recurring agent at the dashboard so the action-required list drains itself overnight or weekly without human kick-off.
Concretely: a Claude Code routine on cron, prompted with something like
Run weekly Sunday night, wake up Monday to a drained queue (or a punch list of items the agent couldn't unblock). Combined with auto mode, this is close to a real "second pair of hands" rather than a passive dashboard.
Why repo-recall specifically
The action-required surface is already designed for this — `id = "<repo_id>:"` lets a returning agent tell "same broken thing, still broken" from "this one cleared and a new one appeared," and `/api/scan-version` + `ETag` make polling cheap. So the data plumbing is there. What would help an agent run cleanly:
#3 is the cheap win. #1 and #2 are the upgrade if scheduled-agent usage takes off.
Out of scope
repo-recall shouldn't run the agent itself or store a cron schedule — that belongs in whatever scheduler the user already has (Claude Code routines, Task Scheduler, systemd timer, GH Actions cron). Server-side scheduling would pull repo-recall away from "local data layer" toward "orchestrator," and the value of staying in the data-layer lane is composability with whichever scheduler the user prefers.
Iceboxed in the 2026-05-29 backlog burn-down: Scheduled auto-mode agents idea, speculative far-future pattern. Reopen anytime if it becomes real.