diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-02-24 02:01:17 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-02-24 02:01:17 +0000 |
| commit | f27d4f7ef3949627c9cb1077f90135a5268b7631 (patch) | |
| tree | 3f6c2dcca7ba33d0a1d377b50e43eb08834bf412 /internal/cli/root.go | |
| parent | 0377c06310cf92cfa477917f35f5e0755c09f063 (diff) | |
Add logs CLI subcommand to tail execution output
Adds `claudomator logs <execution-id>` to stream or display stdout logs
from a past or running execution. Includes unit tests for the command.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'internal/cli/root.go')
| -rw-r--r-- | internal/cli/root.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/cli/root.go b/internal/cli/root.go index 56e9aaa..4f8dad6 100644 --- a/internal/cli/root.go +++ b/internal/cli/root.go @@ -30,6 +30,7 @@ func NewRootCmd() *cobra.Command { newListCmd(), newStatusCmd(), newInitCmd(), + newLogsCmd(), ) return cmd |
