What problem does it solve?
Coordinating many parallel worker agents on a large batch of work is error-prone: duplicated effort, lost progress on crashes, rate-limit bans, and no way to resume after failure. This Skill provides a concrete pattern for fanning out colony work safely by modeling the goal as a tracker table and driving it to completion with a deterministic playbook.
Core Features & Use Cases
- Tracker-driven orchestration: Model every unit of work as a table row with a done-predicate, so re-running a playbook automatically resumes only the unfinished gap.
- Deterministic playbooks: Write Python scripts using
converge, worker, tracker_query, and lane to control concurrency, retries, circuit breakers, and dead-lettering without manual re-dispatch.
- Pilot-first validation: Run one row yourself before fan-out to catch broken selectors or protocol gaps before paying for N failed workers.
- Multi-account routing: Rotate browser profiles and lanes to spread load across logged-in accounts while throttling per-account rate limits.
- Use Case: Research 25 fintech competitors in parallel — seed a tracker table, write a worker skill, pilot one row, then run a playbook that converges the remaining rows with retries and a dead-letter report.
Quick Start
Ask the agent to break your batch task into a tracker table, write a worker skill, pilot one row, and run a playbook that fans the rest out to parallel workers.