fix(cycle): town session cycling works from any directory

The isTownLevelSession() function was checking workspace.FindFromCwd()
which fails when gt cycle is invoked via tmux run-shell, since run-shell
executes from whatever directory the tmux server started in (often / or
home), not from within the Gas Town workspace.

Town-level sessions (hq-mayor, hq-deacon) can be identified by their
fixed names alone - no workspace context needed. This fix removes the
unnecessary workspace dependency, allowing C-b n/p to cycle between
Mayor and Deacon sessions as intended.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
max
2026-01-07 00:06:55 -08:00
committed by beads/crew/dave
parent 93bdf88f6e
commit 4a94187068

View File

@@ -6,7 +6,6 @@ import (
"sort"
"github.com/spf13/cobra"
"github.com/steveyegge/gastown/internal/workspace"
)
// townCycleSession is the --session flag for town next/prev commands.
@@ -22,18 +21,13 @@ func getTownLevelSessions() []string {
}
// isTownLevelSession checks if the given session name is a town-level session.
// Town-level sessions (Mayor, Deacon) use the "hq-" prefix, so we can identify
// them by name alone without requiring workspace context. This is critical for
// tmux run-shell which may execute from outside the workspace directory.
func isTownLevelSession(sessionName string) bool {
townRoot, err := workspace.FindFromCwd()
if err != nil || townRoot == "" {
return false
}
townName, err := workspace.GetTownName(townRoot)
if err != nil {
return false
}
mayorSession := getMayorSessionName()
deaconSession := getDeaconSessionName()
_ = townName // used for session name generation
// Town-level sessions are identified by their fixed names
mayorSession := getMayorSessionName() // "hq-mayor"
deaconSession := getDeaconSessionName() // "hq-deacon"
return sessionName == mayorSession || sessionName == deaconSession
}