linear-cli-agents 0.6.0 → 0.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/README.md +68 -1
  2. package/bin/dev.js +0 -0
  3. package/dist/commands/documents/create.d.ts +13 -0
  4. package/dist/commands/documents/create.js +68 -0
  5. package/dist/commands/documents/delete.d.ts +9 -0
  6. package/dist/commands/documents/delete.js +32 -0
  7. package/dist/commands/documents/get.d.ts +12 -0
  8. package/dist/commands/documents/get.js +79 -0
  9. package/dist/commands/documents/list.d.ts +12 -0
  10. package/dist/commands/documents/list.js +105 -0
  11. package/dist/commands/documents/update.d.ts +16 -0
  12. package/dist/commands/documents/update.js +75 -0
  13. package/dist/commands/info.js +174 -7
  14. package/dist/commands/initiatives/archive.d.ts +12 -0
  15. package/dist/commands/initiatives/archive.js +44 -0
  16. package/dist/commands/initiatives/create.d.ts +15 -0
  17. package/dist/commands/initiatives/create.js +84 -0
  18. package/dist/commands/initiatives/delete.d.ts +9 -0
  19. package/dist/commands/initiatives/delete.js +32 -0
  20. package/dist/commands/initiatives/get.d.ts +12 -0
  21. package/dist/commands/initiatives/get.js +90 -0
  22. package/dist/commands/initiatives/list.d.ts +11 -0
  23. package/dist/commands/initiatives/list.js +135 -0
  24. package/dist/commands/initiatives/update.d.ts +18 -0
  25. package/dist/commands/initiatives/update.js +90 -0
  26. package/dist/commands/issues/bulk-update.d.ts +2 -0
  27. package/dist/commands/issues/bulk-update.js +10 -0
  28. package/dist/commands/issues/create.d.ts +2 -0
  29. package/dist/commands/issues/create.js +10 -0
  30. package/dist/commands/issues/get.d.ts +1 -0
  31. package/dist/commands/issues/get.js +19 -1
  32. package/dist/commands/issues/update.d.ts +2 -0
  33. package/dist/commands/issues/update.js +12 -0
  34. package/dist/commands/projects/create.d.ts +1 -0
  35. package/dist/commands/projects/create.js +10 -0
  36. package/dist/commands/projects/update.d.ts +1 -0
  37. package/dist/commands/projects/update.js +7 -0
  38. package/dist/commands/upload.d.ts +13 -0
  39. package/dist/commands/upload.js +117 -0
  40. package/oclif.manifest.json +1362 -625
  41. package/package.json +23 -14
@@ -351,6 +351,52 @@
351
351
  "setup.js"
352
352
  ]
353
353
  },
354
+ "upload": {
355
+ "aliases": [],
356
+ "args": {
357
+ "file": {
358
+ "description": "Path to the file to upload",
359
+ "name": "file",
360
+ "required": true
361
+ }
362
+ },
363
+ "description": "Upload a file to Linear and get the asset URL",
364
+ "examples": [
365
+ "<%= config.bin %> upload ./screenshot.png",
366
+ "<%= config.bin %> upload ./document.pdf --content-type application/pdf",
367
+ "<%= config.bin %> upload ./image.png --markdown"
368
+ ],
369
+ "flags": {
370
+ "content-type": {
371
+ "description": "Override the content type (MIME type)",
372
+ "name": "content-type",
373
+ "hasDynamicHelp": false,
374
+ "multiple": false,
375
+ "type": "option"
376
+ },
377
+ "markdown": {
378
+ "char": "m",
379
+ "description": "Output as markdown link/image",
380
+ "name": "markdown",
381
+ "allowNo": false,
382
+ "type": "boolean"
383
+ }
384
+ },
385
+ "hasDynamicHelp": false,
386
+ "hiddenAliases": [],
387
+ "id": "upload",
388
+ "pluginAlias": "linear-cli-agents",
389
+ "pluginName": "linear-cli-agents",
390
+ "pluginType": "core",
391
+ "strict": true,
392
+ "enableJsonFlag": false,
393
+ "isESM": true,
394
+ "relativePath": [
395
+ "dist",
396
+ "commands",
397
+ "upload.js"
398
+ ]
399
+ },
354
400
  "auth:login": {
355
401
  "aliases": [],
356
402
  "args": {
@@ -448,14 +494,19 @@
448
494
  "status.js"
449
495
  ]
450
496
  },
451
- "cycles:current": {
497
+ "comments:add": {
452
498
  "aliases": [],
453
- "args": {},
454
- "description": "Get the current active cycle for a team",
499
+ "args": {
500
+ "issue": {
501
+ "description": "Issue ID or identifier (e.g., ENG-123)",
502
+ "name": "issue",
503
+ "required": true
504
+ }
505
+ },
506
+ "description": "Add a comment to an issue",
455
507
  "examples": [
456
- "<%= config.bin %> cycles current --team ENG",
457
- "<%= config.bin %> cycles current --team-id TEAM_ID",
458
- "<%= config.bin %> cycles current --team ENG --format table"
508
+ "<%= config.bin %> comments add ENG-123 --body \"This is a comment\"",
509
+ "<%= config.bin %> comments add ENG-123 --body \"Looks good!\" --format table"
459
510
  ],
460
511
  "flags": {
461
512
  "format": {
@@ -472,22 +523,11 @@
472
523
  ],
473
524
  "type": "option"
474
525
  },
475
- "team-id": {
476
- "description": "Team ID",
477
- "exclusive": [
478
- "team"
479
- ],
480
- "name": "team-id",
481
- "hasDynamicHelp": false,
482
- "multiple": false,
483
- "type": "option"
484
- },
485
- "team": {
486
- "description": "Team key (e.g., ENG)",
487
- "exclusive": [
488
- "team-id"
489
- ],
490
- "name": "team",
526
+ "body": {
527
+ "char": "b",
528
+ "description": "Comment body (supports markdown)",
529
+ "name": "body",
530
+ "required": true,
491
531
  "hasDynamicHelp": false,
492
532
  "multiple": false,
493
533
  "type": "option"
@@ -495,7 +535,7 @@
495
535
  },
496
536
  "hasDynamicHelp": false,
497
537
  "hiddenAliases": [],
498
- "id": "cycles:current",
538
+ "id": "comments:add",
499
539
  "pluginAlias": "linear-cli-agents",
500
540
  "pluginName": "linear-cli-agents",
501
541
  "pluginType": "core",
@@ -505,23 +545,22 @@
505
545
  "relativePath": [
506
546
  "dist",
507
547
  "commands",
508
- "cycles",
509
- "current.js"
548
+ "comments",
549
+ "add.js"
510
550
  ]
511
551
  },
512
- "cycles:get": {
552
+ "comments:delete": {
513
553
  "aliases": [],
514
554
  "args": {
515
555
  "id": {
516
- "description": "Cycle ID",
556
+ "description": "Comment ID",
517
557
  "name": "id",
518
558
  "required": true
519
559
  }
520
560
  },
521
- "description": "Get cycle (sprint) details",
561
+ "description": "Delete a comment",
522
562
  "examples": [
523
- "<%= config.bin %> cycles get CYCLE_ID",
524
- "<%= config.bin %> cycles get CYCLE_ID --format table"
563
+ "<%= config.bin %> comments delete COMMENT_ID"
525
564
  ],
526
565
  "flags": {
527
566
  "format": {
@@ -541,7 +580,7 @@
541
580
  },
542
581
  "hasDynamicHelp": false,
543
582
  "hiddenAliases": [],
544
- "id": "cycles:get",
583
+ "id": "comments:delete",
545
584
  "pluginAlias": "linear-cli-agents",
546
585
  "pluginName": "linear-cli-agents",
547
586
  "pluginType": "core",
@@ -551,20 +590,23 @@
551
590
  "relativePath": [
552
591
  "dist",
553
592
  "commands",
554
- "cycles",
555
- "get.js"
593
+ "comments",
594
+ "delete.js"
556
595
  ]
557
596
  },
558
- "cycles:list": {
597
+ "comments:list": {
559
598
  "aliases": [],
560
- "args": {},
561
- "description": "List cycles (sprints)",
599
+ "args": {
600
+ "issue": {
601
+ "description": "Issue ID or identifier (e.g., ENG-123)",
602
+ "name": "issue",
603
+ "required": true
604
+ }
605
+ },
606
+ "description": "List comments on an issue",
562
607
  "examples": [
563
- "<%= config.bin %> cycles list",
564
- "<%= config.bin %> cycles list --team-id TEAM_ID",
565
- "<%= config.bin %> cycles list --team ENG",
566
- "<%= config.bin %> cycles list --format table",
567
- "<%= config.bin %> cycles list --active"
608
+ "<%= config.bin %> comments list ENG-123",
609
+ "<%= config.bin %> comments list ENG-123 --format table"
568
610
  ],
569
611
  "flags": {
570
612
  "format": {
@@ -581,40 +623,8 @@
581
623
  ],
582
624
  "type": "option"
583
625
  },
584
- "team-id": {
585
- "description": "Filter by team ID",
586
- "name": "team-id",
587
- "hasDynamicHelp": false,
588
- "multiple": false,
589
- "type": "option"
590
- },
591
- "team": {
592
- "description": "Filter by team key (e.g., ENG)",
593
- "name": "team",
594
- "hasDynamicHelp": false,
595
- "multiple": false,
596
- "type": "option"
597
- },
598
- "active": {
599
- "description": "Show only active cycles",
600
- "name": "active",
601
- "allowNo": false,
602
- "type": "boolean"
603
- },
604
- "upcoming": {
605
- "description": "Show only upcoming cycles",
606
- "name": "upcoming",
607
- "allowNo": false,
608
- "type": "boolean"
609
- },
610
- "completed": {
611
- "description": "Show only completed cycles",
612
- "name": "completed",
613
- "allowNo": false,
614
- "type": "boolean"
615
- },
616
626
  "first": {
617
- "description": "Number of cycles to fetch (default: 50)",
627
+ "description": "Number of comments to fetch (default: 50)",
618
628
  "name": "first",
619
629
  "default": 50,
620
630
  "hasDynamicHelp": false,
@@ -631,7 +641,7 @@
631
641
  },
632
642
  "hasDynamicHelp": false,
633
643
  "hiddenAliases": [],
634
- "id": "cycles:list",
644
+ "id": "comments:list",
635
645
  "pluginAlias": "linear-cli-agents",
636
646
  "pluginName": "linear-cli-agents",
637
647
  "pluginType": "core",
@@ -641,23 +651,22 @@
641
651
  "relativePath": [
642
652
  "dist",
643
653
  "commands",
644
- "cycles",
654
+ "comments",
645
655
  "list.js"
646
656
  ]
647
657
  },
648
- "comments:add": {
658
+ "comments:update": {
649
659
  "aliases": [],
650
660
  "args": {
651
- "issue": {
652
- "description": "Issue ID or identifier (e.g., ENG-123)",
653
- "name": "issue",
661
+ "id": {
662
+ "description": "Comment ID",
663
+ "name": "id",
654
664
  "required": true
655
665
  }
656
666
  },
657
- "description": "Add a comment to an issue",
667
+ "description": "Update a comment",
658
668
  "examples": [
659
- "<%= config.bin %> comments add ENG-123 --body \"This is a comment\"",
660
- "<%= config.bin %> comments add ENG-123 --body \"Looks good!\" --format table"
669
+ "<%= config.bin %> comments update COMMENT_ID --body \"Updated comment text\""
661
670
  ],
662
671
  "flags": {
663
672
  "format": {
@@ -686,7 +695,7 @@
686
695
  },
687
696
  "hasDynamicHelp": false,
688
697
  "hiddenAliases": [],
689
- "id": "comments:add",
698
+ "id": "comments:update",
690
699
  "pluginAlias": "linear-cli-agents",
691
700
  "pluginName": "linear-cli-agents",
692
701
  "pluginType": "core",
@@ -697,21 +706,17 @@
697
706
  "dist",
698
707
  "commands",
699
708
  "comments",
700
- "add.js"
709
+ "update.js"
701
710
  ]
702
711
  },
703
- "comments:delete": {
712
+ "cycles:current": {
704
713
  "aliases": [],
705
- "args": {
706
- "id": {
707
- "description": "Comment ID",
708
- "name": "id",
709
- "required": true
710
- }
711
- },
712
- "description": "Delete a comment",
714
+ "args": {},
715
+ "description": "Get the current active cycle for a team",
713
716
  "examples": [
714
- "<%= config.bin %> comments delete COMMENT_ID"
717
+ "<%= config.bin %> cycles current --team ENG",
718
+ "<%= config.bin %> cycles current --team-id TEAM_ID",
719
+ "<%= config.bin %> cycles current --team ENG --format table"
715
720
  ],
716
721
  "flags": {
717
722
  "format": {
@@ -727,11 +732,31 @@
727
732
  "plain"
728
733
  ],
729
734
  "type": "option"
735
+ },
736
+ "team-id": {
737
+ "description": "Team ID",
738
+ "exclusive": [
739
+ "team"
740
+ ],
741
+ "name": "team-id",
742
+ "hasDynamicHelp": false,
743
+ "multiple": false,
744
+ "type": "option"
745
+ },
746
+ "team": {
747
+ "description": "Team key (e.g., ENG)",
748
+ "exclusive": [
749
+ "team-id"
750
+ ],
751
+ "name": "team",
752
+ "hasDynamicHelp": false,
753
+ "multiple": false,
754
+ "type": "option"
730
755
  }
731
756
  },
732
757
  "hasDynamicHelp": false,
733
758
  "hiddenAliases": [],
734
- "id": "comments:delete",
759
+ "id": "cycles:current",
735
760
  "pluginAlias": "linear-cli-agents",
736
761
  "pluginName": "linear-cli-agents",
737
762
  "pluginType": "core",
@@ -741,23 +766,23 @@
741
766
  "relativePath": [
742
767
  "dist",
743
768
  "commands",
744
- "comments",
745
- "delete.js"
769
+ "cycles",
770
+ "current.js"
746
771
  ]
747
772
  },
748
- "comments:list": {
773
+ "cycles:get": {
749
774
  "aliases": [],
750
775
  "args": {
751
- "issue": {
752
- "description": "Issue ID or identifier (e.g., ENG-123)",
753
- "name": "issue",
776
+ "id": {
777
+ "description": "Cycle ID",
778
+ "name": "id",
754
779
  "required": true
755
780
  }
756
781
  },
757
- "description": "List comments on an issue",
782
+ "description": "Get cycle (sprint) details",
758
783
  "examples": [
759
- "<%= config.bin %> comments list ENG-123",
760
- "<%= config.bin %> comments list ENG-123 --format table"
784
+ "<%= config.bin %> cycles get CYCLE_ID",
785
+ "<%= config.bin %> cycles get CYCLE_ID --format table"
761
786
  ],
762
787
  "flags": {
763
788
  "format": {
@@ -773,26 +798,11 @@
773
798
  "plain"
774
799
  ],
775
800
  "type": "option"
776
- },
777
- "first": {
778
- "description": "Number of comments to fetch (default: 50)",
779
- "name": "first",
780
- "default": 50,
781
- "hasDynamicHelp": false,
782
- "multiple": false,
783
- "type": "option"
784
- },
785
- "after": {
786
- "description": "Cursor for pagination",
787
- "name": "after",
788
- "hasDynamicHelp": false,
789
- "multiple": false,
790
- "type": "option"
791
801
  }
792
802
  },
793
803
  "hasDynamicHelp": false,
794
804
  "hiddenAliases": [],
795
- "id": "comments:list",
805
+ "id": "cycles:get",
796
806
  "pluginAlias": "linear-cli-agents",
797
807
  "pluginName": "linear-cli-agents",
798
808
  "pluginType": "core",
@@ -802,26 +812,24 @@
802
812
  "relativePath": [
803
813
  "dist",
804
814
  "commands",
805
- "comments",
806
- "list.js"
815
+ "cycles",
816
+ "get.js"
807
817
  ]
808
818
  },
809
- "comments:update": {
819
+ "cycles:list": {
810
820
  "aliases": [],
811
- "args": {
812
- "id": {
813
- "description": "Comment ID",
814
- "name": "id",
815
- "required": true
816
- }
817
- },
818
- "description": "Update a comment",
821
+ "args": {},
822
+ "description": "List cycles (sprints)",
819
823
  "examples": [
820
- "<%= config.bin %> comments update COMMENT_ID --body \"Updated comment text\""
821
- ],
822
- "flags": {
823
- "format": {
824
- "char": "F",
824
+ "<%= config.bin %> cycles list",
825
+ "<%= config.bin %> cycles list --team-id TEAM_ID",
826
+ "<%= config.bin %> cycles list --team ENG",
827
+ "<%= config.bin %> cycles list --format table",
828
+ "<%= config.bin %> cycles list --active"
829
+ ],
830
+ "flags": {
831
+ "format": {
832
+ "char": "F",
825
833
  "description": "Output format",
826
834
  "name": "format",
827
835
  "default": "json",
@@ -834,11 +842,49 @@
834
842
  ],
835
843
  "type": "option"
836
844
  },
837
- "body": {
838
- "char": "b",
839
- "description": "Comment body (supports markdown)",
840
- "name": "body",
841
- "required": true,
845
+ "team-id": {
846
+ "description": "Filter by team ID",
847
+ "name": "team-id",
848
+ "hasDynamicHelp": false,
849
+ "multiple": false,
850
+ "type": "option"
851
+ },
852
+ "team": {
853
+ "description": "Filter by team key (e.g., ENG)",
854
+ "name": "team",
855
+ "hasDynamicHelp": false,
856
+ "multiple": false,
857
+ "type": "option"
858
+ },
859
+ "active": {
860
+ "description": "Show only active cycles",
861
+ "name": "active",
862
+ "allowNo": false,
863
+ "type": "boolean"
864
+ },
865
+ "upcoming": {
866
+ "description": "Show only upcoming cycles",
867
+ "name": "upcoming",
868
+ "allowNo": false,
869
+ "type": "boolean"
870
+ },
871
+ "completed": {
872
+ "description": "Show only completed cycles",
873
+ "name": "completed",
874
+ "allowNo": false,
875
+ "type": "boolean"
876
+ },
877
+ "first": {
878
+ "description": "Number of cycles to fetch (default: 50)",
879
+ "name": "first",
880
+ "default": 50,
881
+ "hasDynamicHelp": false,
882
+ "multiple": false,
883
+ "type": "option"
884
+ },
885
+ "after": {
886
+ "description": "Cursor for pagination",
887
+ "name": "after",
842
888
  "hasDynamicHelp": false,
843
889
  "multiple": false,
844
890
  "type": "option"
@@ -846,7 +892,7 @@
846
892
  },
847
893
  "hasDynamicHelp": false,
848
894
  "hiddenAliases": [],
849
- "id": "comments:update",
895
+ "id": "cycles:list",
850
896
  "pluginAlias": "linear-cli-agents",
851
897
  "pluginName": "linear-cli-agents",
852
898
  "pluginType": "core",
@@ -856,8 +902,8 @@
856
902
  "relativePath": [
857
903
  "dist",
858
904
  "commands",
859
- "comments",
860
- "update.js"
905
+ "cycles",
906
+ "list.js"
861
907
  ]
862
908
  },
863
909
  "config:get": {
@@ -923,21 +969,893 @@
923
969
  "name": "key",
924
970
  "required": true
925
971
  },
926
- "value": {
927
- "description": "Config value",
928
- "name": "value",
929
- "required": true
972
+ "value": {
973
+ "description": "Config value",
974
+ "name": "value",
975
+ "required": true
976
+ }
977
+ },
978
+ "description": "Set a configuration value",
979
+ "examples": [
980
+ "<%= config.bin %> config set default-team-id d1ad1a80-9267-4ebc-979a-eaf885898a2c",
981
+ "<%= config.bin %> config set default-team-key MITO"
982
+ ],
983
+ "flags": {},
984
+ "hasDynamicHelp": false,
985
+ "hiddenAliases": [],
986
+ "id": "config:set",
987
+ "pluginAlias": "linear-cli-agents",
988
+ "pluginName": "linear-cli-agents",
989
+ "pluginType": "core",
990
+ "strict": true,
991
+ "enableJsonFlag": false,
992
+ "isESM": true,
993
+ "relativePath": [
994
+ "dist",
995
+ "commands",
996
+ "config",
997
+ "set.js"
998
+ ]
999
+ },
1000
+ "documents:create": {
1001
+ "aliases": [],
1002
+ "args": {},
1003
+ "description": "Create a new document",
1004
+ "examples": [
1005
+ "<%= config.bin %> documents create --title \"My Document\"",
1006
+ "<%= config.bin %> documents create --title \"Project Doc\" --project-id PROJECT_ID",
1007
+ "<%= config.bin %> documents create --title \"Notes\" --content \"# Heading\\n\\nContent here\""
1008
+ ],
1009
+ "flags": {
1010
+ "title": {
1011
+ "char": "t",
1012
+ "description": "Document title",
1013
+ "name": "title",
1014
+ "required": true,
1015
+ "hasDynamicHelp": false,
1016
+ "multiple": false,
1017
+ "type": "option"
1018
+ },
1019
+ "content": {
1020
+ "char": "c",
1021
+ "description": "Document content (markdown)",
1022
+ "name": "content",
1023
+ "hasDynamicHelp": false,
1024
+ "multiple": false,
1025
+ "type": "option"
1026
+ },
1027
+ "project-id": {
1028
+ "description": "Project ID to associate with",
1029
+ "name": "project-id",
1030
+ "hasDynamicHelp": false,
1031
+ "multiple": false,
1032
+ "type": "option"
1033
+ },
1034
+ "icon": {
1035
+ "description": "Document icon (emoji)",
1036
+ "name": "icon",
1037
+ "hasDynamicHelp": false,
1038
+ "multiple": false,
1039
+ "type": "option"
1040
+ },
1041
+ "color": {
1042
+ "description": "Document color (hex)",
1043
+ "name": "color",
1044
+ "hasDynamicHelp": false,
1045
+ "multiple": false,
1046
+ "type": "option"
1047
+ }
1048
+ },
1049
+ "hasDynamicHelp": false,
1050
+ "hiddenAliases": [],
1051
+ "id": "documents:create",
1052
+ "pluginAlias": "linear-cli-agents",
1053
+ "pluginName": "linear-cli-agents",
1054
+ "pluginType": "core",
1055
+ "strict": true,
1056
+ "enableJsonFlag": false,
1057
+ "isESM": true,
1058
+ "relativePath": [
1059
+ "dist",
1060
+ "commands",
1061
+ "documents",
1062
+ "create.js"
1063
+ ]
1064
+ },
1065
+ "documents:delete": {
1066
+ "aliases": [],
1067
+ "args": {
1068
+ "id": {
1069
+ "description": "Document ID",
1070
+ "name": "id",
1071
+ "required": true
1072
+ }
1073
+ },
1074
+ "description": "Delete a document (moves to trash)",
1075
+ "examples": [
1076
+ "<%= config.bin %> documents delete DOCUMENT_ID"
1077
+ ],
1078
+ "flags": {},
1079
+ "hasDynamicHelp": false,
1080
+ "hiddenAliases": [],
1081
+ "id": "documents:delete",
1082
+ "pluginAlias": "linear-cli-agents",
1083
+ "pluginName": "linear-cli-agents",
1084
+ "pluginType": "core",
1085
+ "strict": true,
1086
+ "enableJsonFlag": false,
1087
+ "isESM": true,
1088
+ "relativePath": [
1089
+ "dist",
1090
+ "commands",
1091
+ "documents",
1092
+ "delete.js"
1093
+ ]
1094
+ },
1095
+ "documents:get": {
1096
+ "aliases": [],
1097
+ "args": {
1098
+ "id": {
1099
+ "description": "Document ID",
1100
+ "name": "id",
1101
+ "required": true
1102
+ }
1103
+ },
1104
+ "description": "Get document details",
1105
+ "examples": [
1106
+ "<%= config.bin %> documents get DOCUMENT_ID",
1107
+ "<%= config.bin %> documents get DOCUMENT_ID --format table"
1108
+ ],
1109
+ "flags": {
1110
+ "format": {
1111
+ "char": "F",
1112
+ "description": "Output format",
1113
+ "name": "format",
1114
+ "default": "json",
1115
+ "hasDynamicHelp": false,
1116
+ "multiple": false,
1117
+ "options": [
1118
+ "json",
1119
+ "table",
1120
+ "plain"
1121
+ ],
1122
+ "type": "option"
1123
+ }
1124
+ },
1125
+ "hasDynamicHelp": false,
1126
+ "hiddenAliases": [],
1127
+ "id": "documents:get",
1128
+ "pluginAlias": "linear-cli-agents",
1129
+ "pluginName": "linear-cli-agents",
1130
+ "pluginType": "core",
1131
+ "strict": true,
1132
+ "enableJsonFlag": false,
1133
+ "isESM": true,
1134
+ "relativePath": [
1135
+ "dist",
1136
+ "commands",
1137
+ "documents",
1138
+ "get.js"
1139
+ ]
1140
+ },
1141
+ "documents:list": {
1142
+ "aliases": [],
1143
+ "args": {},
1144
+ "description": "List documents",
1145
+ "examples": [
1146
+ "<%= config.bin %> documents list",
1147
+ "<%= config.bin %> documents list --project-id PROJECT_ID",
1148
+ "<%= config.bin %> documents list --format table"
1149
+ ],
1150
+ "flags": {
1151
+ "format": {
1152
+ "char": "F",
1153
+ "description": "Output format",
1154
+ "name": "format",
1155
+ "default": "json",
1156
+ "hasDynamicHelp": false,
1157
+ "multiple": false,
1158
+ "options": [
1159
+ "json",
1160
+ "table",
1161
+ "plain"
1162
+ ],
1163
+ "type": "option"
1164
+ },
1165
+ "project-id": {
1166
+ "description": "Filter by project ID",
1167
+ "name": "project-id",
1168
+ "hasDynamicHelp": false,
1169
+ "multiple": false,
1170
+ "type": "option"
1171
+ },
1172
+ "first": {
1173
+ "description": "Number of documents to fetch (default: 50)",
1174
+ "name": "first",
1175
+ "default": 50,
1176
+ "hasDynamicHelp": false,
1177
+ "multiple": false,
1178
+ "type": "option"
1179
+ },
1180
+ "after": {
1181
+ "description": "Cursor for pagination",
1182
+ "name": "after",
1183
+ "hasDynamicHelp": false,
1184
+ "multiple": false,
1185
+ "type": "option"
1186
+ }
1187
+ },
1188
+ "hasDynamicHelp": false,
1189
+ "hiddenAliases": [],
1190
+ "id": "documents:list",
1191
+ "pluginAlias": "linear-cli-agents",
1192
+ "pluginName": "linear-cli-agents",
1193
+ "pluginType": "core",
1194
+ "strict": true,
1195
+ "enableJsonFlag": false,
1196
+ "isESM": true,
1197
+ "relativePath": [
1198
+ "dist",
1199
+ "commands",
1200
+ "documents",
1201
+ "list.js"
1202
+ ]
1203
+ },
1204
+ "documents:update": {
1205
+ "aliases": [],
1206
+ "args": {
1207
+ "id": {
1208
+ "description": "Document ID",
1209
+ "name": "id",
1210
+ "required": true
1211
+ }
1212
+ },
1213
+ "description": "Update a document",
1214
+ "examples": [
1215
+ "<%= config.bin %> documents update DOCUMENT_ID --title \"New Title\"",
1216
+ "<%= config.bin %> documents update DOCUMENT_ID --content \"Updated content\"",
1217
+ "<%= config.bin %> documents update DOCUMENT_ID --project-id PROJECT_ID"
1218
+ ],
1219
+ "flags": {
1220
+ "title": {
1221
+ "char": "t",
1222
+ "description": "New document title",
1223
+ "name": "title",
1224
+ "hasDynamicHelp": false,
1225
+ "multiple": false,
1226
+ "type": "option"
1227
+ },
1228
+ "content": {
1229
+ "char": "c",
1230
+ "description": "New document content (markdown)",
1231
+ "name": "content",
1232
+ "hasDynamicHelp": false,
1233
+ "multiple": false,
1234
+ "type": "option"
1235
+ },
1236
+ "project-id": {
1237
+ "description": "New project ID (empty string to remove)",
1238
+ "name": "project-id",
1239
+ "hasDynamicHelp": false,
1240
+ "multiple": false,
1241
+ "type": "option"
1242
+ },
1243
+ "icon": {
1244
+ "description": "New document icon (emoji)",
1245
+ "name": "icon",
1246
+ "hasDynamicHelp": false,
1247
+ "multiple": false,
1248
+ "type": "option"
1249
+ },
1250
+ "color": {
1251
+ "description": "New document color (hex)",
1252
+ "name": "color",
1253
+ "hasDynamicHelp": false,
1254
+ "multiple": false,
1255
+ "type": "option"
1256
+ }
1257
+ },
1258
+ "hasDynamicHelp": false,
1259
+ "hiddenAliases": [],
1260
+ "id": "documents:update",
1261
+ "pluginAlias": "linear-cli-agents",
1262
+ "pluginName": "linear-cli-agents",
1263
+ "pluginType": "core",
1264
+ "strict": true,
1265
+ "enableJsonFlag": false,
1266
+ "isESM": true,
1267
+ "relativePath": [
1268
+ "dist",
1269
+ "commands",
1270
+ "documents",
1271
+ "update.js"
1272
+ ]
1273
+ },
1274
+ "initiatives:archive": {
1275
+ "aliases": [],
1276
+ "args": {
1277
+ "id": {
1278
+ "description": "Initiative ID",
1279
+ "name": "id",
1280
+ "required": true
1281
+ }
1282
+ },
1283
+ "description": "Archive or unarchive an initiative",
1284
+ "examples": [
1285
+ "<%= config.bin %> initiatives archive INITIATIVE_ID",
1286
+ "<%= config.bin %> initiatives archive INITIATIVE_ID --unarchive"
1287
+ ],
1288
+ "flags": {
1289
+ "unarchive": {
1290
+ "char": "u",
1291
+ "description": "Unarchive instead of archive",
1292
+ "name": "unarchive",
1293
+ "allowNo": false,
1294
+ "type": "boolean"
1295
+ }
1296
+ },
1297
+ "hasDynamicHelp": false,
1298
+ "hiddenAliases": [],
1299
+ "id": "initiatives:archive",
1300
+ "pluginAlias": "linear-cli-agents",
1301
+ "pluginName": "linear-cli-agents",
1302
+ "pluginType": "core",
1303
+ "strict": true,
1304
+ "enableJsonFlag": false,
1305
+ "isESM": true,
1306
+ "relativePath": [
1307
+ "dist",
1308
+ "commands",
1309
+ "initiatives",
1310
+ "archive.js"
1311
+ ]
1312
+ },
1313
+ "initiatives:create": {
1314
+ "aliases": [],
1315
+ "args": {},
1316
+ "description": "Create a new initiative",
1317
+ "examples": [
1318
+ "<%= config.bin %> initiatives create --name \"Q1 Goals\"",
1319
+ "<%= config.bin %> initiatives create --name \"Product Launch\" --status Active",
1320
+ "<%= config.bin %> initiatives create --name \"H2 Objectives\" --target-date 2024-12-31"
1321
+ ],
1322
+ "flags": {
1323
+ "name": {
1324
+ "char": "n",
1325
+ "description": "Initiative name",
1326
+ "name": "name",
1327
+ "required": true,
1328
+ "hasDynamicHelp": false,
1329
+ "multiple": false,
1330
+ "type": "option"
1331
+ },
1332
+ "description": {
1333
+ "char": "d",
1334
+ "description": "Initiative description",
1335
+ "name": "description",
1336
+ "hasDynamicHelp": false,
1337
+ "multiple": false,
1338
+ "type": "option"
1339
+ },
1340
+ "status": {
1341
+ "char": "s",
1342
+ "description": "Initiative status",
1343
+ "name": "status",
1344
+ "hasDynamicHelp": false,
1345
+ "multiple": false,
1346
+ "options": [
1347
+ "Planned",
1348
+ "Active",
1349
+ "Completed"
1350
+ ],
1351
+ "type": "option"
1352
+ },
1353
+ "target-date": {
1354
+ "description": "Target completion date (YYYY-MM-DD)",
1355
+ "name": "target-date",
1356
+ "hasDynamicHelp": false,
1357
+ "multiple": false,
1358
+ "type": "option"
1359
+ },
1360
+ "owner-id": {
1361
+ "description": "Owner user ID",
1362
+ "name": "owner-id",
1363
+ "hasDynamicHelp": false,
1364
+ "multiple": false,
1365
+ "type": "option"
1366
+ },
1367
+ "icon": {
1368
+ "description": "Initiative icon (emoji)",
1369
+ "name": "icon",
1370
+ "hasDynamicHelp": false,
1371
+ "multiple": false,
1372
+ "type": "option"
1373
+ },
1374
+ "color": {
1375
+ "description": "Initiative color (hex)",
1376
+ "name": "color",
1377
+ "hasDynamicHelp": false,
1378
+ "multiple": false,
1379
+ "type": "option"
1380
+ }
1381
+ },
1382
+ "hasDynamicHelp": false,
1383
+ "hiddenAliases": [],
1384
+ "id": "initiatives:create",
1385
+ "pluginAlias": "linear-cli-agents",
1386
+ "pluginName": "linear-cli-agents",
1387
+ "pluginType": "core",
1388
+ "strict": true,
1389
+ "enableJsonFlag": false,
1390
+ "isESM": true,
1391
+ "relativePath": [
1392
+ "dist",
1393
+ "commands",
1394
+ "initiatives",
1395
+ "create.js"
1396
+ ]
1397
+ },
1398
+ "initiatives:delete": {
1399
+ "aliases": [],
1400
+ "args": {
1401
+ "id": {
1402
+ "description": "Initiative ID",
1403
+ "name": "id",
1404
+ "required": true
1405
+ }
1406
+ },
1407
+ "description": "Delete an initiative (moves to trash)",
1408
+ "examples": [
1409
+ "<%= config.bin %> initiatives delete INITIATIVE_ID"
1410
+ ],
1411
+ "flags": {},
1412
+ "hasDynamicHelp": false,
1413
+ "hiddenAliases": [],
1414
+ "id": "initiatives:delete",
1415
+ "pluginAlias": "linear-cli-agents",
1416
+ "pluginName": "linear-cli-agents",
1417
+ "pluginType": "core",
1418
+ "strict": true,
1419
+ "enableJsonFlag": false,
1420
+ "isESM": true,
1421
+ "relativePath": [
1422
+ "dist",
1423
+ "commands",
1424
+ "initiatives",
1425
+ "delete.js"
1426
+ ]
1427
+ },
1428
+ "initiatives:get": {
1429
+ "aliases": [],
1430
+ "args": {
1431
+ "id": {
1432
+ "description": "Initiative ID",
1433
+ "name": "id",
1434
+ "required": true
1435
+ }
1436
+ },
1437
+ "description": "Get initiative details",
1438
+ "examples": [
1439
+ "<%= config.bin %> initiatives get INITIATIVE_ID",
1440
+ "<%= config.bin %> initiatives get INITIATIVE_ID --format table"
1441
+ ],
1442
+ "flags": {
1443
+ "format": {
1444
+ "char": "F",
1445
+ "description": "Output format",
1446
+ "name": "format",
1447
+ "default": "json",
1448
+ "hasDynamicHelp": false,
1449
+ "multiple": false,
1450
+ "options": [
1451
+ "json",
1452
+ "table",
1453
+ "plain"
1454
+ ],
1455
+ "type": "option"
1456
+ }
1457
+ },
1458
+ "hasDynamicHelp": false,
1459
+ "hiddenAliases": [],
1460
+ "id": "initiatives:get",
1461
+ "pluginAlias": "linear-cli-agents",
1462
+ "pluginName": "linear-cli-agents",
1463
+ "pluginType": "core",
1464
+ "strict": true,
1465
+ "enableJsonFlag": false,
1466
+ "isESM": true,
1467
+ "relativePath": [
1468
+ "dist",
1469
+ "commands",
1470
+ "initiatives",
1471
+ "get.js"
1472
+ ]
1473
+ },
1474
+ "initiatives:list": {
1475
+ "aliases": [],
1476
+ "args": {},
1477
+ "description": "List initiatives",
1478
+ "examples": [
1479
+ "<%= config.bin %> initiatives list",
1480
+ "<%= config.bin %> initiatives list --status Active",
1481
+ "<%= config.bin %> initiatives list --format table"
1482
+ ],
1483
+ "flags": {
1484
+ "format": {
1485
+ "char": "F",
1486
+ "description": "Output format",
1487
+ "name": "format",
1488
+ "default": "json",
1489
+ "hasDynamicHelp": false,
1490
+ "multiple": false,
1491
+ "options": [
1492
+ "json",
1493
+ "table",
1494
+ "plain"
1495
+ ],
1496
+ "type": "option"
1497
+ },
1498
+ "status": {
1499
+ "char": "s",
1500
+ "description": "Filter by status (Planned, Active, Completed)",
1501
+ "name": "status",
1502
+ "hasDynamicHelp": false,
1503
+ "multiple": false,
1504
+ "options": [
1505
+ "Planned",
1506
+ "Active",
1507
+ "Completed"
1508
+ ],
1509
+ "type": "option"
1510
+ },
1511
+ "first": {
1512
+ "description": "Number of initiatives to fetch",
1513
+ "name": "first",
1514
+ "default": 50,
1515
+ "hasDynamicHelp": false,
1516
+ "multiple": false,
1517
+ "type": "option"
1518
+ }
1519
+ },
1520
+ "hasDynamicHelp": false,
1521
+ "hiddenAliases": [],
1522
+ "id": "initiatives:list",
1523
+ "pluginAlias": "linear-cli-agents",
1524
+ "pluginName": "linear-cli-agents",
1525
+ "pluginType": "core",
1526
+ "strict": true,
1527
+ "enableJsonFlag": false,
1528
+ "isESM": true,
1529
+ "relativePath": [
1530
+ "dist",
1531
+ "commands",
1532
+ "initiatives",
1533
+ "list.js"
1534
+ ]
1535
+ },
1536
+ "initiatives:update": {
1537
+ "aliases": [],
1538
+ "args": {
1539
+ "id": {
1540
+ "description": "Initiative ID",
1541
+ "name": "id",
1542
+ "required": true
1543
+ }
1544
+ },
1545
+ "description": "Update an initiative",
1546
+ "examples": [
1547
+ "<%= config.bin %> initiatives update INITIATIVE_ID --name \"New Name\"",
1548
+ "<%= config.bin %> initiatives update INITIATIVE_ID --status Completed",
1549
+ "<%= config.bin %> initiatives update INITIATIVE_ID --target-date 2024-12-31"
1550
+ ],
1551
+ "flags": {
1552
+ "name": {
1553
+ "char": "n",
1554
+ "description": "New initiative name",
1555
+ "name": "name",
1556
+ "hasDynamicHelp": false,
1557
+ "multiple": false,
1558
+ "type": "option"
1559
+ },
1560
+ "description": {
1561
+ "char": "d",
1562
+ "description": "New description",
1563
+ "name": "description",
1564
+ "hasDynamicHelp": false,
1565
+ "multiple": false,
1566
+ "type": "option"
1567
+ },
1568
+ "status": {
1569
+ "char": "s",
1570
+ "description": "New status",
1571
+ "name": "status",
1572
+ "hasDynamicHelp": false,
1573
+ "multiple": false,
1574
+ "options": [
1575
+ "Planned",
1576
+ "Active",
1577
+ "Completed"
1578
+ ],
1579
+ "type": "option"
1580
+ },
1581
+ "target-date": {
1582
+ "description": "New target completion date (YYYY-MM-DD)",
1583
+ "name": "target-date",
1584
+ "hasDynamicHelp": false,
1585
+ "multiple": false,
1586
+ "type": "option"
1587
+ },
1588
+ "owner-id": {
1589
+ "description": "New owner user ID",
1590
+ "name": "owner-id",
1591
+ "hasDynamicHelp": false,
1592
+ "multiple": false,
1593
+ "type": "option"
1594
+ },
1595
+ "icon": {
1596
+ "description": "New initiative icon (emoji)",
1597
+ "name": "icon",
1598
+ "hasDynamicHelp": false,
1599
+ "multiple": false,
1600
+ "type": "option"
1601
+ },
1602
+ "color": {
1603
+ "description": "New initiative color (hex)",
1604
+ "name": "color",
1605
+ "hasDynamicHelp": false,
1606
+ "multiple": false,
1607
+ "type": "option"
1608
+ }
1609
+ },
1610
+ "hasDynamicHelp": false,
1611
+ "hiddenAliases": [],
1612
+ "id": "initiatives:update",
1613
+ "pluginAlias": "linear-cli-agents",
1614
+ "pluginName": "linear-cli-agents",
1615
+ "pluginType": "core",
1616
+ "strict": true,
1617
+ "enableJsonFlag": false,
1618
+ "isESM": true,
1619
+ "relativePath": [
1620
+ "dist",
1621
+ "commands",
1622
+ "initiatives",
1623
+ "update.js"
1624
+ ]
1625
+ },
1626
+ "milestones:create": {
1627
+ "aliases": [],
1628
+ "args": {
1629
+ "projectId": {
1630
+ "description": "Project ID",
1631
+ "name": "projectId",
1632
+ "required": true
1633
+ }
1634
+ },
1635
+ "description": "Create a project milestone",
1636
+ "examples": [
1637
+ "<%= config.bin %> milestones create PROJECT_ID --name \"Beta Release\"",
1638
+ "<%= config.bin %> milestones create PROJECT_ID --name \"Launch\" --target-date 2024-03-01"
1639
+ ],
1640
+ "flags": {
1641
+ "format": {
1642
+ "char": "F",
1643
+ "description": "Output format",
1644
+ "name": "format",
1645
+ "default": "json",
1646
+ "hasDynamicHelp": false,
1647
+ "multiple": false,
1648
+ "options": [
1649
+ "json",
1650
+ "table",
1651
+ "plain"
1652
+ ],
1653
+ "type": "option"
1654
+ },
1655
+ "name": {
1656
+ "char": "n",
1657
+ "description": "Milestone name",
1658
+ "name": "name",
1659
+ "required": true,
1660
+ "hasDynamicHelp": false,
1661
+ "multiple": false,
1662
+ "type": "option"
1663
+ },
1664
+ "description": {
1665
+ "char": "d",
1666
+ "description": "Milestone description",
1667
+ "name": "description",
1668
+ "hasDynamicHelp": false,
1669
+ "multiple": false,
1670
+ "type": "option"
1671
+ },
1672
+ "target-date": {
1673
+ "description": "Target date (YYYY-MM-DD)",
1674
+ "name": "target-date",
1675
+ "hasDynamicHelp": false,
1676
+ "multiple": false,
1677
+ "type": "option"
1678
+ }
1679
+ },
1680
+ "hasDynamicHelp": false,
1681
+ "hiddenAliases": [],
1682
+ "id": "milestones:create",
1683
+ "pluginAlias": "linear-cli-agents",
1684
+ "pluginName": "linear-cli-agents",
1685
+ "pluginType": "core",
1686
+ "strict": true,
1687
+ "enableJsonFlag": false,
1688
+ "isESM": true,
1689
+ "relativePath": [
1690
+ "dist",
1691
+ "commands",
1692
+ "milestones",
1693
+ "create.js"
1694
+ ]
1695
+ },
1696
+ "milestones:get": {
1697
+ "aliases": [],
1698
+ "args": {
1699
+ "id": {
1700
+ "description": "Milestone ID",
1701
+ "name": "id",
1702
+ "required": true
1703
+ }
1704
+ },
1705
+ "description": "Get a project milestone by ID",
1706
+ "examples": [
1707
+ "<%= config.bin %> milestones get MILESTONE_ID",
1708
+ "<%= config.bin %> milestones get MILESTONE_ID --format table"
1709
+ ],
1710
+ "flags": {
1711
+ "format": {
1712
+ "char": "F",
1713
+ "description": "Output format",
1714
+ "name": "format",
1715
+ "default": "json",
1716
+ "hasDynamicHelp": false,
1717
+ "multiple": false,
1718
+ "options": [
1719
+ "json",
1720
+ "table",
1721
+ "plain"
1722
+ ],
1723
+ "type": "option"
1724
+ }
1725
+ },
1726
+ "hasDynamicHelp": false,
1727
+ "hiddenAliases": [],
1728
+ "id": "milestones:get",
1729
+ "pluginAlias": "linear-cli-agents",
1730
+ "pluginName": "linear-cli-agents",
1731
+ "pluginType": "core",
1732
+ "strict": true,
1733
+ "enableJsonFlag": false,
1734
+ "isESM": true,
1735
+ "relativePath": [
1736
+ "dist",
1737
+ "commands",
1738
+ "milestones",
1739
+ "get.js"
1740
+ ]
1741
+ },
1742
+ "milestones:list": {
1743
+ "aliases": [],
1744
+ "args": {
1745
+ "projectId": {
1746
+ "description": "Project ID",
1747
+ "name": "projectId",
1748
+ "required": true
1749
+ }
1750
+ },
1751
+ "description": "List project milestones",
1752
+ "examples": [
1753
+ "<%= config.bin %> milestones list PROJECT_ID",
1754
+ "<%= config.bin %> milestones list PROJECT_ID --format table"
1755
+ ],
1756
+ "flags": {
1757
+ "format": {
1758
+ "char": "F",
1759
+ "description": "Output format",
1760
+ "name": "format",
1761
+ "default": "json",
1762
+ "hasDynamicHelp": false,
1763
+ "multiple": false,
1764
+ "options": [
1765
+ "json",
1766
+ "table",
1767
+ "plain"
1768
+ ],
1769
+ "type": "option"
1770
+ },
1771
+ "first": {
1772
+ "description": "Number of milestones to fetch (default: 50)",
1773
+ "name": "first",
1774
+ "default": 50,
1775
+ "hasDynamicHelp": false,
1776
+ "multiple": false,
1777
+ "type": "option"
1778
+ },
1779
+ "after": {
1780
+ "description": "Cursor for pagination",
1781
+ "name": "after",
1782
+ "hasDynamicHelp": false,
1783
+ "multiple": false,
1784
+ "type": "option"
1785
+ }
1786
+ },
1787
+ "hasDynamicHelp": false,
1788
+ "hiddenAliases": [],
1789
+ "id": "milestones:list",
1790
+ "pluginAlias": "linear-cli-agents",
1791
+ "pluginName": "linear-cli-agents",
1792
+ "pluginType": "core",
1793
+ "strict": true,
1794
+ "enableJsonFlag": false,
1795
+ "isESM": true,
1796
+ "relativePath": [
1797
+ "dist",
1798
+ "commands",
1799
+ "milestones",
1800
+ "list.js"
1801
+ ]
1802
+ },
1803
+ "milestones:update": {
1804
+ "aliases": [],
1805
+ "args": {
1806
+ "id": {
1807
+ "description": "Milestone ID",
1808
+ "name": "id",
1809
+ "required": true
1810
+ }
1811
+ },
1812
+ "description": "Update a project milestone",
1813
+ "examples": [
1814
+ "<%= config.bin %> milestones update MILESTONE_ID --name \"Updated Name\"",
1815
+ "<%= config.bin %> milestones update MILESTONE_ID --target-date 2024-06-01"
1816
+ ],
1817
+ "flags": {
1818
+ "format": {
1819
+ "char": "F",
1820
+ "description": "Output format",
1821
+ "name": "format",
1822
+ "default": "json",
1823
+ "hasDynamicHelp": false,
1824
+ "multiple": false,
1825
+ "options": [
1826
+ "json",
1827
+ "table",
1828
+ "plain"
1829
+ ],
1830
+ "type": "option"
1831
+ },
1832
+ "name": {
1833
+ "char": "n",
1834
+ "description": "Milestone name",
1835
+ "name": "name",
1836
+ "hasDynamicHelp": false,
1837
+ "multiple": false,
1838
+ "type": "option"
1839
+ },
1840
+ "description": {
1841
+ "char": "d",
1842
+ "description": "Milestone description",
1843
+ "name": "description",
1844
+ "hasDynamicHelp": false,
1845
+ "multiple": false,
1846
+ "type": "option"
1847
+ },
1848
+ "target-date": {
1849
+ "description": "Target date (YYYY-MM-DD)",
1850
+ "name": "target-date",
1851
+ "hasDynamicHelp": false,
1852
+ "multiple": false,
1853
+ "type": "option"
930
1854
  }
931
1855
  },
932
- "description": "Set a configuration value",
933
- "examples": [
934
- "<%= config.bin %> config set default-team-id d1ad1a80-9267-4ebc-979a-eaf885898a2c",
935
- "<%= config.bin %> config set default-team-key MITO"
936
- ],
937
- "flags": {},
938
1856
  "hasDynamicHelp": false,
939
1857
  "hiddenAliases": [],
940
- "id": "config:set",
1858
+ "id": "milestones:update",
941
1859
  "pluginAlias": "linear-cli-agents",
942
1860
  "pluginName": "linear-cli-agents",
943
1861
  "pluginType": "core",
@@ -947,8 +1865,8 @@
947
1865
  "relativePath": [
948
1866
  "dist",
949
1867
  "commands",
950
- "config",
951
- "set.js"
1868
+ "milestones",
1869
+ "update.js"
952
1870
  ]
953
1871
  },
954
1872
  "issues:add-labels": {
@@ -1167,6 +2085,20 @@
1167
2085
  "hasDynamicHelp": false,
1168
2086
  "multiple": false,
1169
2087
  "type": "option"
2088
+ },
2089
+ "due-date": {
2090
+ "description": "Due date (YYYY-MM-DD)",
2091
+ "name": "due-date",
2092
+ "hasDynamicHelp": false,
2093
+ "multiple": false,
2094
+ "type": "option"
2095
+ },
2096
+ "cycle-id": {
2097
+ "description": "Cycle (sprint) ID",
2098
+ "name": "cycle-id",
2099
+ "hasDynamicHelp": false,
2100
+ "multiple": false,
2101
+ "type": "option"
1170
2102
  }
1171
2103
  },
1172
2104
  "hasDynamicHelp": false,
@@ -1273,6 +2205,20 @@
1273
2205
  "hasDynamicHelp": false,
1274
2206
  "multiple": false,
1275
2207
  "type": "option"
2208
+ },
2209
+ "due-date": {
2210
+ "description": "Due date (YYYY-MM-DD)",
2211
+ "name": "due-date",
2212
+ "hasDynamicHelp": false,
2213
+ "multiple": false,
2214
+ "type": "option"
2215
+ },
2216
+ "cycle-id": {
2217
+ "description": "Cycle (sprint) ID",
2218
+ "name": "cycle-id",
2219
+ "hasDynamicHelp": false,
2220
+ "multiple": false,
2221
+ "type": "option"
1276
2222
  }
1277
2223
  },
1278
2224
  "hasDynamicHelp": false,
@@ -1343,6 +2289,7 @@
1343
2289
  "examples": [
1344
2290
  "<%= config.bin %> issues get ENG-123",
1345
2291
  "<%= config.bin %> issues get ENG-123 --format table",
2292
+ "<%= config.bin %> issues get ENG-123 --with-attachments",
1346
2293
  "<%= config.bin %> issues get abc123"
1347
2294
  ],
1348
2295
  "flags": {
@@ -1359,6 +2306,12 @@
1359
2306
  "plain"
1360
2307
  ],
1361
2308
  "type": "option"
2309
+ },
2310
+ "with-attachments": {
2311
+ "description": "Include attachments (linked PRs, commits, etc.)",
2312
+ "name": "with-attachments",
2313
+ "allowNo": false,
2314
+ "type": "boolean"
1362
2315
  }
1363
2316
  },
1364
2317
  "hasDynamicHelp": false,
@@ -1591,267 +2544,35 @@
1591
2544
  },
1592
2545
  "project-id": {
1593
2546
  "description": "Project ID",
1594
- "name": "project-id",
1595
- "hasDynamicHelp": false,
1596
- "multiple": false,
1597
- "type": "option"
1598
- },
1599
- "estimate": {
1600
- "description": "Estimate points",
1601
- "name": "estimate",
1602
- "hasDynamicHelp": false,
1603
- "multiple": false,
1604
- "type": "option"
1605
- },
1606
- "label-ids": {
1607
- "description": "Comma-separated label IDs (replaces existing labels)",
1608
- "name": "label-ids",
1609
- "hasDynamicHelp": false,
1610
- "multiple": false,
1611
- "type": "option"
1612
- }
1613
- },
1614
- "hasDynamicHelp": false,
1615
- "hiddenAliases": [],
1616
- "id": "issues:update",
1617
- "pluginAlias": "linear-cli-agents",
1618
- "pluginName": "linear-cli-agents",
1619
- "pluginType": "core",
1620
- "strict": true,
1621
- "enableJsonFlag": false,
1622
- "isESM": true,
1623
- "relativePath": [
1624
- "dist",
1625
- "commands",
1626
- "issues",
1627
- "update.js"
1628
- ]
1629
- },
1630
- "milestones:create": {
1631
- "aliases": [],
1632
- "args": {
1633
- "projectId": {
1634
- "description": "Project ID",
1635
- "name": "projectId",
1636
- "required": true
1637
- }
1638
- },
1639
- "description": "Create a project milestone",
1640
- "examples": [
1641
- "<%= config.bin %> milestones create PROJECT_ID --name \"Beta Release\"",
1642
- "<%= config.bin %> milestones create PROJECT_ID --name \"Launch\" --target-date 2024-03-01"
1643
- ],
1644
- "flags": {
1645
- "format": {
1646
- "char": "F",
1647
- "description": "Output format",
1648
- "name": "format",
1649
- "default": "json",
1650
- "hasDynamicHelp": false,
1651
- "multiple": false,
1652
- "options": [
1653
- "json",
1654
- "table",
1655
- "plain"
1656
- ],
1657
- "type": "option"
1658
- },
1659
- "name": {
1660
- "char": "n",
1661
- "description": "Milestone name",
1662
- "name": "name",
1663
- "required": true,
1664
- "hasDynamicHelp": false,
1665
- "multiple": false,
1666
- "type": "option"
1667
- },
1668
- "description": {
1669
- "char": "d",
1670
- "description": "Milestone description",
1671
- "name": "description",
1672
- "hasDynamicHelp": false,
1673
- "multiple": false,
1674
- "type": "option"
1675
- },
1676
- "target-date": {
1677
- "description": "Target date (YYYY-MM-DD)",
1678
- "name": "target-date",
1679
- "hasDynamicHelp": false,
1680
- "multiple": false,
1681
- "type": "option"
1682
- }
1683
- },
1684
- "hasDynamicHelp": false,
1685
- "hiddenAliases": [],
1686
- "id": "milestones:create",
1687
- "pluginAlias": "linear-cli-agents",
1688
- "pluginName": "linear-cli-agents",
1689
- "pluginType": "core",
1690
- "strict": true,
1691
- "enableJsonFlag": false,
1692
- "isESM": true,
1693
- "relativePath": [
1694
- "dist",
1695
- "commands",
1696
- "milestones",
1697
- "create.js"
1698
- ]
1699
- },
1700
- "milestones:get": {
1701
- "aliases": [],
1702
- "args": {
1703
- "id": {
1704
- "description": "Milestone ID",
1705
- "name": "id",
1706
- "required": true
1707
- }
1708
- },
1709
- "description": "Get a project milestone by ID",
1710
- "examples": [
1711
- "<%= config.bin %> milestones get MILESTONE_ID",
1712
- "<%= config.bin %> milestones get MILESTONE_ID --format table"
1713
- ],
1714
- "flags": {
1715
- "format": {
1716
- "char": "F",
1717
- "description": "Output format",
1718
- "name": "format",
1719
- "default": "json",
1720
- "hasDynamicHelp": false,
1721
- "multiple": false,
1722
- "options": [
1723
- "json",
1724
- "table",
1725
- "plain"
1726
- ],
1727
- "type": "option"
1728
- }
1729
- },
1730
- "hasDynamicHelp": false,
1731
- "hiddenAliases": [],
1732
- "id": "milestones:get",
1733
- "pluginAlias": "linear-cli-agents",
1734
- "pluginName": "linear-cli-agents",
1735
- "pluginType": "core",
1736
- "strict": true,
1737
- "enableJsonFlag": false,
1738
- "isESM": true,
1739
- "relativePath": [
1740
- "dist",
1741
- "commands",
1742
- "milestones",
1743
- "get.js"
1744
- ]
1745
- },
1746
- "milestones:list": {
1747
- "aliases": [],
1748
- "args": {
1749
- "projectId": {
1750
- "description": "Project ID",
1751
- "name": "projectId",
1752
- "required": true
1753
- }
1754
- },
1755
- "description": "List project milestones",
1756
- "examples": [
1757
- "<%= config.bin %> milestones list PROJECT_ID",
1758
- "<%= config.bin %> milestones list PROJECT_ID --format table"
1759
- ],
1760
- "flags": {
1761
- "format": {
1762
- "char": "F",
1763
- "description": "Output format",
1764
- "name": "format",
1765
- "default": "json",
1766
- "hasDynamicHelp": false,
1767
- "multiple": false,
1768
- "options": [
1769
- "json",
1770
- "table",
1771
- "plain"
1772
- ],
1773
- "type": "option"
1774
- },
1775
- "first": {
1776
- "description": "Number of milestones to fetch (default: 50)",
1777
- "name": "first",
1778
- "default": 50,
1779
- "hasDynamicHelp": false,
1780
- "multiple": false,
1781
- "type": "option"
1782
- },
1783
- "after": {
1784
- "description": "Cursor for pagination",
1785
- "name": "after",
2547
+ "name": "project-id",
1786
2548
  "hasDynamicHelp": false,
1787
2549
  "multiple": false,
1788
2550
  "type": "option"
1789
- }
1790
- },
1791
- "hasDynamicHelp": false,
1792
- "hiddenAliases": [],
1793
- "id": "milestones:list",
1794
- "pluginAlias": "linear-cli-agents",
1795
- "pluginName": "linear-cli-agents",
1796
- "pluginType": "core",
1797
- "strict": true,
1798
- "enableJsonFlag": false,
1799
- "isESM": true,
1800
- "relativePath": [
1801
- "dist",
1802
- "commands",
1803
- "milestones",
1804
- "list.js"
1805
- ]
1806
- },
1807
- "milestones:update": {
1808
- "aliases": [],
1809
- "args": {
1810
- "id": {
1811
- "description": "Milestone ID",
1812
- "name": "id",
1813
- "required": true
1814
- }
1815
- },
1816
- "description": "Update a project milestone",
1817
- "examples": [
1818
- "<%= config.bin %> milestones update MILESTONE_ID --name \"Updated Name\"",
1819
- "<%= config.bin %> milestones update MILESTONE_ID --target-date 2024-06-01"
1820
- ],
1821
- "flags": {
1822
- "format": {
1823
- "char": "F",
1824
- "description": "Output format",
1825
- "name": "format",
1826
- "default": "json",
2551
+ },
2552
+ "estimate": {
2553
+ "description": "Estimate points",
2554
+ "name": "estimate",
1827
2555
  "hasDynamicHelp": false,
1828
2556
  "multiple": false,
1829
- "options": [
1830
- "json",
1831
- "table",
1832
- "plain"
1833
- ],
1834
2557
  "type": "option"
1835
2558
  },
1836
- "name": {
1837
- "char": "n",
1838
- "description": "Milestone name",
1839
- "name": "name",
2559
+ "label-ids": {
2560
+ "description": "Comma-separated label IDs (replaces existing labels)",
2561
+ "name": "label-ids",
1840
2562
  "hasDynamicHelp": false,
1841
2563
  "multiple": false,
1842
2564
  "type": "option"
1843
2565
  },
1844
- "description": {
1845
- "char": "d",
1846
- "description": "Milestone description",
1847
- "name": "description",
2566
+ "due-date": {
2567
+ "description": "Due date (YYYY-MM-DD, use empty string to clear)",
2568
+ "name": "due-date",
1848
2569
  "hasDynamicHelp": false,
1849
2570
  "multiple": false,
1850
2571
  "type": "option"
1851
2572
  },
1852
- "target-date": {
1853
- "description": "Target date (YYYY-MM-DD)",
1854
- "name": "target-date",
2573
+ "cycle-id": {
2574
+ "description": "Cycle (sprint) ID (use empty string to remove from cycle)",
2575
+ "name": "cycle-id",
1855
2576
  "hasDynamicHelp": false,
1856
2577
  "multiple": false,
1857
2578
  "type": "option"
@@ -1859,7 +2580,7 @@
1859
2580
  },
1860
2581
  "hasDynamicHelp": false,
1861
2582
  "hiddenAliases": [],
1862
- "id": "milestones:update",
2583
+ "id": "issues:update",
1863
2584
  "pluginAlias": "linear-cli-agents",
1864
2585
  "pluginName": "linear-cli-agents",
1865
2586
  "pluginType": "core",
@@ -1869,7 +2590,7 @@
1869
2590
  "relativePath": [
1870
2591
  "dist",
1871
2592
  "commands",
1872
- "milestones",
2593
+ "issues",
1873
2594
  "update.js"
1874
2595
  ]
1875
2596
  },
@@ -2234,16 +2955,210 @@
2234
2955
  "hasDynamicHelp": false,
2235
2956
  "multiple": false,
2236
2957
  "options": [
2237
- "json",
2238
- "table",
2239
- "plain"
2958
+ "json",
2959
+ "table",
2960
+ "plain"
2961
+ ],
2962
+ "type": "option"
2963
+ }
2964
+ },
2965
+ "hasDynamicHelp": false,
2966
+ "hiddenAliases": [],
2967
+ "id": "project-updates:get",
2968
+ "pluginAlias": "linear-cli-agents",
2969
+ "pluginName": "linear-cli-agents",
2970
+ "pluginType": "core",
2971
+ "strict": true,
2972
+ "enableJsonFlag": false,
2973
+ "isESM": true,
2974
+ "relativePath": [
2975
+ "dist",
2976
+ "commands",
2977
+ "project-updates",
2978
+ "get.js"
2979
+ ]
2980
+ },
2981
+ "project-updates:list": {
2982
+ "aliases": [],
2983
+ "args": {
2984
+ "projectId": {
2985
+ "description": "Project ID",
2986
+ "name": "projectId",
2987
+ "required": true
2988
+ }
2989
+ },
2990
+ "description": "List project updates",
2991
+ "examples": [
2992
+ "<%= config.bin %> project-updates list PROJECT_ID",
2993
+ "<%= config.bin %> project-updates list PROJECT_ID --format table"
2994
+ ],
2995
+ "flags": {
2996
+ "format": {
2997
+ "char": "F",
2998
+ "description": "Output format",
2999
+ "name": "format",
3000
+ "default": "json",
3001
+ "hasDynamicHelp": false,
3002
+ "multiple": false,
3003
+ "options": [
3004
+ "json",
3005
+ "table",
3006
+ "plain"
3007
+ ],
3008
+ "type": "option"
3009
+ },
3010
+ "first": {
3011
+ "description": "Number of updates to fetch (default: 20)",
3012
+ "name": "first",
3013
+ "default": 20,
3014
+ "hasDynamicHelp": false,
3015
+ "multiple": false,
3016
+ "type": "option"
3017
+ },
3018
+ "after": {
3019
+ "description": "Cursor for pagination",
3020
+ "name": "after",
3021
+ "hasDynamicHelp": false,
3022
+ "multiple": false,
3023
+ "type": "option"
3024
+ }
3025
+ },
3026
+ "hasDynamicHelp": false,
3027
+ "hiddenAliases": [],
3028
+ "id": "project-updates:list",
3029
+ "pluginAlias": "linear-cli-agents",
3030
+ "pluginName": "linear-cli-agents",
3031
+ "pluginType": "core",
3032
+ "strict": true,
3033
+ "enableJsonFlag": false,
3034
+ "isESM": true,
3035
+ "relativePath": [
3036
+ "dist",
3037
+ "commands",
3038
+ "project-updates",
3039
+ "list.js"
3040
+ ]
3041
+ },
3042
+ "project-updates:update": {
3043
+ "aliases": [],
3044
+ "args": {
3045
+ "id": {
3046
+ "description": "Project update ID",
3047
+ "name": "id",
3048
+ "required": true
3049
+ }
3050
+ },
3051
+ "description": "Update a project update",
3052
+ "examples": [
3053
+ "<%= config.bin %> project-updates update UPDATE_ID --body \"Updated status\"",
3054
+ "<%= config.bin %> project-updates update UPDATE_ID --health offTrack"
3055
+ ],
3056
+ "flags": {
3057
+ "format": {
3058
+ "char": "F",
3059
+ "description": "Output format",
3060
+ "name": "format",
3061
+ "default": "json",
3062
+ "hasDynamicHelp": false,
3063
+ "multiple": false,
3064
+ "options": [
3065
+ "json",
3066
+ "table",
3067
+ "plain"
3068
+ ],
3069
+ "type": "option"
3070
+ },
3071
+ "body": {
3072
+ "char": "b",
3073
+ "description": "Update body (supports markdown)",
3074
+ "name": "body",
3075
+ "hasDynamicHelp": false,
3076
+ "multiple": false,
3077
+ "type": "option"
3078
+ },
3079
+ "health": {
3080
+ "char": "h",
3081
+ "description": "Project health status",
3082
+ "name": "health",
3083
+ "hasDynamicHelp": false,
3084
+ "multiple": false,
3085
+ "options": [
3086
+ "onTrack",
3087
+ "atRisk",
3088
+ "offTrack"
3089
+ ],
3090
+ "type": "option"
3091
+ }
3092
+ },
3093
+ "hasDynamicHelp": false,
3094
+ "hiddenAliases": [],
3095
+ "id": "project-updates:update",
3096
+ "pluginAlias": "linear-cli-agents",
3097
+ "pluginName": "linear-cli-agents",
3098
+ "pluginType": "core",
3099
+ "strict": true,
3100
+ "enableJsonFlag": false,
3101
+ "isESM": true,
3102
+ "relativePath": [
3103
+ "dist",
3104
+ "commands",
3105
+ "project-updates",
3106
+ "update.js"
3107
+ ]
3108
+ },
3109
+ "relations:create": {
3110
+ "aliases": [],
3111
+ "args": {
3112
+ "issue": {
3113
+ "description": "Source issue ID or identifier (e.g., ENG-123)",
3114
+ "name": "issue",
3115
+ "required": true
3116
+ },
3117
+ "relatedIssue": {
3118
+ "description": "Related issue ID or identifier (e.g., ENG-456)",
3119
+ "name": "relatedIssue",
3120
+ "required": true
3121
+ }
3122
+ },
3123
+ "description": "Create a relation between two issues",
3124
+ "examples": [
3125
+ "<%= config.bin %> relations create ENG-123 ENG-456 --type blocks",
3126
+ "<%= config.bin %> relations create ENG-123 ENG-456 --type duplicate",
3127
+ "<%= config.bin %> relations create ENG-123 ENG-456 --type related"
3128
+ ],
3129
+ "flags": {
3130
+ "format": {
3131
+ "char": "F",
3132
+ "description": "Output format",
3133
+ "name": "format",
3134
+ "default": "json",
3135
+ "hasDynamicHelp": false,
3136
+ "multiple": false,
3137
+ "options": [
3138
+ "json",
3139
+ "table",
3140
+ "plain"
3141
+ ],
3142
+ "type": "option"
3143
+ },
3144
+ "type": {
3145
+ "char": "t",
3146
+ "description": "Relation type (blocks, duplicate, related)",
3147
+ "name": "type",
3148
+ "required": true,
3149
+ "hasDynamicHelp": false,
3150
+ "multiple": false,
3151
+ "options": [
3152
+ "blocks",
3153
+ "duplicate",
3154
+ "related"
2240
3155
  ],
2241
3156
  "type": "option"
2242
3157
  }
2243
3158
  },
2244
3159
  "hasDynamicHelp": false,
2245
3160
  "hiddenAliases": [],
2246
- "id": "project-updates:get",
3161
+ "id": "relations:create",
2247
3162
  "pluginAlias": "linear-cli-agents",
2248
3163
  "pluginName": "linear-cli-agents",
2249
3164
  "pluginType": "core",
@@ -2253,23 +3168,22 @@
2253
3168
  "relativePath": [
2254
3169
  "dist",
2255
3170
  "commands",
2256
- "project-updates",
2257
- "get.js"
3171
+ "relations",
3172
+ "create.js"
2258
3173
  ]
2259
3174
  },
2260
- "project-updates:list": {
3175
+ "relations:delete": {
2261
3176
  "aliases": [],
2262
3177
  "args": {
2263
- "projectId": {
2264
- "description": "Project ID",
2265
- "name": "projectId",
3178
+ "id": {
3179
+ "description": "Relation ID",
3180
+ "name": "id",
2266
3181
  "required": true
2267
3182
  }
2268
3183
  },
2269
- "description": "List project updates",
3184
+ "description": "Delete an issue relation",
2270
3185
  "examples": [
2271
- "<%= config.bin %> project-updates list PROJECT_ID",
2272
- "<%= config.bin %> project-updates list PROJECT_ID --format table"
3186
+ "<%= config.bin %> relations delete RELATION_ID"
2273
3187
  ],
2274
3188
  "flags": {
2275
3189
  "format": {
@@ -2285,26 +3199,11 @@
2285
3199
  "plain"
2286
3200
  ],
2287
3201
  "type": "option"
2288
- },
2289
- "first": {
2290
- "description": "Number of updates to fetch (default: 20)",
2291
- "name": "first",
2292
- "default": 20,
2293
- "hasDynamicHelp": false,
2294
- "multiple": false,
2295
- "type": "option"
2296
- },
2297
- "after": {
2298
- "description": "Cursor for pagination",
2299
- "name": "after",
2300
- "hasDynamicHelp": false,
2301
- "multiple": false,
2302
- "type": "option"
2303
3202
  }
2304
3203
  },
2305
3204
  "hasDynamicHelp": false,
2306
3205
  "hiddenAliases": [],
2307
- "id": "project-updates:list",
3206
+ "id": "relations:delete",
2308
3207
  "pluginAlias": "linear-cli-agents",
2309
3208
  "pluginName": "linear-cli-agents",
2310
3209
  "pluginType": "core",
@@ -2314,23 +3213,23 @@
2314
3213
  "relativePath": [
2315
3214
  "dist",
2316
3215
  "commands",
2317
- "project-updates",
2318
- "list.js"
3216
+ "relations",
3217
+ "delete.js"
2319
3218
  ]
2320
3219
  },
2321
- "project-updates:update": {
3220
+ "relations:list": {
2322
3221
  "aliases": [],
2323
3222
  "args": {
2324
- "id": {
2325
- "description": "Project update ID",
2326
- "name": "id",
3223
+ "issue": {
3224
+ "description": "Issue ID or identifier (e.g., ENG-123)",
3225
+ "name": "issue",
2327
3226
  "required": true
2328
3227
  }
2329
3228
  },
2330
- "description": "Update a project update",
3229
+ "description": "List relations for an issue",
2331
3230
  "examples": [
2332
- "<%= config.bin %> project-updates update UPDATE_ID --body \"Updated status\"",
2333
- "<%= config.bin %> project-updates update UPDATE_ID --health offTrack"
3231
+ "<%= config.bin %> relations list ENG-123",
3232
+ "<%= config.bin %> relations list ENG-123 --format table"
2334
3233
  ],
2335
3234
  "flags": {
2336
3235
  "format": {
@@ -2346,32 +3245,11 @@
2346
3245
  "plain"
2347
3246
  ],
2348
3247
  "type": "option"
2349
- },
2350
- "body": {
2351
- "char": "b",
2352
- "description": "Update body (supports markdown)",
2353
- "name": "body",
2354
- "hasDynamicHelp": false,
2355
- "multiple": false,
2356
- "type": "option"
2357
- },
2358
- "health": {
2359
- "char": "h",
2360
- "description": "Project health status",
2361
- "name": "health",
2362
- "hasDynamicHelp": false,
2363
- "multiple": false,
2364
- "options": [
2365
- "onTrack",
2366
- "atRisk",
2367
- "offTrack"
2368
- ],
2369
- "type": "option"
2370
3248
  }
2371
3249
  },
2372
3250
  "hasDynamicHelp": false,
2373
3251
  "hiddenAliases": [],
2374
- "id": "project-updates:update",
3252
+ "id": "relations:list",
2375
3253
  "pluginAlias": "linear-cli-agents",
2376
3254
  "pluginName": "linear-cli-agents",
2377
3255
  "pluginType": "core",
@@ -2381,8 +3259,8 @@
2381
3259
  "relativePath": [
2382
3260
  "dist",
2383
3261
  "commands",
2384
- "project-updates",
2385
- "update.js"
3262
+ "relations",
3263
+ "list.js"
2386
3264
  ]
2387
3265
  },
2388
3266
  "projects:archive": {
@@ -2521,6 +3399,14 @@
2521
3399
  "hasDynamicHelp": false,
2522
3400
  "multiple": false,
2523
3401
  "type": "option"
3402
+ },
3403
+ "content": {
3404
+ "char": "c",
3405
+ "description": "Project content (markdown, for longer descriptions)",
3406
+ "name": "content",
3407
+ "hasDynamicHelp": false,
3408
+ "multiple": false,
3409
+ "type": "option"
2524
3410
  }
2525
3411
  },
2526
3412
  "hasDynamicHelp": false,
@@ -2784,168 +3670,19 @@
2784
3670
  "hasDynamicHelp": false,
2785
3671
  "multiple": false,
2786
3672
  "type": "option"
2787
- }
2788
- },
2789
- "hasDynamicHelp": false,
2790
- "hiddenAliases": [],
2791
- "id": "projects:update",
2792
- "pluginAlias": "linear-cli-agents",
2793
- "pluginName": "linear-cli-agents",
2794
- "pluginType": "core",
2795
- "strict": true,
2796
- "enableJsonFlag": false,
2797
- "isESM": true,
2798
- "relativePath": [
2799
- "dist",
2800
- "commands",
2801
- "projects",
2802
- "update.js"
2803
- ]
2804
- },
2805
- "relations:create": {
2806
- "aliases": [],
2807
- "args": {
2808
- "issue": {
2809
- "description": "Source issue ID or identifier (e.g., ENG-123)",
2810
- "name": "issue",
2811
- "required": true
2812
- },
2813
- "relatedIssue": {
2814
- "description": "Related issue ID or identifier (e.g., ENG-456)",
2815
- "name": "relatedIssue",
2816
- "required": true
2817
- }
2818
- },
2819
- "description": "Create a relation between two issues",
2820
- "examples": [
2821
- "<%= config.bin %> relations create ENG-123 ENG-456 --type blocks",
2822
- "<%= config.bin %> relations create ENG-123 ENG-456 --type duplicate",
2823
- "<%= config.bin %> relations create ENG-123 ENG-456 --type related"
2824
- ],
2825
- "flags": {
2826
- "format": {
2827
- "char": "F",
2828
- "description": "Output format",
2829
- "name": "format",
2830
- "default": "json",
2831
- "hasDynamicHelp": false,
2832
- "multiple": false,
2833
- "options": [
2834
- "json",
2835
- "table",
2836
- "plain"
2837
- ],
2838
- "type": "option"
2839
3673
  },
2840
- "type": {
2841
- "char": "t",
2842
- "description": "Relation type (blocks, duplicate, related)",
2843
- "name": "type",
2844
- "required": true,
2845
- "hasDynamicHelp": false,
2846
- "multiple": false,
2847
- "options": [
2848
- "blocks",
2849
- "duplicate",
2850
- "related"
2851
- ],
2852
- "type": "option"
2853
- }
2854
- },
2855
- "hasDynamicHelp": false,
2856
- "hiddenAliases": [],
2857
- "id": "relations:create",
2858
- "pluginAlias": "linear-cli-agents",
2859
- "pluginName": "linear-cli-agents",
2860
- "pluginType": "core",
2861
- "strict": true,
2862
- "enableJsonFlag": false,
2863
- "isESM": true,
2864
- "relativePath": [
2865
- "dist",
2866
- "commands",
2867
- "relations",
2868
- "create.js"
2869
- ]
2870
- },
2871
- "relations:delete": {
2872
- "aliases": [],
2873
- "args": {
2874
- "id": {
2875
- "description": "Relation ID",
2876
- "name": "id",
2877
- "required": true
2878
- }
2879
- },
2880
- "description": "Delete an issue relation",
2881
- "examples": [
2882
- "<%= config.bin %> relations delete RELATION_ID"
2883
- ],
2884
- "flags": {
2885
- "format": {
2886
- "char": "F",
2887
- "description": "Output format",
2888
- "name": "format",
2889
- "default": "json",
2890
- "hasDynamicHelp": false,
2891
- "multiple": false,
2892
- "options": [
2893
- "json",
2894
- "table",
2895
- "plain"
2896
- ],
2897
- "type": "option"
2898
- }
2899
- },
2900
- "hasDynamicHelp": false,
2901
- "hiddenAliases": [],
2902
- "id": "relations:delete",
2903
- "pluginAlias": "linear-cli-agents",
2904
- "pluginName": "linear-cli-agents",
2905
- "pluginType": "core",
2906
- "strict": true,
2907
- "enableJsonFlag": false,
2908
- "isESM": true,
2909
- "relativePath": [
2910
- "dist",
2911
- "commands",
2912
- "relations",
2913
- "delete.js"
2914
- ]
2915
- },
2916
- "relations:list": {
2917
- "aliases": [],
2918
- "args": {
2919
- "issue": {
2920
- "description": "Issue ID or identifier (e.g., ENG-123)",
2921
- "name": "issue",
2922
- "required": true
2923
- }
2924
- },
2925
- "description": "List relations for an issue",
2926
- "examples": [
2927
- "<%= config.bin %> relations list ENG-123",
2928
- "<%= config.bin %> relations list ENG-123 --format table"
2929
- ],
2930
- "flags": {
2931
- "format": {
2932
- "char": "F",
2933
- "description": "Output format",
2934
- "name": "format",
2935
- "default": "json",
3674
+ "content": {
3675
+ "char": "c",
3676
+ "description": "Project content (markdown, for longer descriptions)",
3677
+ "name": "content",
2936
3678
  "hasDynamicHelp": false,
2937
3679
  "multiple": false,
2938
- "options": [
2939
- "json",
2940
- "table",
2941
- "plain"
2942
- ],
2943
3680
  "type": "option"
2944
3681
  }
2945
3682
  },
2946
3683
  "hasDynamicHelp": false,
2947
3684
  "hiddenAliases": [],
2948
- "id": "relations:list",
3685
+ "id": "projects:update",
2949
3686
  "pluginAlias": "linear-cli-agents",
2950
3687
  "pluginName": "linear-cli-agents",
2951
3688
  "pluginType": "core",
@@ -2955,8 +3692,8 @@
2955
3692
  "relativePath": [
2956
3693
  "dist",
2957
3694
  "commands",
2958
- "relations",
2959
- "list.js"
3695
+ "projects",
3696
+ "update.js"
2960
3697
  ]
2961
3698
  },
2962
3699
  "states:list": {
@@ -3453,5 +4190,5 @@
3453
4190
  ]
3454
4191
  }
3455
4192
  },
3456
- "version": "0.6.0"
4193
+ "version": "0.7.1"
3457
4194
  }