zoomout
Installation
SKILL.md
zoomout: pull up, re-read the board, pick the next move
Deep work narrows vision by design. After enough consecutive tasks, the map in your head is a memory, not a map. Zooming out means rebuilding it from live state before choosing what matters next - because the repo moved, main moved, and the roadmap may now be describing a product that already shipped.
Step 1 - resync to live state (never answer from session memory)
Run the reads fresh, every time. This session's recollection of main is stale by default (your own memory counts as a stale doc):
git fetch origin && git log --oneline <last-known>..origin/main- what landed since you last looked, including work you didn't do.- Open PRs and their CI state; unmerged branches carrying real work.
- The working tree: anything uncommitted or half-done in this session.