What problem does it solve? Implementing a multi-task plan serially wastes time waiting for each task's review before starting the next. This Skill pipelines the work: it keeps exactly one task under review while speculatively implementing the next task in the same Git worktree, promoting each approved task independently through Tollgate. ## Core Features & Use Cases - Rolling task pipeline: Maintains one task under review and at most one speculative task in flight, submitting each as an independently valid commit candidate. - Pinned review links: Generates VS Code worktree-review URLs pinned to the exact reviewed commit, excluding speculative descendants and uncommitted changes. - Feedback interruption and restacking: Stashes speculative work, amends the reviewed commit, and rebases descendants with git rebase --onto when review feedback arrives. - Private state ledger: Tracks task commits, candidate IDs, review state, stashes, and runtime resources via scripts/ledger.py stored in the worktree's private Git metadata. - Use Case: Given a five-task implementation plan, the Skill commits task 1, hands it off for review, immediately implements task 2 speculatively, then promotes task 1 on approval and repeats until the final task triggers automatic worktree cleanup. ## Quick Start Use wt-sequence to implement this task-by-task plan, reviewing and promoting each task separately while working ahead on the next one.