SEIF
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 members

Create

seif pod create my-pod        # like `gh repo create`, but for a pod

Compose

seif pod add-workspace <pod> <workspace>      # add a workspace
seif pod remove-workspace <pod> <workspace>   # remove one

A 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 namespace

Where to go next

On this page