WhenDocumentation Index
Fetch the complete documentation index at: https://docs.gascityhall.com/llms.txt
Use this file to discover all available pages before exploring further.
gc start fails, the last line is a FATAL: marker. The line below
it is a URL that links here. Find your symptom in the lookup below, then
expand its section for the cause and resolution.
This page covers the seven failure modes encountered in the 2026-04-26
selfhost UX bug haul (umbrella PRD
ga-r8hs). For installation issues
(gc not on PATH, missing prerequisites, version mismatches), see
Troubleshooting. For Dolt store
recovery, see Dolt bloat recovery.What a failed gc start looks like

FATAL: prefix is the stable marker — bold red on a TTY, plain ASCII
when piped or redirected. The URL on the next line is grep-able and links
to the matching section below.
Quick lookup
| If you see this symptom | Section |
|---|---|
bd init: signal: killed (or supervisor stuck at starting_bead_store) | bd op_init timeout |
pack schema 2 not supported (max 1) | Pack schema mismatch |
agent X: duplicate name (from … and …) | Duplicate agent name |
unknown field agent.pool (or other unknown field) | Unknown field |
rig X: path is required | Rig path required |
named_session X: referenced template not found | Template not found |
named_session X: duplicate identity | Duplicate identity |
- bd op_init timeout
Symptom
gc start hangs and the supervisor cycles through
starting_bead_store retries with no actionable error.
Cause
bd >= 1.0.3 triggers a config schema auto-migration on every
bd config set call. Older versions of the gc-beads-bd shim issued
two bd config set invocations during op_init, taking 18s and ~50s
respectively — each SIGKILL’d by the 30s op_init provider timeout.
The supervisor never reached ready state.
Fixed in ga-5mym.1 by replacing the slow path with a direct
.beads/config.yaml write (idempotent, < 5s wall clock).
Resolution
Upgrade gc to 1.1.0 or later. Verify:
gc start still hangs after upgrading, check that your gc binary
on disk matches the running supervisor — see
Pack schema mismatch for the drift-detection
flow.
Background: PRD ga-sn06.
- Pack schema mismatch
Symptom
go install ./cmd/gc while the
supervisor is still running.
Cause
The on-disk gc binary was rebuilt and now understands pack schema 2.
The running gascity-supervisor (a long-lived systemd user service)
keeps executing the previous binary’s image and the cached pack
snapshots it parsed at startup. New requests to the supervisor still
go through the old code path.
The fix shipped in ga-a3ry.1 (binary drift detection in gc start)
detects this automatically and restarts the supervisor.
Resolution
The gc start command in 1.1.0 detects the drift and offers to
restart the supervisor. Confirm:
buildID should match gc version.
Background: PRD ga-7kwr.
- Duplicate agent name
Symptom
[[agent]] blocks (pack v1 layout) for an agent
name that an auto-imported system pack declares in
agents/<name>/agent.toml (pack v2 layout). Both contribute the same
agent name; the validator refuses ambiguity.
The pack v1 → v2 mismatch line is emitted by ga-9ogb (collision
detection); the source paths are filled in by ga-tpfc.1 (source-path
ergonomics). Before 1.1.0, the second source rendered as an empty
string.
Resolution
Choose one of the following.
fallback = true escape hatch
is for packs that intentionally wrap a system pack and need the local
declaration to win when both are present.
Background: Pack v1 → v2 migration guide ·
PRD ga-ytx2 ·
PRD ga-qpbe.
- Unknown field
Symptom
unknown field <path> error during pack parse.
Cause
Your pack.toml declares a field that the current gc binary’s
schema does not recognise. The most common case in 1.1.0 is
[agent.pool], removed in favour of flat min_active_sessions and
max_active_sessions on the agent itself.
Resolution
Translate the deprecated block:
- Rig path required
Symptom
site.toml
companion file. That mechanism is gone; city.toml is now the sole
source of truth for rig locations.
Resolution
Add a path to each [[rigs]] entry in city.toml:
gc start to verify.
- Template not found
Symptom
[[named_session]] block in city.toml references an agent template
(by name) that no loaded pack provides. The most common case: the
relevant pack is missing from [city] includes.
Resolution
Add the pack to city.toml’s includes list:
- Duplicate identity
Symptom
[[named_session]] in
both city.toml and a pack’s pack.toml. Each side claims
ownership of the named-session identity; the validator refuses the
collision.
Resolution
Remove the [[named_session]] from one side. The convention is to
let the pack own the named-session identity and let city.toml
override only when necessary:
agent config rather than redeclaring the identity.
Still stuck?
- Run
gc doctor --verboseand capture its output. - Capture the failed
gc startoutput: - File an issue at
gastownhall/gascity/issues
with both attached, plus your OS / architecture and
gc version.