agent tracker + tmux update

This commit is contained in:
David Chen 2026-03-25 12:13:26 -07:00
parent cd9c92b1c2
commit 5064629d61
68 changed files with 15041 additions and 3483 deletions

View file

@ -0,0 +1,19 @@
package main
import "testing"
func TestPaletteBuildActionsIncludesDestroyForAgentRecord(t *testing.T) {
r := &paletteRuntime{
agentID: "memory-hack",
mainRepoRoot: "/tmp/repo",
currentPath: "/tmp/repo/.agents/memory-hack/repo",
record: &agentRecord{ID: "memory-hack", RepoRoot: "/tmp/repo"},
}
actions := r.buildActions()
for _, action := range actions {
if action.Kind == paletteActionConfirmDestroy {
return
}
}
t.Fatalf("destroy action missing: %#v", actions)
}