Awesome Reviewers

Handle absence/unsupported data explicitly and defensively: return None (or a clear error) when a value cannot be produced faithfully, and don’t “auto-fix” by inventing defaults, creating missing prerequisites, or silently dropping problematic entries. This prevents misleading “success” states and subtle contract violations.

Guidelines:

Example pattern (Rust):

pub(crate) fn hostname() -> Option<String> {
    // Return None when the fallback target is unsupported
    None
}

pub(crate) fn install_agent() -> std::io::Result<()> {
    let dir = agent_config_dir()?;
    if !dir.is_dir() {
        return Err(std::io::Error::other(format!(
            "agent config directory not found at {}. install agent first",
            dir.display()
        )));
    }
    // Only proceed when the prerequisite truly exists
    Ok(())
}

fn serialize_env_entry(value: &OsStr) -> std::io::Result<String> {
    // If the platform serialization cannot represent the value faithfully,
    // return an error instead of dropping it.
    Err(std::io::Error::other("cannot faithfully serialize environment value"))
}