log streams in watched cli executions

This commit is contained in:
2026-04-07 08:55:27 -05:00
parent f93e9229d2
commit ed74dfad6c
15 changed files with 1368 additions and 153 deletions

View File

@@ -109,7 +109,7 @@ cargo test --package attune-cli --tests -- --test-threads=1
- ✅ Execute with multiple parameters
- ✅ Execute with JSON parameters
- ✅ Execute without parameters
- ✅ Execute with --wait flag
- ✅ Execute with --watch flag
- ✅ Execute with --async flag
- ✅ List actions by pack
- ✅ Invalid parameter formats
@@ -287,4 +287,4 @@ For more information:
- [CLI Usage Guide](../README.md)
- [CLI Profile Management](../../../docs/cli-profiles.md)
- [API Documentation](../../../docs/api-*.md)
- [Main Project README](../../../README.md)
- [Main Project README](../../../README.md)

View File

@@ -324,7 +324,7 @@ async fn test_action_execute_wait_for_completion() {
.arg("core.echo")
.arg("--param")
.arg("message=test")
.arg("--wait");
.arg("--watch");
cmd.assert()
.success()
@@ -476,7 +476,7 @@ async fn test_action_execute_async_flag() {
.arg("action")
.arg("execute")
.arg("core.long_running");
// Note: default behavior is async (no --wait), so no --async flag needed
// Note: default behavior is async (no --watch), so no --async flag needed
cmd.assert()
.success()