Documentation
Oh My Bee
In DevelopmentAdvanced
The current advanced surface focuses on sessions, handoffs, worktrees, approvals, and checkpoints.
Section
Sessions and handoffs
Bee stores append-oriented session history under `.bee/` and lets you package follow-up work into child sessions instead of losing context when a shell ends.
bash
bee sessions show session-1234
bee sessions handoff session-1234
bee --new-session-from session-1234Section
Managed worktrees
Managed worktrees let Bee isolate focused coding runs while keeping recovery and workflow context tied to the same project root.
bash
bee --worktree parser-refactor -p '@tool pwd {}'
bee --continue -p "keep working in the same worktree session"Section
Checkpoints, rewinds, and approvals
- Use checkpoints and rewinds for exploratory detours.
- Use staged approvals when edits should be reviewed before writeback.
- Use wrap-up and continuation records before stopping meaningful work.