| name | scbe-longform-work |
| description | Execute long-running implementation and research tasks with checkpointed handoffs, compact status artifacts, and deterministic resume points. Use when work spans many steps, multiple sessions, or multiple agents and requires durable continuity. |
SCBE Longform Work
Use this workflow for deep tasks that must survive context limits and session boundaries.
Execution Pattern
- Break the objective into phases with clear done criteria.
- Keep one active phase at a time.
- Emit compact checkpoint artifacts at phase boundaries.
- Resume from checkpoint instead of re-deriving state.
Checkpoint Contract
- Write current status to
docs/map-room/session_handoff_latest.md.
- Include
objective, completed, in_progress, blocked, next_actions.
- Include exact file paths changed and pending.
- Include command history required for deterministic resume.
Reliability Rules
- Prefer append-only operational logs.
- Preserve evidence for major decisions.
- Record assumptions and invalidation triggers.
- Keep rollback path for each risky change.
Output Contract
phase_plan.md with execution stages.
session_handoff_latest.md updated at every checkpoint.
decision_log.jsonl for governance and tradeoff traceability.