A collection of opt-in Gas City packs.
Gas City is an orchestration-builder SDK for multi-agent coding workflows. A
pack is a unit of workspace configuration: agents, commands, services,
formulas, skills, hooks, template fragments, or any combination. Packs compose
through pack.toml imports, so a city can opt into any subset of the packs in
this repo without forking.
For the full model (cities, rigs, formulas, beads, runtime providers) see the Gas City README.
Packs live next to the consuming workspace. A typical layout:
your-city/
pack.toml
packs/
pr-review/ # pack from this repo
discord/
...
Inside your workspace pack.toml:
[imports.pr-review]
source = "../packs/pr-review"Each pack documents its own prerequisites, import snippet, and usage.
Each top-level directory is either a pack or a group of related packs:
- A directory containing
pack.tomlis itself a pack; import it by path. - A directory without
pack.tomlgroups related subpacks and typically ships anall/rollup that imports the group as one.
Browse the tree for the current set; each pack has its own README.
Issues and pull requests are welcome. When a pack's surface changes, update its README in the same PR so the docs stay current with the code.