Problem
acpctl create session returns immediately after creation. To see output, users must copy the session ID and run a second command:
acpctl create session --name test --prompt "hello" --repo-url https://github.com/...
# returns ID, then manually:
acpctl session messages <id> -F
Proposed Solution
Add -f and -F flags to create session that create the session and immediately begin streaming messages:
acpctl create session --name test --prompt "hello" -F
-f — stream until turn ends (matches session messages -f behavior)
-F — continuous follow until Ctrl+C (matches session messages -F behavior)
Should reuse the existing session messages streaming logic.
Context
Tracked internally as platform-dab. Related to #1575 (--name/--latest on session messages), which together would make the CLI workflow much smoother.
Problem
acpctl create sessionreturns immediately after creation. To see output, users must copy the session ID and run a second command:Proposed Solution
Add
-fand-Fflags tocreate sessionthat create the session and immediately begin streaming messages:-f— stream until turn ends (matchessession messages -fbehavior)-F— continuous follow until Ctrl+C (matchessession messages -Fbehavior)Should reuse the existing
session messagesstreaming logic.Context
Tracked internally as
platform-dab. Related to #1575 (--name/--lateston session messages), which together would make the CLI workflow much smoother.