lincli 2026.4.5

Linear CLI — manage issues, projects, cycles, and more from the 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
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
use clap::{Args, Subcommand};
use serde_json::json;

use crate::client::LinearClient;

#[derive(Args, Debug)]
pub struct IssuesArgs {
    #[command(subcommand)]
    pub command: IssuesCommand,
}

#[derive(Subcommand, Debug)]
pub enum IssuesCommand {
    /// Get issue details
    Get {
        /// Issue identifier (e.g., ENG-123)
        identifier: String,
    },
    /// List issues
    List {
        /// Filter by team key or name
        #[arg(long)]
        team: Option<String>,
        /// Filter by workflow state name
        #[arg(long, visible_alias = "status")]
        state: Option<String>,
        /// Filter by assignee name
        #[arg(long)]
        assignee: Option<String>,
        /// Filter by priority (1=Urgent, 2=High, 3=Medium, 4=Low)
        #[arg(long)]
        priority: Option<i32>,
        /// Filter by label name (can be specified multiple times)
        #[arg(long)]
        label: Vec<String>,
        /// Max results
        #[arg(long, default_value = "50")]
        limit: i32,
    },
    /// Search issues by text
    Search {
        /// Search query
        query: String,
        /// Max results
        #[arg(long, default_value = "25")]
        limit: i32,
    },
    /// Create a new issue
    Create {
        /// Team key or name (required)
        #[arg(long)]
        team: String,
        /// Issue title (required)
        #[arg(long)]
        title: String,
        /// Issue description
        #[arg(long)]
        description: Option<String>,
        /// Assignee name
        #[arg(long)]
        assignee: Option<String>,
        /// Priority (1=Urgent, 2=High, 3=Medium, 4=Low)
        #[arg(long)]
        priority: Option<i32>,
        /// Story points estimate
        #[arg(long)]
        estimate: Option<f64>,
        /// Due date (YYYY-MM-DD)
        #[arg(long)]
        due_date: Option<String>,
        /// Label name
        #[arg(long)]
        label: Option<String>,
        /// Parent issue identifier
        #[arg(long)]
        parent: Option<String>,
        /// Project name
        #[arg(long)]
        project: Option<String>,
        /// Initial status
        #[arg(long)]
        status: Option<String>,
    },
    /// Update an issue
    Update {
        /// Issue identifier
        identifier: String,
        /// New status
        #[arg(long)]
        status: Option<String>,
        /// New assignee
        #[arg(long)]
        assignee: Option<String>,
        /// New priority
        #[arg(long)]
        priority: Option<i32>,
        /// New estimate
        #[arg(long)]
        estimate: Option<f64>,
        /// New due date
        #[arg(long)]
        due_date: Option<String>,
        /// Parent issue identifier
        #[arg(long)]
        parent: Option<String>,
        /// Project name
        #[arg(long)]
        project: Option<String>,
        /// Label name
        #[arg(long)]
        label: Option<String>,
        /// Milestone name
        #[arg(long)]
        milestone: Option<String>,
    },
    /// Add a comment to an issue
    Comment {
        /// Issue identifier
        identifier: String,
        /// Comment body
        body: String,
    },
    /// Archive an issue
    Archive {
        /// Issue identifier
        identifier: String,
    },
    /// Find issue associated with a git branch name
    Branch {
        /// Git branch name
        branch_name: String,
    },
    /// Delete an issue
    Delete {
        /// Issue identifier
        identifier: String,
    },
    /// Unarchive an issue
    Unarchive {
        /// Issue identifier
        identifier: String,
    },
    /// Subscribe to an issue
    Subscribe {
        /// Issue identifier
        identifier: String,
    },
    /// Unsubscribe from an issue
    Unsubscribe {
        /// Issue identifier
        identifier: String,
    },
}

pub async fn execute(args: &IssuesArgs, json: bool, debug: bool) -> anyhow::Result<()> {
    let client = LinearClient::new(None, debug)?;

    match &args.command {
        IssuesCommand::Get { identifier } => {
            let query = r#"
                query($id: String!) {
                    issue(id: $id) {
                        id identifier title description
                        state { id name }
                        priority
                        assignee { id displayName }
                        team { id key name }
                        project { id name }
                        estimate
                        dueDate
                        createdAt
                        updatedAt
                        labels { nodes { id name } }
                        parent { id identifier title }
                        comments(first: 10) {
                            nodes {
                                id body createdAt
                                user { displayName }
                            }
                        }
                    }
                }
            "#;
            let variables = json!({ "id": identifier });
            let result = client.query_raw(query, Some(variables)).await?;

            if json {
                crate::output::print_json(&result);
            } else {
                let issue = result
                    .pointer("/data/issue")
                    .ok_or_else(|| anyhow::anyhow!("Issue not found: {identifier}"))?;
                crate::output::detail::print_issue_detail(issue);
            }
        }

        IssuesCommand::List {
            team,
            state,
            assignee,
            priority,
            label,
            limit,
        } => {
            let query = r#"
                query($filter: IssueFilter, $first: Int!, $after: String) {
                    issues(filter: $filter, first: $first, after: $after, orderBy: updatedAt) {
                        nodes {
                            id identifier title
                            state { name }
                            assignee { displayName }
                            priority
                            team { key }
                            labels { nodes { name } }
                        }
                        pageInfo { hasNextPage endCursor }
                    }
                }
            "#;

            let mut filter = json!({});

            let team_key = match team {
                Some(t) => Some(t.clone()),
                None if crate::output::interactive::is_interactive() => {
                    let teams = client.get_teams().await?;
                    let items: Vec<String> = teams
                        .iter()
                        .map(|t| format!("{} ({})", t.name, t.key))
                        .collect();
                    let idx = crate::output::interactive::fuzzy_select("Select team", &items)?;
                    Some(teams[idx].key.clone())
                }
                None => None,
            };

            if let Some(team_key) = &team_key {
                let team_id = client.get_team_id(team_key).await?;
                filter["team"] = json!({ "id": { "eq": team_id } });
            }
            if let Some(state_name) = state {
                filter["state"] = json!({ "name": { "containsIgnoreCase": state_name } });
            }
            if let Some(assignee_name) = assignee {
                let user_id = client.get_user_id(assignee_name).await?;
                filter["assignee"] = json!({ "id": { "eq": user_id } });
            }
            if let Some(p) = priority {
                filter["priority"] = json!({ "eq": p });
            }
            if !label.is_empty() {
                let label_refs: Vec<&str> = label.iter().map(|s| s.as_str()).collect();
                let label_ids = client
                    .get_label_ids(&label_refs, team_key.as_deref())
                    .await?;
                // Use "some" filter: match issues that have at least one of the specified labels
                let or_filters: Vec<serde_json::Value> = label_ids
                    .iter()
                    .map(|id| json!({ "id": { "eq": id } }))
                    .collect();
                filter["labels"] = json!({ "some": { "or": or_filters } });
            }

            let variables = json!({
                "filter": filter,
                "first": limit,
            });
            let result = client.query_raw(query, Some(variables)).await?;

            if json {
                crate::output::print_json(&result);
            } else {
                let nodes = result
                    .pointer("/data/issues/nodes")
                    .and_then(|v| v.as_array());
                match nodes {
                    Some(issues) if !issues.is_empty() => {
                        for issue in issues {
                            crate::output::detail::print_issue_summary(issue);
                        }
                    }
                    _ => {
                        println!("  No issues found.");
                    }
                }
            }
        }

        IssuesCommand::Search { query: term, limit } => {
            let gql = r#"
                query($term: String!, $first: Int) {
                    searchIssues(term: $term, first: $first) {
                        nodes {
                            id identifier title
                            state { name }
                            assignee { displayName }
                            priority
                            team { key }
                        }
                    }
                }
            "#;

            let variables = json!({
                "term": term,
                "first": limit,
            });
            let result = client.query_raw(gql, Some(variables)).await?;

            if json {
                crate::output::print_json(&result);
            } else {
                let nodes = result
                    .pointer("/data/searchIssues/nodes")
                    .and_then(|v| v.as_array());
                match nodes {
                    Some(issues) if !issues.is_empty() => {
                        for issue in issues {
                            crate::output::detail::print_issue_summary(issue);
                        }
                    }
                    _ => {
                        println!("  No issues found.");
                    }
                }
            }
        }

        IssuesCommand::Create {
            team,
            title,
            description,
            assignee,
            priority,
            estimate,
            due_date,
            label,
            parent,
            project,
            status,
        } => {
            let query = r#"
                mutation($input: IssueCreateInput!) {
                    issueCreate(input: $input) {
                        success
                        issue {
                            id identifier title
                            state { name }
                            assignee { displayName }
                            team { key }
                        }
                    }
                }
            "#;

            let team_id = client.get_team_id(team).await?;
            let mut input = json!({
                "teamId": team_id,
                "title": title,
            });

            if let Some(desc) = description {
                input["description"] = json!(desc);
            }
            if let Some(assignee_name) = assignee {
                let user_id = client.get_user_id(assignee_name).await?;
                input["assigneeId"] = json!(user_id);
            }
            if let Some(p) = priority {
                input["priority"] = json!(p);
            }
            if let Some(est) = estimate {
                input["estimate"] = json!(est);
            }
            if let Some(due) = due_date {
                input["dueDate"] = json!(due);
            }
            if let Some(label_name) = label {
                let label_ids = client
                    .get_label_ids(&[label_name.as_str()], Some(team))
                    .await?;
                input["labelIds"] = json!(label_ids);
            }
            if let Some(parent_id) = parent {
                input["parentId"] = json!(parent_id);
            }
            if let Some(project_name) = project {
                let project_id = client.get_project_id(project_name).await?;
                input["projectId"] = json!(project_id);
            }
            if let Some(status_name) = status {
                let state_id = client.get_state_id(team, status_name).await?;
                input["stateId"] = json!(state_id);
            }

            let variables = json!({ "input": input });
            let result = client.query_raw(query, Some(variables)).await?;

            if json {
                crate::output::print_json(&result);
            } else {
                let success = result
                    .pointer("/data/issueCreate/success")
                    .and_then(|v| v.as_bool())
                    .unwrap_or(false);
                if success {
                    let issue = result.pointer("/data/issueCreate/issue");
                    let identifier = issue
                        .and_then(|i| i.get("identifier"))
                        .and_then(|v| v.as_str())
                        .unwrap_or("???");
                    println!(
                        "  {} Created issue {}",
                        crate::output::color::green("OK"),
                        crate::output::color::bold(identifier),
                    );
                } else {
                    println!(
                        "  {} Failed to create issue",
                        crate::output::color::red("ERROR")
                    );
                }
            }
        }

        IssuesCommand::Update {
            identifier,
            status,
            assignee,
            priority,
            estimate,
            due_date,
            parent,
            project,
            label,
            milestone: _,
        } => {
            let query = r#"
                mutation($id: String!, $input: IssueUpdateInput!) {
                    issueUpdate(id: $id, input: $input) {
                        success
                        issue {
                            id identifier title
                            state { name }
                            assignee { displayName }
                            team { key }
                        }
                    }
                }
            "#;

            let mut input = json!({});

            // For status resolution we need the issue's team
            if status.is_some() || label.is_some() {
                // Fetch the issue to get its team key
                let get_query = r#"
                    query($id: String!) {
                        issue(id: $id) {
                            team { key }
                        }
                    }
                "#;
                let get_result = client
                    .query_raw(get_query, Some(json!({ "id": identifier })))
                    .await?;
                let team_key = get_result
                    .pointer("/data/issue/team/key")
                    .and_then(|v| v.as_str())
                    .ok_or_else(|| {
                        anyhow::anyhow!("Could not determine team for issue {identifier}")
                    })?;

                if let Some(status_name) = status {
                    let state_id = client.get_state_id(team_key, status_name).await?;
                    input["stateId"] = json!(state_id);
                }
                if let Some(label_name) = label {
                    let label_ids = client
                        .get_label_ids(&[label_name.as_str()], Some(team_key))
                        .await?;
                    input["labelIds"] = json!(label_ids);
                }
            }

            if let Some(assignee_name) = assignee {
                let user_id = client.get_user_id(assignee_name).await?;
                input["assigneeId"] = json!(user_id);
            }
            if let Some(p) = priority {
                input["priority"] = json!(p);
            }
            if let Some(est) = estimate {
                input["estimate"] = json!(est);
            }
            if let Some(due) = due_date {
                input["dueDate"] = json!(due);
            }
            if let Some(parent_id) = parent {
                input["parentId"] = json!(parent_id);
            }
            if let Some(project_name) = project {
                let project_id = client.get_project_id(project_name).await?;
                input["projectId"] = json!(project_id);
            }

            let variables = json!({
                "id": identifier,
                "input": input,
            });
            let result = client.query_raw(query, Some(variables)).await?;

            if json {
                crate::output::print_json(&result);
            } else {
                let success = result
                    .pointer("/data/issueUpdate/success")
                    .and_then(|v| v.as_bool())
                    .unwrap_or(false);
                if success {
                    println!(
                        "  {} Updated issue {}",
                        crate::output::color::green("OK"),
                        crate::output::color::bold(identifier),
                    );
                } else {
                    println!(
                        "  {} Failed to update issue",
                        crate::output::color::red("ERROR")
                    );
                }
            }
        }

        IssuesCommand::Comment { identifier, body } => {
            let query = r#"
                mutation($input: CommentCreateInput!) {
                    commentCreate(input: $input) {
                        success
                        comment { id body }
                    }
                }
            "#;
            let variables = json!({
                "input": {
                    "issueId": identifier,
                    "body": body,
                }
            });
            let result = client.query_raw(query, Some(variables)).await?;

            if json {
                crate::output::print_json(&result);
            } else {
                let success = result
                    .pointer("/data/commentCreate/success")
                    .and_then(|v| v.as_bool())
                    .unwrap_or(false);
                if success {
                    println!(
                        "  {} Added comment to {}",
                        crate::output::color::green("OK"),
                        crate::output::color::bold(identifier),
                    );
                } else {
                    println!(
                        "  {} Failed to add comment",
                        crate::output::color::red("ERROR")
                    );
                }
            }
        }

        IssuesCommand::Archive { identifier } => {
            if crate::output::interactive::is_interactive()
                && !crate::output::interactive::confirm(&format!("Archive issue {}?", identifier))?
            {
                println!("Cancelled.");
                return Ok(());
            }

            let query = r#"
                mutation($id: String!) {
                    issueArchive(id: $id) {
                        success
                    }
                }
            "#;
            let variables = json!({ "id": identifier });
            let result = client.query_raw(query, Some(variables)).await?;

            if json {
                crate::output::print_json(&result);
            } else {
                let success = result
                    .pointer("/data/issueArchive/success")
                    .and_then(|v| v.as_bool())
                    .unwrap_or(false);
                if success {
                    println!(
                        "  {} Archived issue {}",
                        crate::output::color::green("OK"),
                        crate::output::color::bold(identifier),
                    );
                } else {
                    println!(
                        "  {} Failed to archive issue",
                        crate::output::color::red("ERROR")
                    );
                }
            }
        }

        IssuesCommand::Branch { branch_name } => {
            let query = r#"
                query($branchName: String!) {
                    issueVcsBranchSearch(branchName: $branchName) {
                        id identifier title
                        state { name }
                        assignee { displayName }
                        priority
                        team { key }
                    }
                }
            "#;
            let variables = json!({ "branchName": branch_name });
            let result = client.query_raw(query, Some(variables)).await?;

            if json {
                crate::output::print_json(&result);
            } else {
                let issue = result.pointer("/data/issueVcsBranchSearch");
                match issue {
                    Some(i) if !i.is_null() => {
                        crate::output::detail::print_issue_summary(i);
                    }
                    _ => {
                        println!("  No issue found for branch '{branch_name}'.");
                    }
                }
            }
        }

        IssuesCommand::Delete { identifier } => {
            if crate::output::interactive::is_interactive()
                && !crate::output::interactive::confirm(&format!("Delete issue {}?", identifier))?
            {
                println!("Cancelled.");
                return Ok(());
            }

            let query = r#"
                mutation($id: String!) {
                    issueDelete(id: $id) {
                        success
                    }
                }
            "#;
            let variables = json!({ "id": identifier });
            let result = client.query_raw(query, Some(variables)).await?;

            if json {
                crate::output::print_json(&result);
            } else {
                let success = result
                    .pointer("/data/issueDelete/success")
                    .and_then(|v| v.as_bool())
                    .unwrap_or(false);
                if success {
                    println!(
                        "  {} Deleted issue {}",
                        crate::output::color::green("OK"),
                        crate::output::color::bold(identifier),
                    );
                } else {
                    println!(
                        "  {} Failed to delete issue",
                        crate::output::color::red("ERROR")
                    );
                }
            }
        }

        IssuesCommand::Unarchive { identifier } => {
            let query = r#"
                mutation($id: String!) {
                    issueUnarchive(id: $id) {
                        success
                    }
                }
            "#;
            let variables = json!({ "id": identifier });
            let result = client.query_raw(query, Some(variables)).await?;

            if json {
                crate::output::print_json(&result);
            } else {
                let success = result
                    .pointer("/data/issueUnarchive/success")
                    .and_then(|v| v.as_bool())
                    .unwrap_or(false);
                if success {
                    println!(
                        "  {} Unarchived issue {}",
                        crate::output::color::green("OK"),
                        crate::output::color::bold(identifier),
                    );
                } else {
                    println!(
                        "  {} Failed to unarchive issue",
                        crate::output::color::red("ERROR")
                    );
                }
            }
        }

        IssuesCommand::Subscribe { identifier } => {
            let query = r#"
                mutation($id: String!) {
                    issueSubscribe(id: $id) {
                        success
                    }
                }
            "#;
            let variables = json!({ "id": identifier });
            let result = client.query_raw(query, Some(variables)).await?;

            if json {
                crate::output::print_json(&result);
            } else {
                let success = result
                    .pointer("/data/issueSubscribe/success")
                    .and_then(|v| v.as_bool())
                    .unwrap_or(false);
                if success {
                    println!(
                        "  {} Subscribed to issue {}",
                        crate::output::color::green("OK"),
                        crate::output::color::bold(identifier),
                    );
                } else {
                    println!(
                        "  {} Failed to subscribe to issue",
                        crate::output::color::red("ERROR")
                    );
                }
            }
        }

        IssuesCommand::Unsubscribe { identifier } => {
            let query = r#"
                mutation($id: String!) {
                    issueUnsubscribe(id: $id) {
                        success
                    }
                }
            "#;
            let variables = json!({ "id": identifier });
            let result = client.query_raw(query, Some(variables)).await?;

            if json {
                crate::output::print_json(&result);
            } else {
                let success = result
                    .pointer("/data/issueUnsubscribe/success")
                    .and_then(|v| v.as_bool())
                    .unwrap_or(false);
                if success {
                    println!(
                        "  {} Unsubscribed from issue {}",
                        crate::output::color::green("OK"),
                        crate::output::color::bold(identifier),
                    );
                } else {
                    println!(
                        "  {} Failed to unsubscribe from issue",
                        crate::output::color::red("ERROR")
                    );
                }
            }
        }
    }

    Ok(())
}