pub fn validate_session_id_flags(
parsed: &Args,
) -> Result<(), FlagValidationError>Expand description
--session-id cannot combine with --session/--continue/--resume.
Mirrors validateSessionIdFlags (main.ts:220-241). The ID syntax check
itself is delegated to SessionManager/assert_valid_session_id at
session-construction time; this validator only covers the CLI-level
conflicts.
ยงErrors
Returns an error when --session-id is combined with --session,
--continue, or --resume.