jira-cli 0.3.13

Agent-friendly Jira CLI with JSON output, structured exit codes, and schema introspection
Documentation
use crate::api::{ApiError, JiraClient};
use crate::output::OutputConfig;

/// List all Jira Agile boards.
pub async fn list(client: &JiraClient, out: &OutputConfig) -> Result<(), ApiError> {
    let boards = client.list_boards().await?;

    if out.json {
        out.print_data(
            &serde_json::to_string_pretty(&serde_json::json!({
                "total": boards.len(),
                "boards": boards.iter().map(|b| serde_json::json!({
                    "id": b.id,
                    "name": b.name,
                    "type": b.board_type,
                })).collect::<Vec<_>>(),
            }))
            .expect("failed to serialize JSON"),
        );
        return Ok(());
    }

    if boards.is_empty() {
        out.print_message("No boards found.");
        return Ok(());
    }

    for b in &boards {
        println!("{:>6}  {:<30}  {}", b.id, b.name, b.board_type);
    }
    Ok(())
}