prctrl 1.0.0

Terminal-native GitHub PR management. Stay on top of code reviews without leaving your terminal.
Documentation
use anyhow::{Context, Result};
use std::process::{Command, Stdio};

const PRCTRL_DOCS: &str = r#"# PRCtrl CLI Documentation

## Overview
PRCtrl is a GitHub PR review management CLI tool.

## Commands
- list, mine, delegate, stats, clean, monitor, stop
- diff, info, timeline, assign, unassign, comment, approve, claim
- open, files, report, search, filter, ci, conflicts, labels
- history, notify, summary, urgent, focus, health, top, quick
- catchup, age, size, cat, digest, trends, velocity
- snooze, chase, estimate, export, ready, compare
- follow, blocked, ping, stack, chat, config

## Configuration
Config file: ~/.prctrl/config.toml

## Examples
prctrl list
prctrl list --priority --repo backend
prctrl delegate --all
prctrl approve --pr 123
prctrl chat --pr 123
"#;

/// Check if the Claude CLI is installed
pub fn get_backend() -> Option<&'static str> {
    if Command::new("claude")
        .arg("--version")
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .status()
        .is_ok()
    {
        Some("claude")
    } else {
        None
    }
}

pub fn start_chat(_backend: &str, pr_number: Option<u64>) -> Result<()> {
    // Note: Claude CLI existence is already checked by get_backend() before calling this function.

    let system_prompt = if let Some(pr) = pr_number {
        format!(r#"You are a helpful PR review assistant. The user is asking about PR #{}.

{}

When suggesting commands, use format: `prctrl <command>`
"#, pr, PRCTRL_DOCS)
    } else {
        format!(r#"You are a helpful PR review assistant.

{}

When suggesting commands, use format: `prctrl <command>`
"#, PRCTRL_DOCS)
    };

    println!("\n🤖 PRCtrl Chat - Starting Claude...\n");
    println!("Type your questions, or exit to quit.\n\n");

    // Launch Claude Code interactively
    let status = Command::new("claude")
        .arg("--model")
        .arg("sonnet")
        .arg("--append-system-prompt")
        .arg(&system_prompt)
        .status()
        .context("Failed to run Claude")?;
    
    if !status.success() {
        eprintln!("\n⚠️  Claude exited with status: {}", status);
    }

    Ok(())
}