Keep docent updated on idle
Re-run docent updates on each idle tick until you cancel the loop.
Implementation note
When to use: keeping a docent/assistant context file in sync automatically whenever your session goes idle, instead of remembering to trigger it manually. Safety: confirm the docent-update step is idempotent (safe to re-run back-to-back) since idle ticks can fire repeatedly with no natural cap — set an iteration or time budget if the idle interval is short.
More automation loops
Run workflows with dynamic sub-agents
Split a task into packets, run sub-agents in parallel, synthesize results, and verify completion.
Run agent turns until goal met
Agent executes repeated turns toward a condition, with a lightweight evaluator checking progress after each turn until the goal is reached.
Run agent until goal met
Queue agent turns with goal context until your objective is achieved, treating the goal as untrusted data.