chore: regenerate formulas and fix lint warnings

- Regenerate formulas to sync with source templates
- Fix unparam lint warnings in status.go (unused townRoot parameters)

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
julianknutsen
2026-01-06 22:54:25 -08:00
parent ab0d56dec9
commit 541e1ac2a3
7 changed files with 10227 additions and 8 deletions

View File

@@ -734,7 +734,7 @@ func formatMQSummaryCompact(mq *MQSummary) string {
}
// renderAgentCompactWithSuffix renders a single-line agent status with an extra suffix
func renderAgentCompactWithSuffix(agent AgentRuntime, indent string, hooks []AgentHookInfo, townRoot string, suffix string) {
func renderAgentCompactWithSuffix(agent AgentRuntime, indent string, hooks []AgentHookInfo, _ string, suffix string) {
// Build status indicator (gt-zecmc: use tmux state, not bead state)
statusIndicator := buildStatusIndicator(agent)
@@ -774,7 +774,7 @@ func renderAgentCompactWithSuffix(agent AgentRuntime, indent string, hooks []Age
}
// renderAgentCompact renders a single-line agent status
func renderAgentCompact(agent AgentRuntime, indent string, hooks []AgentHookInfo, townRoot string) {
func renderAgentCompact(agent AgentRuntime, indent string, hooks []AgentHookInfo, _ string) {
// Build status indicator (gt-zecmc: use tmux state, not bead state)
statusIndicator := buildStatusIndicator(agent)