archive-workspace
Archive Workspace
Archive one project folder from data/workspace/<slug>/ to data/workspace-archive/<slug>/, preserving its internal sub-layout (refs/, frames/, clips/, final/, scratch/). The per-project workspace convention lives in memory: feedback_workspace_convention.md.
Steps
-
Inspect workspace - List
data/workspace/to see which project folders exist and, if needed, peek inside to confirm which one to archive. -
Pick the archive name - Default to the project folder's own name (e.g.,
hellzapoppin4-loading-dock). Only override if the user wants a different name. -
Check for conflicts - Verify
data/workspace-archive/<name>/doesn't already exist. If it does, append a number (e.g.,hellzapoppin4-loading-dock-2). -
Move the project folder intact:
mkdir -p data/workspace-archive mv data/workspace/<slug> data/workspace-archive/<name>Preserves the full sub-layout in one move — no per-file walk needed.