You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(cortex-cli): address validation feedback from PR review
- Fix clippy::bind_instead_of_map in debug_cmd/handlers/config.rs
by replacing and_then() with map() since closure always returns Some()
- Fix duplicate error output in alias_cmd.rs and plugin_cmd.rs
by using std::process::exit(1) after JSON error output instead of bail!()
to avoid duplicating error message to stderr
- Replace raw .unwrap() calls with safer patterns in dag_cmd/helpers.rs
using if-let guards and Option::and_then() instead of panicking
- Improve is_read_only_command() in exec_cmd/autonomy.rs to use
exact word matching instead of prefix matching to prevent false
positives (e.g., 'catfile' no longer matches 'cat')
0 commit comments