From f5ed563a42d0c84c68303983144b0076431146e3 Mon Sep 17 00:00:00 2001 From: "Babak K. Shandiz" Date: Tue, 16 Sep 2025 13:18:26 +0100 Subject: [PATCH] docs(agent-task create): add example for `--follow` flag Signed-off-by: Babak K. Shandiz --- pkg/cmd/agent-task/create/create.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/cmd/agent-task/create/create.go b/pkg/cmd/agent-task/create/create.go index 7186f7d59..8b8084a1f 100644 --- a/pkg/cmd/agent-task/create/create.go +++ b/pkg/cmd/agent-task/create/create.go @@ -83,6 +83,9 @@ func NewCmdCreate(f *cmdutil.Factory, runF func(*CreateOptions) error) *cobra.Co # Create a task from an inline description $ gh agent-task create "build me a new app" + # Create a task from an inline description and follow logs + $ gh agent-task create "build me a new app" --follow + # Create a task from a file $ gh agent-task create -F task-desc.md