//! CLI value parsers for fail-fast validation at command line boundaries.
//!//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.
usesystemprompt_identifiers::{Email, ProfileName};pubfnparse_profile_name(s:&str)->Result<ProfileName, String>{ProfileName::try_new(s).map_err(|e|e.to_string())}pubfnparse_email(s:&str)->Result<Email, String>{Email::try_new(s).map_err(|e|e.to_string())}