summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-03-08 03:35:01 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-03-08 06:33:02 +0000
commit5d6d79e8925693c0740d8c31c614396d70dfb8a5 (patch)
tree749ff2019a7bf4204c4fc9ab5762ac076b013837 /internal
parentd69cb36bf27de37c4977f3b25df5cba5ace7d77e (diff)
refactor(api/cli): update logs and status for generic agents
Diffstat (limited to 'internal')
-rw-r--r--internal/cli/status.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/cli/status.go b/internal/cli/status.go
index 4e0461e..16b88b0 100644
--- a/internal/cli/status.go
+++ b/internal/cli/status.go
@@ -38,7 +38,7 @@ func showStatus(id string) error {
fmt.Printf("ID: %s\n", t.ID)
fmt.Printf("State: %s\n", t.State)
fmt.Printf("Priority: %s\n", t.Priority)
- fmt.Printf("Model: %s\n", t.Claude.Model)
+ fmt.Printf("Model: %s\n", t.Agent.Model)
if t.Description != "" {
fmt.Printf("Description: %s\n", t.Description)
}