thirdpass 0.3.3

A multi-ecosystem package code review system.
use crate::common::config::Config;
use anyhow::Result;
mod fs;

pub fn ensure() -> Result<()> {
    if fs::is_complete()? {
        ensure_core_config()?;
        return Ok(());
    }

    fs::setup(false)?;

    ensure_core_config()?;
    Ok(())
}

fn ensure_core_config() -> Result<()> {
    let mut config = Config::load()?;
    let mut changed = false;
    if config.core.client_id.is_empty() {
        config.core.client_id = uuid::Uuid::new_v4().to_hyphenated().to_string();
        changed = true;
    }
    if config.core.api_base.is_empty() {
        config.core.api_base = "https://thirdpass.dev/api".to_string();
        changed = true;
    }
    if config.review_tool.agent.is_none() {
        config.review_tool.agent = Some("codex".to_string());
        changed = true;
    }
    if config.review_tool.agent_model.is_none() {
        config.review_tool.agent_model = Some("gpt-5.4".to_string());
        changed = true;
    }
    if config.review_tool.agent_reasoning_effort.is_none() {
        config.review_tool.agent_reasoning_effort = Some("high".to_string());
        changed = true;
    }
    if changed {
        config.dump()?;
    }
    Ok(())
}