From 1ab3a0aab177330ea20683fd5452775d6ddb7910 Mon Sep 17 00:00:00 2001 From: Dustin Smith Date: Mon, 19 Jan 2026 20:49:52 +0700 Subject: [PATCH] fix: include queue in custom types during install Use constants.BeadsCustomTypesList() instead of hardcoded list that was missing the queue type. --- internal/cmd/install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cmd/install.go b/internal/cmd/install.go index 351ca3ad..72094c00 100644 --- a/internal/cmd/install.go +++ b/internal/cmd/install.go @@ -483,7 +483,7 @@ func initTownAgentBeads(townPath string) error { // bd init doesn't enable "custom" issue types by default, but Gas Town uses // agent beads during install and runtime. Ensure these types are enabled // before attempting to create any town-level system beads. - if err := ensureBeadsCustomTypes(townPath, []string{"agent", "rig", "convoy", "slot"}); err != nil { + if err := ensureBeadsCustomTypes(townPath, constants.BeadsCustomTypesList()); err != nil { return err }