Core flows
Pod flow
Compose multiple workspaces into a shared, multi-machine unit — create a pod, add workspaces, and inspect its composition.
A pod lifts SEIF from one workspace to many. It is a named composition of workspaces — the unit you share across machines and collaborators, the way a repository is the unit you share for code.
seif pod create <slug> → pod registered on the engine
│
seif pod add-workspace <pod> <ws> → workspace joins the composition
│
seif pod show <user-slug/pod-slug> → the pod and its membersCreate
seif pod create my-pod # like `gh repo create`, but for a podCompose
seif pod add-workspace <pod> <workspace> # add a workspace
seif pod remove-workspace <pod> <workspace> # remove oneA pod's composition is itself governed (decision D2), so changes to membership are recorded, not silent.
Inspect
seif pod list # pods in your account
seif pod show <user-slug/pod-slug> # one pod by its namespaceWhere to go next
- Workspace flow — the unit a pod composes.
- Relay flow — routing work between agents across a pod.