Architecture
c9s is a single Go binary built on the Bubble Tea Elm-architecture TUI framework. It manages Apple's container runtime by shelling out to the container CLI; it never talks to the underlying XPC services directly.
ui ─→ state ─→ cli ─→ `container` (subprocess)
internal/cliis the only package that runscontainer. Production code usescli.DefaultClient; tests usecli.Fake.internal/stateholds per-resource snapshot caches with freshness timestamps.internal/uiowns the Bubble Tea root model, modal stack, splash, status bar, and individual resource screens (containers, images, volumes, networks, builder, registry, system).