Snapshot what matters
An export captures memory, sessions, kb, checkpoints, skills, and scars together. Re-importing restores the agent to the recorded state on the receiving machine.
// Workspace.zip
Workspace.zip is PasClaw's portable agent state. The same shape is used by pasclaw build's workspace handshake and by the web UI's operator-driven export/import, so an agent's full context can move between machines, jobs, or Replicate invocations with one round-trip.
An export captures memory, sessions, kb, checkpoints, skills, and scars together. Re-importing restores the agent to the recorded state on the receiving machine.
The web UI exposes download and upload of workspace.zip from the gateway, so hand-off between machines does not require shell access to either side.
pasclaw build --workspace-in <zip> unpacks into $PASCLAW_HOME before the run and --workspace-out <zip> packs after, so long-horizon builds can round-trip the entire brain through one zip URL per invocation.
From the documentation
Implementation notes drawn from the PasClaw repository documentation.
pasclaw build supports a zip in / zip out handshake so a long-horizon build can round-trip the entire agent brain through one URL per call.
pasclaw build -d "<task>" \
--workspace-in ./prev.zip \
--workspace-out ./next.zipThe same shape is offered through the gateway's web UI as operator-driven export/import — memory, sessions, kb, checkpoints, skills, and scars all travel together.
Common questions
Keep exploring
See how the rest of PasClaw fits together.