linear-cli 0.3.13

A powerful CLI for Linear.app - manage issues, projects, cycles, and more from your terminal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
use anyhow::Result;
use clap::Subcommand;
use colored::Colorize;
use futures::stream::{self, StreamExt};
use serde_json::json;

use crate::api::{resolve_team_id, LinearClient};
use crate::output::{print_json, print_json_owned, OutputOptions};

#[derive(Subcommand)]
pub enum SprintCommands {
    /// Show current sprint status and progress
    Status {
        /// Team key, name, or ID
        #[arg(short, long)]
        team: String,
    },
    /// Show sprint progress (completion %)
    Progress {
        /// Team key, name, or ID
        #[arg(short, long)]
        team: String,
    },
    /// List issues planned for next cycle
    Plan {
        /// Team key, name, or ID
        #[arg(short, long)]
        team: String,
    },
    /// Move incomplete issues from current cycle to next
    CarryOver {
        /// Team key, name, or ID
        #[arg(short, long)]
        team: String,
        /// Skip confirmation
        #[arg(short, long)]
        force: bool,
    },
}

pub async fn handle(cmd: SprintCommands, output: &OutputOptions) -> Result<()> {
    match cmd {
        SprintCommands::Status { team } => sprint_status(&team, output).await,
        SprintCommands::Progress { team } => sprint_progress(&team, output).await,
        SprintCommands::Plan { team } => sprint_plan(&team, output).await,
        SprintCommands::CarryOver { team, force } => sprint_carry_over(&team, force, output).await,
    }
}

async fn sprint_status(team: &str, output: &OutputOptions) -> Result<()> {
    let client = LinearClient::new()?;
    let team_id = resolve_team_id(&client, team, &output.cache).await?;

    let query = r#"
        query($teamId: String!) {
            team(id: $teamId) {
                name
                activeCycle {
                    id name number
                    startsAt endsAt
                    progress
                    scopeHistory
                    issues(first: 250) {
                        nodes {
                            id identifier title
                            state { name type }
                            priority
                            assignee { name }
                            estimate
                            createdAt
                        }
                    }
                }
            }
        }
    "#;

    let result = client
        .query(query, Some(json!({ "teamId": team_id })))
        .await?;
    let team_data = &result["data"]["team"];

    if team_data.is_null() {
        anyhow::bail!("Team not found: {}", team);
    }

    let team_name = team_data["name"].as_str().unwrap_or(team);
    let cycle = &team_data["activeCycle"];

    if cycle.is_null() {
        if output.is_json() || output.has_template() {
            print_json_owned(
                json!({ "team": team_name, "activeCycle": null }),
                output,
            )?;
        } else {
            println!("No active cycle for team '{}'.", team_name);
        }
        return Ok(());
    }

    if output.is_json() || output.has_template() {
        print_json(cycle, output)?;
        return Ok(());
    }

    let cycle_name = cycle["name"]
        .as_str()
        .filter(|s| !s.is_empty())
        .unwrap_or("(unnamed)");
    let cycle_number = cycle["number"].as_u64().unwrap_or(0);
    let progress = cycle["progress"].as_f64().unwrap_or(0.0);
    let start_date = cycle["startsAt"]
        .as_str()
        .map(|s| s.get(..10).unwrap_or(s))
        .unwrap_or("-");
    let end_date = cycle["endsAt"]
        .as_str()
        .map(|s| s.get(..10).unwrap_or(s))
        .unwrap_or("-");

    let issues = cycle["issues"]["nodes"].as_array();

    let (total, completed, in_progress, scope_change) = if let Some(issues) = issues {
        let total = issues.len();
        let completed = issues
            .iter()
            .filter(|i| i["state"]["type"].as_str() == Some("completed"))
            .count();
        let in_progress = issues
            .iter()
            .filter(|i| i["state"]["type"].as_str() == Some("started"))
            .count();

        // Scope change: compare current total to first entry in scopeHistory
        let scope_change = cycle["scopeHistory"]
            .as_array()
            .and_then(|h| h.first())
            .and_then(|v| v.as_f64())
            .map(|initial| total as i64 - initial as i64)
            .unwrap_or(0);

        (total, completed, in_progress, scope_change)
    } else {
        (0, 0, 0, 0)
    };

    println!(
        "{}",
        format!("Sprint {} - {}", cycle_number, cycle_name).bold()
    );
    println!("{}", "-".repeat(40));
    println!("Team:        {}", team_name);
    println!("Dates:       {} to {}", start_date, end_date);
    println!("Progress:    {:.0}%", progress * 100.0);
    println!();
    println!("Issues:      {}", total);
    println!("  Completed: {}", completed.to_string().green());
    println!("  In Prog:   {}", in_progress.to_string().yellow());
    println!(
        "  Remaining: {}",
        (total - completed - in_progress).to_string().dimmed()
    );

    if scope_change != 0 {
        let sign = if scope_change > 0 { "+" } else { "" };
        println!(
            "  Scope:     {} issues",
            format!("{}{}", sign, scope_change).red()
        );
    }

    // Show estimate totals if any issues have estimates
    if let Some(issues) = issues {
        let total_estimate: f64 = issues
            .iter()
            .filter_map(|i| i["estimate"].as_f64())
            .sum();
        let completed_estimate: f64 = issues
            .iter()
            .filter(|i| i["state"]["type"].as_str() == Some("completed"))
            .filter_map(|i| i["estimate"].as_f64())
            .sum();

        if total_estimate > 0.0 {
            println!();
            println!(
                "Estimates:   {:.0} / {:.0} points",
                completed_estimate, total_estimate
            );
        }
    }

    Ok(())
}

async fn sprint_progress(team: &str, output: &OutputOptions) -> Result<()> {
    let client = LinearClient::new()?;
    let team_id = resolve_team_id(&client, team, &output.cache).await?;

    let query = r#"
        query($teamId: String!) {
            team(id: $teamId) {
                name
                activeCycle {
                    id name number progress
                    issues(first: 250) {
                        nodes {
                            id
                            state { type }
                            estimate
                        }
                    }
                }
            }
        }
    "#;

    let result = client
        .query(query, Some(json!({ "teamId": team_id })))
        .await?;
    let team_data = &result["data"]["team"];

    if team_data.is_null() {
        anyhow::bail!("Team not found: {}", team);
    }

    let cycle = &team_data["activeCycle"];

    if cycle.is_null() {
        if output.is_json() || output.has_template() {
            print_json_owned(
                json!({ "team": team_data["name"], "activeCycle": null }),
                output,
            )?;
        } else {
            println!(
                "No active cycle for team '{}'.",
                team_data["name"].as_str().unwrap_or(team)
            );
        }
        return Ok(());
    }

    let issues = cycle["issues"]["nodes"].as_array();
    let cycle_number = cycle["number"].as_u64().unwrap_or(0);
    let progress = cycle["progress"].as_f64().unwrap_or(0.0);

    let (total, completed, in_progress, todo) = if let Some(issues) = issues {
        let total = issues.len();
        let completed = issues
            .iter()
            .filter(|i| i["state"]["type"].as_str() == Some("completed"))
            .count();
        let in_progress = issues
            .iter()
            .filter(|i| i["state"]["type"].as_str() == Some("started"))
            .count();
        let todo = total - completed - in_progress;
        (total, completed, in_progress, todo)
    } else {
        (0, 0, 0, 0)
    };

    if output.is_json() || output.has_template() {
        let total_estimate: f64 = issues
            .map(|arr| arr.iter().filter_map(|i| i["estimate"].as_f64()).sum())
            .unwrap_or(0.0);
        let completed_estimate: f64 = issues
            .map(|arr| {
                arr.iter()
                    .filter(|i| i["state"]["type"].as_str() == Some("completed"))
                    .filter_map(|i| i["estimate"].as_f64())
                    .sum()
            })
            .unwrap_or(0.0);

        print_json_owned(
            json!({
                "cycle_number": cycle_number,
                "progress": progress,
                "total": total,
                "completed": completed,
                "in_progress": in_progress,
                "todo": todo,
                "total_estimate": total_estimate,
                "completed_estimate": completed_estimate,
            }),
            output,
        )?;
        return Ok(());
    }

    // Visual progress bar
    let bar_width: usize = 20;
    let filled = (progress * bar_width as f64).round() as usize;
    let empty = bar_width.saturating_sub(filled);
    let bar = format!(
        "[{}{}]",
        "\u{2588}".repeat(filled).green(),
        "\u{2591}".repeat(empty).dimmed()
    );

    println!(
        "Sprint {}: {} {:.0}% ({}/{} issues)",
        cycle_number, bar, progress * 100.0, completed, total
    );
    println!(
        "  Completed: {}  In Progress: {}  Todo: {}",
        completed.to_string().green(),
        in_progress.to_string().yellow(),
        todo.to_string().dimmed()
    );

    // Estimate summary
    if let Some(issues) = issues {
        let total_estimate: f64 = issues
            .iter()
            .filter_map(|i| i["estimate"].as_f64())
            .sum();
        let completed_estimate: f64 = issues
            .iter()
            .filter(|i| i["state"]["type"].as_str() == Some("completed"))
            .filter_map(|i| i["estimate"].as_f64())
            .sum();

        if total_estimate > 0.0 {
            println!(
                "  Estimate: {:.0} points completed / {:.0} total",
                completed_estimate, total_estimate
            );
        }
    }

    Ok(())
}

async fn sprint_plan(team: &str, output: &OutputOptions) -> Result<()> {
    let client = LinearClient::new()?;
    let team_id = resolve_team_id(&client, team, &output.cache).await?;

    let query = r#"
        query($teamId: String!) {
            team(id: $teamId) {
                name
                upcomingCycles(first: 1) {
                    nodes {
                        id name number startsAt endsAt
                        issues(first: 250) {
                            nodes {
                                id identifier title priority
                                state { name }
                                assignee { name }
                                estimate
                            }
                        }
                    }
                }
            }
        }
    "#;

    let result = client
        .query(query, Some(json!({ "teamId": team_id })))
        .await?;
    let team_data = &result["data"]["team"];

    if team_data.is_null() {
        anyhow::bail!("Team not found: {}", team);
    }

    let team_name = team_data["name"].as_str().unwrap_or(team);
    let cycles = team_data["upcomingCycles"]["nodes"].as_array();

    let next_cycle = cycles.and_then(|arr| arr.first());

    if next_cycle.is_none() {
        if output.is_json() || output.has_template() {
            print_json_owned(
                json!({ "team": team_name, "nextCycle": null }),
                output,
            )?;
        } else {
            println!("No upcoming cycle for team '{}'.", team_name);
        }
        return Ok(());
    }

    let cycle = next_cycle.unwrap();

    if output.is_json() || output.has_template() {
        print_json(cycle, output)?;
        return Ok(());
    }

    let cycle_name = cycle["name"]
        .as_str()
        .filter(|s| !s.is_empty())
        .unwrap_or("(unnamed)");
    let cycle_number = cycle["number"].as_u64().unwrap_or(0);
    let start_date = cycle["startsAt"]
        .as_str()
        .map(|s| s.get(..10).unwrap_or(s))
        .unwrap_or("-");
    let end_date = cycle["endsAt"]
        .as_str()
        .map(|s| s.get(..10).unwrap_or(s))
        .unwrap_or("-");

    println!(
        "{}",
        format!("Next Sprint {} - {}", cycle_number, cycle_name).bold()
    );
    println!("{}", "-".repeat(40));
    println!("Dates: {} to {}", start_date, end_date);

    let issues = cycle["issues"]["nodes"].as_array();

    if let Some(issues) = issues {
        if issues.is_empty() {
            println!("\nNo issues planned yet.");
        } else {
            let total_estimate: f64 = issues
                .iter()
                .filter_map(|i| i["estimate"].as_f64())
                .sum();

            println!("\n{} ({} issues)", "Planned Issues:".bold(), issues.len());
            if total_estimate > 0.0 {
                println!("Total estimate: {:.0} points", total_estimate);
            }
            println!();

            for issue in issues {
                let identifier = issue["identifier"].as_str().unwrap_or("");
                let title = issue["title"].as_str().unwrap_or("");
                let state = issue["state"]["name"].as_str().unwrap_or("-");
                let assignee = issue["assignee"]["name"].as_str().unwrap_or("-");
                let estimate = issue["estimate"]
                    .as_f64()
                    .map(|e| format!(" [{:.0}p]", e))
                    .unwrap_or_default();

                println!(
                    "  {} {}{} [{}] ({})",
                    identifier.cyan(),
                    title,
                    estimate.dimmed(),
                    state,
                    assignee
                );
            }
        }
    }

    Ok(())
}

async fn sprint_carry_over(team: &str, force: bool, output: &OutputOptions) -> Result<()> {
    let client = LinearClient::new()?;
    let team_id = resolve_team_id(&client, team, &output.cache).await?;

    // Get current cycle's incomplete issues
    let current_query = r#"
        query($teamId: String!) {
            team(id: $teamId) {
                name
                activeCycle {
                    id name number
                    issues(first: 250) {
                        nodes {
                            id identifier title
                            state { name type }
                        }
                    }
                }
            }
        }
    "#;

    let result = client
        .query(current_query, Some(json!({ "teamId": team_id })))
        .await?;
    let team_data = &result["data"]["team"];

    if team_data.is_null() {
        anyhow::bail!("Team not found: {}", team);
    }

    let team_name = team_data["name"].as_str().unwrap_or(team);
    let current_cycle = &team_data["activeCycle"];

    if current_cycle.is_null() {
        anyhow::bail!("No active cycle for team '{}'.", team_name);
    }

    // Get next cycle
    let next_query = r#"
        query($teamId: String!) {
            team(id: $teamId) {
                upcomingCycles(first: 1) {
                    nodes { id name number }
                }
            }
        }
    "#;

    let next_result = client
        .query(next_query, Some(json!({ "teamId": team_id })))
        .await?;
    let next_cycles = next_result["data"]["team"]["upcomingCycles"]["nodes"].as_array();
    let next_cycle = next_cycles
        .and_then(|arr| arr.first())
        .ok_or_else(|| anyhow::anyhow!("No upcoming cycle to carry issues over to."))?;

    let next_cycle_id = next_cycle["id"]
        .as_str()
        .ok_or_else(|| anyhow::anyhow!("Could not get next cycle ID"))?;

    // Find incomplete issues (not completed, not canceled)
    let incomplete: Vec<&serde_json::Value> = current_cycle["issues"]["nodes"]
        .as_array()
        .map(|arr| {
            arr.iter()
                .filter(|i| {
                    let state_type = i["state"]["type"].as_str().unwrap_or("");
                    state_type != "completed" && state_type != "canceled"
                })
                .collect()
        })
        .unwrap_or_default();

    if incomplete.is_empty() {
        if output.is_json() || output.has_template() {
            print_json_owned(
                json!({
                    "carried_over": 0,
                    "message": "No incomplete issues to carry over"
                }),
                output,
            )?;
        } else {
            println!("No incomplete issues in the current cycle.");
        }
        return Ok(());
    }

    // Confirmation
    if !force && !crate::is_yes() {
        println!(
            "Will move {} incomplete issues from current cycle to next cycle:",
            incomplete.len()
        );
        for issue in &incomplete {
            let identifier = issue["identifier"].as_str().unwrap_or("");
            let title = issue["title"].as_str().unwrap_or("");
            let state = issue["state"]["name"].as_str().unwrap_or("-");
            println!("  {} {} [{}]", identifier.cyan(), title, state);
        }
        println!();
        anyhow::bail!(
            "Use --force or --yes to confirm. {} issues would be moved.",
            incomplete.len()
        );
    }

    // Move issues in parallel
    let issue_ids: Vec<String> = incomplete
        .iter()
        .filter_map(|i| i["id"].as_str().map(|s| s.to_string()))
        .collect();

    let mutation = r#"
        mutation($id: String!, $input: IssueUpdateInput!) {
            issueUpdate(id: $id, input: $input) {
                success
                issue { id identifier }
            }
        }
    "#;

    let results: Vec<(String, bool)> = stream::iter(issue_ids.iter())
        .map(|issue_id| {
            let client = &client;
            let id = issue_id.clone();
            let cycle_id = next_cycle_id.to_string();
            async move {
                let result = client
                    .mutate(
                        mutation,
                        Some(json!({ "id": id, "input": { "cycleId": cycle_id } })),
                    )
                    .await;
                let success = result
                    .as_ref()
                    .map(|r| {
                        r["data"]["issueUpdate"]["success"]
                            .as_bool()
                            .unwrap_or(false)
                    })
                    .unwrap_or(false);
                (id, success)
            }
        })
        .buffer_unordered(10)
        .collect()
        .await;

    let moved = results.iter().filter(|(_, s)| *s).count();
    let failed = results.iter().filter(|(_, s)| !*s).count();

    if output.is_json() || output.has_template() {
        print_json_owned(
            json!({
                "carried_over": moved,
                "failed": failed,
                "next_cycle": next_cycle["name"],
                "next_cycle_number": next_cycle["number"],
            }),
            output,
        )?;
    } else {
        println!(
            "{} Moved {} issues to next cycle ({})",
            "+".green(),
            moved,
            next_cycle["name"]
                .as_str()
                .filter(|s| !s.is_empty())
                .unwrap_or("upcoming")
        );
        if failed > 0 {
            println!("{} {} issues failed to move", "!".red(), failed);
        }
    }

    Ok(())
}