Review Latest Bundle¶
Read the most recent existing context bundle without re-collecting. Faster than collect-and-orient when a recent bundle already exists.
Workflow name: review-latest-bundle
Execution: main
Steps¶
| # | ID | Name | Type | Depends on |
|---|---|---|---|---|
| 1 | find-bundle |
Find the latest context bundle | code |
|
| 2 | check-freshness |
Check bundle freshness and warn if stale | code |
find-bundle |
| 3 | read-and-synthesize |
Read bundle files and synthesize orientation | reasoning |
check-freshness |
Step instructions¶
find-bundle¶
Find the most recent context bundle in your session directory:
ls -t agents/<your-session>/context/ | head -1
This returns the latest timestamped bundle directory (e.g., 2026-04-02T18-35-49). If no bundles exist, tell the user and suggest running /wb-context-collect instead.
check-freshness¶
Read agents/<your-session>/context/<latest-timestamp>/bundle_meta.json for the collected_at timestamp. If older than 24 hours, warn:
"The latest bundle is from [time]. It may be stale. Want me to collect a fresh one?"
read-and-synthesize¶
Follow Steps 2-5 from collect-and-orient.md — read the context files, synthesize, cross-reference contracts, suggest one next action.
When to prefer this over collect-and-orient¶
- The user just ran the collector manually and wants the results interpreted
- You're mid-conversation and need a quick check — re-collecting would break flow
- The bundle is less than a few hours old and conditions haven't changed much