Removing multi Agent Config
Gas City no longer supports multi = true on agents.
What to change
- Remove
multi = true from the agent definition in city.toml.
- Create interactive sessions from that template with:
gc session new <template>
Old multi-instance beads
If you previously used gc session new (formerly gc agent start) with the old multi-instance model,
your bead store may still contain open beads with labels like:
multi:<template>
instance:<name>
state:running or state:stopped
Those beads are no longer used by Gas City. If you want to clean them up,
close them manually.
Example:
bd list --json \
| jq -r '.[] | select(any(.labels[]?; startswith("multi:"))) | .id' \
| xargs -r -n1 bd close
If you never used multi-instance agents before, no cleanup is required.Last modified on March 20, 2026