linear-cli-agents 0.6.0 → 0.7.0
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.
- package/README.md +68 -1
- package/dist/commands/documents/create.d.ts +13 -0
- package/dist/commands/documents/create.js +68 -0
- package/dist/commands/documents/delete.d.ts +9 -0
- package/dist/commands/documents/delete.js +32 -0
- package/dist/commands/documents/get.d.ts +12 -0
- package/dist/commands/documents/get.js +79 -0
- package/dist/commands/documents/list.d.ts +12 -0
- package/dist/commands/documents/list.js +105 -0
- package/dist/commands/documents/update.d.ts +16 -0
- package/dist/commands/documents/update.js +75 -0
- package/dist/commands/info.js +161 -3
- package/dist/commands/initiatives/archive.d.ts +12 -0
- package/dist/commands/initiatives/archive.js +44 -0
- package/dist/commands/initiatives/create.d.ts +15 -0
- package/dist/commands/initiatives/create.js +84 -0
- package/dist/commands/initiatives/delete.d.ts +9 -0
- package/dist/commands/initiatives/delete.js +32 -0
- package/dist/commands/initiatives/get.d.ts +12 -0
- package/dist/commands/initiatives/get.js +90 -0
- package/dist/commands/initiatives/list.d.ts +11 -0
- package/dist/commands/initiatives/list.js +135 -0
- package/dist/commands/initiatives/update.d.ts +18 -0
- package/dist/commands/initiatives/update.js +90 -0
- package/dist/commands/issues/bulk-update.d.ts +2 -0
- package/dist/commands/issues/bulk-update.js +10 -0
- package/dist/commands/issues/create.d.ts +2 -0
- package/dist/commands/issues/create.js +10 -0
- package/dist/commands/issues/get.d.ts +1 -0
- package/dist/commands/issues/get.js +19 -1
- package/dist/commands/issues/update.d.ts +2 -0
- package/dist/commands/issues/update.js +12 -0
- package/dist/commands/upload.d.ts +13 -0
- package/dist/commands/upload.js +117 -0
- package/oclif.manifest.json +1129 -408
- package/package.json +7 -1
package/oclif.manifest.json
CHANGED
|
@@ -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,54 +494,24 @@
|
|
|
448
494
|
"status.js"
|
|
449
495
|
]
|
|
450
496
|
},
|
|
451
|
-
"
|
|
497
|
+
"config:get": {
|
|
452
498
|
"aliases": [],
|
|
453
|
-
"args": {
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
"<%= config.bin %> cycles current --team ENG --format table"
|
|
459
|
-
],
|
|
460
|
-
"flags": {
|
|
461
|
-
"format": {
|
|
462
|
-
"char": "F",
|
|
463
|
-
"description": "Output format",
|
|
464
|
-
"name": "format",
|
|
465
|
-
"default": "json",
|
|
466
|
-
"hasDynamicHelp": false,
|
|
467
|
-
"multiple": false,
|
|
468
|
-
"options": [
|
|
469
|
-
"json",
|
|
470
|
-
"table",
|
|
471
|
-
"plain"
|
|
472
|
-
],
|
|
473
|
-
"type": "option"
|
|
474
|
-
},
|
|
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",
|
|
491
|
-
"hasDynamicHelp": false,
|
|
492
|
-
"multiple": false,
|
|
493
|
-
"type": "option"
|
|
499
|
+
"args": {
|
|
500
|
+
"key": {
|
|
501
|
+
"description": "Config key (default-team-id, default-team-key)",
|
|
502
|
+
"name": "key",
|
|
503
|
+
"required": true
|
|
494
504
|
}
|
|
495
505
|
},
|
|
506
|
+
"description": "Get a configuration value",
|
|
507
|
+
"examples": [
|
|
508
|
+
"<%= config.bin %> config get default-team-id",
|
|
509
|
+
"<%= config.bin %> config get default-team-key"
|
|
510
|
+
],
|
|
511
|
+
"flags": {},
|
|
496
512
|
"hasDynamicHelp": false,
|
|
497
513
|
"hiddenAliases": [],
|
|
498
|
-
"id": "
|
|
514
|
+
"id": "config:get",
|
|
499
515
|
"pluginAlias": "linear-cli-agents",
|
|
500
516
|
"pluginName": "linear-cli-agents",
|
|
501
517
|
"pluginType": "core",
|
|
@@ -505,43 +521,21 @@
|
|
|
505
521
|
"relativePath": [
|
|
506
522
|
"dist",
|
|
507
523
|
"commands",
|
|
508
|
-
"
|
|
509
|
-
"
|
|
524
|
+
"config",
|
|
525
|
+
"get.js"
|
|
510
526
|
]
|
|
511
527
|
},
|
|
512
|
-
"
|
|
528
|
+
"config:list": {
|
|
513
529
|
"aliases": [],
|
|
514
|
-
"args": {
|
|
515
|
-
|
|
516
|
-
"description": "Cycle ID",
|
|
517
|
-
"name": "id",
|
|
518
|
-
"required": true
|
|
519
|
-
}
|
|
520
|
-
},
|
|
521
|
-
"description": "Get cycle (sprint) details",
|
|
530
|
+
"args": {},
|
|
531
|
+
"description": "List all configuration values",
|
|
522
532
|
"examples": [
|
|
523
|
-
"<%= config.bin %>
|
|
524
|
-
"<%= config.bin %> cycles get CYCLE_ID --format table"
|
|
533
|
+
"<%= config.bin %> config list"
|
|
525
534
|
],
|
|
526
|
-
"flags": {
|
|
527
|
-
"format": {
|
|
528
|
-
"char": "F",
|
|
529
|
-
"description": "Output format",
|
|
530
|
-
"name": "format",
|
|
531
|
-
"default": "json",
|
|
532
|
-
"hasDynamicHelp": false,
|
|
533
|
-
"multiple": false,
|
|
534
|
-
"options": [
|
|
535
|
-
"json",
|
|
536
|
-
"table",
|
|
537
|
-
"plain"
|
|
538
|
-
],
|
|
539
|
-
"type": "option"
|
|
540
|
-
}
|
|
541
|
-
},
|
|
535
|
+
"flags": {},
|
|
542
536
|
"hasDynamicHelp": false,
|
|
543
537
|
"hiddenAliases": [],
|
|
544
|
-
"id": "
|
|
538
|
+
"id": "config:list",
|
|
545
539
|
"pluginAlias": "linear-cli-agents",
|
|
546
540
|
"pluginName": "linear-cli-agents",
|
|
547
541
|
"pluginType": "core",
|
|
@@ -551,87 +545,33 @@
|
|
|
551
545
|
"relativePath": [
|
|
552
546
|
"dist",
|
|
553
547
|
"commands",
|
|
554
|
-
"
|
|
555
|
-
"
|
|
548
|
+
"config",
|
|
549
|
+
"list.js"
|
|
556
550
|
]
|
|
557
551
|
},
|
|
558
|
-
"
|
|
552
|
+
"config:set": {
|
|
559
553
|
"aliases": [],
|
|
560
|
-
"args": {
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
"<%= config.bin %> cycles list --team ENG",
|
|
566
|
-
"<%= config.bin %> cycles list --format table",
|
|
567
|
-
"<%= config.bin %> cycles list --active"
|
|
568
|
-
],
|
|
569
|
-
"flags": {
|
|
570
|
-
"format": {
|
|
571
|
-
"char": "F",
|
|
572
|
-
"description": "Output format",
|
|
573
|
-
"name": "format",
|
|
574
|
-
"default": "json",
|
|
575
|
-
"hasDynamicHelp": false,
|
|
576
|
-
"multiple": false,
|
|
577
|
-
"options": [
|
|
578
|
-
"json",
|
|
579
|
-
"table",
|
|
580
|
-
"plain"
|
|
581
|
-
],
|
|
582
|
-
"type": "option"
|
|
583
|
-
},
|
|
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
|
-
"first": {
|
|
617
|
-
"description": "Number of cycles to fetch (default: 50)",
|
|
618
|
-
"name": "first",
|
|
619
|
-
"default": 50,
|
|
620
|
-
"hasDynamicHelp": false,
|
|
621
|
-
"multiple": false,
|
|
622
|
-
"type": "option"
|
|
554
|
+
"args": {
|
|
555
|
+
"key": {
|
|
556
|
+
"description": "Config key (default-team-id, default-team-key)",
|
|
557
|
+
"name": "key",
|
|
558
|
+
"required": true
|
|
623
559
|
},
|
|
624
|
-
"
|
|
625
|
-
"description": "
|
|
626
|
-
"name": "
|
|
627
|
-
"
|
|
628
|
-
"multiple": false,
|
|
629
|
-
"type": "option"
|
|
560
|
+
"value": {
|
|
561
|
+
"description": "Config value",
|
|
562
|
+
"name": "value",
|
|
563
|
+
"required": true
|
|
630
564
|
}
|
|
631
565
|
},
|
|
566
|
+
"description": "Set a configuration value",
|
|
567
|
+
"examples": [
|
|
568
|
+
"<%= config.bin %> config set default-team-id d1ad1a80-9267-4ebc-979a-eaf885898a2c",
|
|
569
|
+
"<%= config.bin %> config set default-team-key MITO"
|
|
570
|
+
],
|
|
571
|
+
"flags": {},
|
|
632
572
|
"hasDynamicHelp": false,
|
|
633
573
|
"hiddenAliases": [],
|
|
634
|
-
"id": "
|
|
574
|
+
"id": "config:set",
|
|
635
575
|
"pluginAlias": "linear-cli-agents",
|
|
636
576
|
"pluginName": "linear-cli-agents",
|
|
637
577
|
"pluginType": "core",
|
|
@@ -641,8 +581,8 @@
|
|
|
641
581
|
"relativePath": [
|
|
642
582
|
"dist",
|
|
643
583
|
"commands",
|
|
644
|
-
"
|
|
645
|
-
"
|
|
584
|
+
"config",
|
|
585
|
+
"set.js"
|
|
646
586
|
]
|
|
647
587
|
},
|
|
648
588
|
"comments:add": {
|
|
@@ -860,48 +800,726 @@
|
|
|
860
800
|
"update.js"
|
|
861
801
|
]
|
|
862
802
|
},
|
|
863
|
-
"
|
|
864
|
-
"aliases": [],
|
|
865
|
-
"args": {
|
|
866
|
-
"key": {
|
|
867
|
-
"description": "Config key (default-team-id, default-team-key)",
|
|
868
|
-
"name": "key",
|
|
869
|
-
"required": true
|
|
870
|
-
}
|
|
871
|
-
},
|
|
872
|
-
"description": "Get a configuration value",
|
|
873
|
-
"examples": [
|
|
874
|
-
"<%= config.bin %> config get default-team-id",
|
|
875
|
-
"<%= config.bin %> config get default-team-key"
|
|
876
|
-
],
|
|
877
|
-
"flags": {},
|
|
878
|
-
"hasDynamicHelp": false,
|
|
879
|
-
"hiddenAliases": [],
|
|
880
|
-
"id": "config:get",
|
|
881
|
-
"pluginAlias": "linear-cli-agents",
|
|
882
|
-
"pluginName": "linear-cli-agents",
|
|
883
|
-
"pluginType": "core",
|
|
884
|
-
"strict": true,
|
|
885
|
-
"enableJsonFlag": false,
|
|
886
|
-
"isESM": true,
|
|
887
|
-
"relativePath": [
|
|
888
|
-
"dist",
|
|
889
|
-
"commands",
|
|
890
|
-
"config",
|
|
891
|
-
"get.js"
|
|
892
|
-
]
|
|
893
|
-
},
|
|
894
|
-
"config:list": {
|
|
803
|
+
"cycles:current": {
|
|
895
804
|
"aliases": [],
|
|
896
805
|
"args": {},
|
|
897
|
-
"description": "
|
|
806
|
+
"description": "Get the current active cycle for a team",
|
|
898
807
|
"examples": [
|
|
899
|
-
"<%= config.bin %>
|
|
900
|
-
|
|
808
|
+
"<%= config.bin %> cycles current --team ENG",
|
|
809
|
+
"<%= config.bin %> cycles current --team-id TEAM_ID",
|
|
810
|
+
"<%= config.bin %> cycles current --team ENG --format table"
|
|
811
|
+
],
|
|
812
|
+
"flags": {
|
|
813
|
+
"format": {
|
|
814
|
+
"char": "F",
|
|
815
|
+
"description": "Output format",
|
|
816
|
+
"name": "format",
|
|
817
|
+
"default": "json",
|
|
818
|
+
"hasDynamicHelp": false,
|
|
819
|
+
"multiple": false,
|
|
820
|
+
"options": [
|
|
821
|
+
"json",
|
|
822
|
+
"table",
|
|
823
|
+
"plain"
|
|
824
|
+
],
|
|
825
|
+
"type": "option"
|
|
826
|
+
},
|
|
827
|
+
"team-id": {
|
|
828
|
+
"description": "Team ID",
|
|
829
|
+
"exclusive": [
|
|
830
|
+
"team"
|
|
831
|
+
],
|
|
832
|
+
"name": "team-id",
|
|
833
|
+
"hasDynamicHelp": false,
|
|
834
|
+
"multiple": false,
|
|
835
|
+
"type": "option"
|
|
836
|
+
},
|
|
837
|
+
"team": {
|
|
838
|
+
"description": "Team key (e.g., ENG)",
|
|
839
|
+
"exclusive": [
|
|
840
|
+
"team-id"
|
|
841
|
+
],
|
|
842
|
+
"name": "team",
|
|
843
|
+
"hasDynamicHelp": false,
|
|
844
|
+
"multiple": false,
|
|
845
|
+
"type": "option"
|
|
846
|
+
}
|
|
847
|
+
},
|
|
848
|
+
"hasDynamicHelp": false,
|
|
849
|
+
"hiddenAliases": [],
|
|
850
|
+
"id": "cycles:current",
|
|
851
|
+
"pluginAlias": "linear-cli-agents",
|
|
852
|
+
"pluginName": "linear-cli-agents",
|
|
853
|
+
"pluginType": "core",
|
|
854
|
+
"strict": true,
|
|
855
|
+
"enableJsonFlag": false,
|
|
856
|
+
"isESM": true,
|
|
857
|
+
"relativePath": [
|
|
858
|
+
"dist",
|
|
859
|
+
"commands",
|
|
860
|
+
"cycles",
|
|
861
|
+
"current.js"
|
|
862
|
+
]
|
|
863
|
+
},
|
|
864
|
+
"cycles:get": {
|
|
865
|
+
"aliases": [],
|
|
866
|
+
"args": {
|
|
867
|
+
"id": {
|
|
868
|
+
"description": "Cycle ID",
|
|
869
|
+
"name": "id",
|
|
870
|
+
"required": true
|
|
871
|
+
}
|
|
872
|
+
},
|
|
873
|
+
"description": "Get cycle (sprint) details",
|
|
874
|
+
"examples": [
|
|
875
|
+
"<%= config.bin %> cycles get CYCLE_ID",
|
|
876
|
+
"<%= config.bin %> cycles get CYCLE_ID --format table"
|
|
877
|
+
],
|
|
878
|
+
"flags": {
|
|
879
|
+
"format": {
|
|
880
|
+
"char": "F",
|
|
881
|
+
"description": "Output format",
|
|
882
|
+
"name": "format",
|
|
883
|
+
"default": "json",
|
|
884
|
+
"hasDynamicHelp": false,
|
|
885
|
+
"multiple": false,
|
|
886
|
+
"options": [
|
|
887
|
+
"json",
|
|
888
|
+
"table",
|
|
889
|
+
"plain"
|
|
890
|
+
],
|
|
891
|
+
"type": "option"
|
|
892
|
+
}
|
|
893
|
+
},
|
|
894
|
+
"hasDynamicHelp": false,
|
|
895
|
+
"hiddenAliases": [],
|
|
896
|
+
"id": "cycles:get",
|
|
897
|
+
"pluginAlias": "linear-cli-agents",
|
|
898
|
+
"pluginName": "linear-cli-agents",
|
|
899
|
+
"pluginType": "core",
|
|
900
|
+
"strict": true,
|
|
901
|
+
"enableJsonFlag": false,
|
|
902
|
+
"isESM": true,
|
|
903
|
+
"relativePath": [
|
|
904
|
+
"dist",
|
|
905
|
+
"commands",
|
|
906
|
+
"cycles",
|
|
907
|
+
"get.js"
|
|
908
|
+
]
|
|
909
|
+
},
|
|
910
|
+
"cycles:list": {
|
|
911
|
+
"aliases": [],
|
|
912
|
+
"args": {},
|
|
913
|
+
"description": "List cycles (sprints)",
|
|
914
|
+
"examples": [
|
|
915
|
+
"<%= config.bin %> cycles list",
|
|
916
|
+
"<%= config.bin %> cycles list --team-id TEAM_ID",
|
|
917
|
+
"<%= config.bin %> cycles list --team ENG",
|
|
918
|
+
"<%= config.bin %> cycles list --format table",
|
|
919
|
+
"<%= config.bin %> cycles list --active"
|
|
920
|
+
],
|
|
921
|
+
"flags": {
|
|
922
|
+
"format": {
|
|
923
|
+
"char": "F",
|
|
924
|
+
"description": "Output format",
|
|
925
|
+
"name": "format",
|
|
926
|
+
"default": "json",
|
|
927
|
+
"hasDynamicHelp": false,
|
|
928
|
+
"multiple": false,
|
|
929
|
+
"options": [
|
|
930
|
+
"json",
|
|
931
|
+
"table",
|
|
932
|
+
"plain"
|
|
933
|
+
],
|
|
934
|
+
"type": "option"
|
|
935
|
+
},
|
|
936
|
+
"team-id": {
|
|
937
|
+
"description": "Filter by team ID",
|
|
938
|
+
"name": "team-id",
|
|
939
|
+
"hasDynamicHelp": false,
|
|
940
|
+
"multiple": false,
|
|
941
|
+
"type": "option"
|
|
942
|
+
},
|
|
943
|
+
"team": {
|
|
944
|
+
"description": "Filter by team key (e.g., ENG)",
|
|
945
|
+
"name": "team",
|
|
946
|
+
"hasDynamicHelp": false,
|
|
947
|
+
"multiple": false,
|
|
948
|
+
"type": "option"
|
|
949
|
+
},
|
|
950
|
+
"active": {
|
|
951
|
+
"description": "Show only active cycles",
|
|
952
|
+
"name": "active",
|
|
953
|
+
"allowNo": false,
|
|
954
|
+
"type": "boolean"
|
|
955
|
+
},
|
|
956
|
+
"upcoming": {
|
|
957
|
+
"description": "Show only upcoming cycles",
|
|
958
|
+
"name": "upcoming",
|
|
959
|
+
"allowNo": false,
|
|
960
|
+
"type": "boolean"
|
|
961
|
+
},
|
|
962
|
+
"completed": {
|
|
963
|
+
"description": "Show only completed cycles",
|
|
964
|
+
"name": "completed",
|
|
965
|
+
"allowNo": false,
|
|
966
|
+
"type": "boolean"
|
|
967
|
+
},
|
|
968
|
+
"first": {
|
|
969
|
+
"description": "Number of cycles to fetch (default: 50)",
|
|
970
|
+
"name": "first",
|
|
971
|
+
"default": 50,
|
|
972
|
+
"hasDynamicHelp": false,
|
|
973
|
+
"multiple": false,
|
|
974
|
+
"type": "option"
|
|
975
|
+
},
|
|
976
|
+
"after": {
|
|
977
|
+
"description": "Cursor for pagination",
|
|
978
|
+
"name": "after",
|
|
979
|
+
"hasDynamicHelp": false,
|
|
980
|
+
"multiple": false,
|
|
981
|
+
"type": "option"
|
|
982
|
+
}
|
|
983
|
+
},
|
|
984
|
+
"hasDynamicHelp": false,
|
|
985
|
+
"hiddenAliases": [],
|
|
986
|
+
"id": "cycles:list",
|
|
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
|
+
"cycles",
|
|
997
|
+
"list.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
|
+
],
|
|
901
1411
|
"flags": {},
|
|
902
1412
|
"hasDynamicHelp": false,
|
|
903
1413
|
"hiddenAliases": [],
|
|
904
|
-
"id": "
|
|
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",
|
|
905
1523
|
"pluginAlias": "linear-cli-agents",
|
|
906
1524
|
"pluginName": "linear-cli-agents",
|
|
907
1525
|
"pluginType": "core",
|
|
@@ -911,33 +1529,87 @@
|
|
|
911
1529
|
"relativePath": [
|
|
912
1530
|
"dist",
|
|
913
1531
|
"commands",
|
|
914
|
-
"
|
|
1532
|
+
"initiatives",
|
|
915
1533
|
"list.js"
|
|
916
1534
|
]
|
|
917
1535
|
},
|
|
918
|
-
"
|
|
1536
|
+
"initiatives:update": {
|
|
919
1537
|
"aliases": [],
|
|
920
1538
|
"args": {
|
|
921
|
-
"
|
|
922
|
-
"description": "
|
|
923
|
-
"name": "
|
|
924
|
-
"required": true
|
|
925
|
-
},
|
|
926
|
-
"value": {
|
|
927
|
-
"description": "Config value",
|
|
928
|
-
"name": "value",
|
|
1539
|
+
"id": {
|
|
1540
|
+
"description": "Initiative ID",
|
|
1541
|
+
"name": "id",
|
|
929
1542
|
"required": true
|
|
930
1543
|
}
|
|
931
1544
|
},
|
|
932
|
-
"description": "
|
|
1545
|
+
"description": "Update an initiative",
|
|
933
1546
|
"examples": [
|
|
934
|
-
"<%= config.bin %>
|
|
935
|
-
"<%= config.bin %>
|
|
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"
|
|
936
1550
|
],
|
|
937
|
-
"flags": {
|
|
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
|
+
},
|
|
938
1610
|
"hasDynamicHelp": false,
|
|
939
1611
|
"hiddenAliases": [],
|
|
940
|
-
"id": "
|
|
1612
|
+
"id": "initiatives:update",
|
|
941
1613
|
"pluginAlias": "linear-cli-agents",
|
|
942
1614
|
"pluginName": "linear-cli-agents",
|
|
943
1615
|
"pluginType": "core",
|
|
@@ -947,8 +1619,8 @@
|
|
|
947
1619
|
"relativePath": [
|
|
948
1620
|
"dist",
|
|
949
1621
|
"commands",
|
|
950
|
-
"
|
|
951
|
-
"
|
|
1622
|
+
"initiatives",
|
|
1623
|
+
"update.js"
|
|
952
1624
|
]
|
|
953
1625
|
},
|
|
954
1626
|
"issues:add-labels": {
|
|
@@ -1167,6 +1839,20 @@
|
|
|
1167
1839
|
"hasDynamicHelp": false,
|
|
1168
1840
|
"multiple": false,
|
|
1169
1841
|
"type": "option"
|
|
1842
|
+
},
|
|
1843
|
+
"due-date": {
|
|
1844
|
+
"description": "Due date (YYYY-MM-DD)",
|
|
1845
|
+
"name": "due-date",
|
|
1846
|
+
"hasDynamicHelp": false,
|
|
1847
|
+
"multiple": false,
|
|
1848
|
+
"type": "option"
|
|
1849
|
+
},
|
|
1850
|
+
"cycle-id": {
|
|
1851
|
+
"description": "Cycle (sprint) ID",
|
|
1852
|
+
"name": "cycle-id",
|
|
1853
|
+
"hasDynamicHelp": false,
|
|
1854
|
+
"multiple": false,
|
|
1855
|
+
"type": "option"
|
|
1170
1856
|
}
|
|
1171
1857
|
},
|
|
1172
1858
|
"hasDynamicHelp": false,
|
|
@@ -1273,6 +1959,20 @@
|
|
|
1273
1959
|
"hasDynamicHelp": false,
|
|
1274
1960
|
"multiple": false,
|
|
1275
1961
|
"type": "option"
|
|
1962
|
+
},
|
|
1963
|
+
"due-date": {
|
|
1964
|
+
"description": "Due date (YYYY-MM-DD)",
|
|
1965
|
+
"name": "due-date",
|
|
1966
|
+
"hasDynamicHelp": false,
|
|
1967
|
+
"multiple": false,
|
|
1968
|
+
"type": "option"
|
|
1969
|
+
},
|
|
1970
|
+
"cycle-id": {
|
|
1971
|
+
"description": "Cycle (sprint) ID",
|
|
1972
|
+
"name": "cycle-id",
|
|
1973
|
+
"hasDynamicHelp": false,
|
|
1974
|
+
"multiple": false,
|
|
1975
|
+
"type": "option"
|
|
1276
1976
|
}
|
|
1277
1977
|
},
|
|
1278
1978
|
"hasDynamicHelp": false,
|
|
@@ -1343,6 +2043,7 @@
|
|
|
1343
2043
|
"examples": [
|
|
1344
2044
|
"<%= config.bin %> issues get ENG-123",
|
|
1345
2045
|
"<%= config.bin %> issues get ENG-123 --format table",
|
|
2046
|
+
"<%= config.bin %> issues get ENG-123 --with-attachments",
|
|
1346
2047
|
"<%= config.bin %> issues get abc123"
|
|
1347
2048
|
],
|
|
1348
2049
|
"flags": {
|
|
@@ -1359,6 +2060,12 @@
|
|
|
1359
2060
|
"plain"
|
|
1360
2061
|
],
|
|
1361
2062
|
"type": "option"
|
|
2063
|
+
},
|
|
2064
|
+
"with-attachments": {
|
|
2065
|
+
"description": "Include attachments (linked PRs, commits, etc.)",
|
|
2066
|
+
"name": "with-attachments",
|
|
2067
|
+
"allowNo": false,
|
|
2068
|
+
"type": "boolean"
|
|
1362
2069
|
}
|
|
1363
2070
|
},
|
|
1364
2071
|
"hasDynamicHelp": false,
|
|
@@ -1609,6 +2316,20 @@
|
|
|
1609
2316
|
"hasDynamicHelp": false,
|
|
1610
2317
|
"multiple": false,
|
|
1611
2318
|
"type": "option"
|
|
2319
|
+
},
|
|
2320
|
+
"due-date": {
|
|
2321
|
+
"description": "Due date (YYYY-MM-DD, use empty string to clear)",
|
|
2322
|
+
"name": "due-date",
|
|
2323
|
+
"hasDynamicHelp": false,
|
|
2324
|
+
"multiple": false,
|
|
2325
|
+
"type": "option"
|
|
2326
|
+
},
|
|
2327
|
+
"cycle-id": {
|
|
2328
|
+
"description": "Cycle (sprint) ID (use empty string to remove from cycle)",
|
|
2329
|
+
"name": "cycle-id",
|
|
2330
|
+
"hasDynamicHelp": false,
|
|
2331
|
+
"multiple": false,
|
|
2332
|
+
"type": "option"
|
|
1612
2333
|
}
|
|
1613
2334
|
},
|
|
1614
2335
|
"hasDynamicHelp": false,
|
|
@@ -2865,172 +3586,21 @@
|
|
|
2865
3586
|
"dist",
|
|
2866
3587
|
"commands",
|
|
2867
3588
|
"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",
|
|
2936
|
-
"hasDynamicHelp": false,
|
|
2937
|
-
"multiple": false,
|
|
2938
|
-
"options": [
|
|
2939
|
-
"json",
|
|
2940
|
-
"table",
|
|
2941
|
-
"plain"
|
|
2942
|
-
],
|
|
2943
|
-
"type": "option"
|
|
2944
|
-
}
|
|
2945
|
-
},
|
|
2946
|
-
"hasDynamicHelp": false,
|
|
2947
|
-
"hiddenAliases": [],
|
|
2948
|
-
"id": "relations:list",
|
|
2949
|
-
"pluginAlias": "linear-cli-agents",
|
|
2950
|
-
"pluginName": "linear-cli-agents",
|
|
2951
|
-
"pluginType": "core",
|
|
2952
|
-
"strict": true,
|
|
2953
|
-
"enableJsonFlag": false,
|
|
2954
|
-
"isESM": true,
|
|
2955
|
-
"relativePath": [
|
|
2956
|
-
"dist",
|
|
2957
|
-
"commands",
|
|
2958
|
-
"relations",
|
|
2959
|
-
"list.js"
|
|
2960
|
-
]
|
|
2961
|
-
},
|
|
2962
|
-
"states:list": {
|
|
2963
|
-
"aliases": [],
|
|
2964
|
-
"args": {},
|
|
2965
|
-
"description": "List workflow states in the workspace",
|
|
2966
|
-
"examples": [
|
|
2967
|
-
"<%= config.bin %> states list",
|
|
2968
|
-
"<%= config.bin %> states list --format table",
|
|
2969
|
-
"<%= config.bin %> states list --team ENG"
|
|
2970
|
-
],
|
|
2971
|
-
"flags": {
|
|
2972
|
-
"format": {
|
|
2973
|
-
"char": "F",
|
|
2974
|
-
"description": "Output format",
|
|
2975
|
-
"name": "format",
|
|
2976
|
-
"default": "json",
|
|
2977
|
-
"hasDynamicHelp": false,
|
|
2978
|
-
"multiple": false,
|
|
2979
|
-
"options": [
|
|
2980
|
-
"json",
|
|
2981
|
-
"table",
|
|
2982
|
-
"plain"
|
|
2983
|
-
],
|
|
2984
|
-
"type": "option"
|
|
2985
|
-
},
|
|
2986
|
-
"team": {
|
|
2987
|
-
"char": "t",
|
|
2988
|
-
"description": "Filter by team key (e.g., ENG)",
|
|
2989
|
-
"name": "team",
|
|
2990
|
-
"hasDynamicHelp": false,
|
|
2991
|
-
"multiple": false,
|
|
2992
|
-
"type": "option"
|
|
2993
|
-
},
|
|
2994
|
-
"first": {
|
|
2995
|
-
"description": "Number of states to fetch (default: 100)",
|
|
2996
|
-
"name": "first",
|
|
2997
|
-
"default": 100,
|
|
2998
|
-
"hasDynamicHelp": false,
|
|
2999
|
-
"multiple": false,
|
|
3000
|
-
"type": "option"
|
|
3001
|
-
},
|
|
3002
|
-
"after": {
|
|
3003
|
-
"description": "Cursor for pagination",
|
|
3004
|
-
"name": "after",
|
|
3005
|
-
"hasDynamicHelp": false,
|
|
3006
|
-
"multiple": false,
|
|
3007
|
-
"type": "option"
|
|
3008
|
-
}
|
|
3009
|
-
},
|
|
3010
|
-
"hasDynamicHelp": false,
|
|
3011
|
-
"hiddenAliases": [],
|
|
3012
|
-
"id": "states:list",
|
|
3013
|
-
"pluginAlias": "linear-cli-agents",
|
|
3014
|
-
"pluginName": "linear-cli-agents",
|
|
3015
|
-
"pluginType": "core",
|
|
3016
|
-
"strict": true,
|
|
3017
|
-
"enableJsonFlag": false,
|
|
3018
|
-
"isESM": true,
|
|
3019
|
-
"relativePath": [
|
|
3020
|
-
"dist",
|
|
3021
|
-
"commands",
|
|
3022
|
-
"states",
|
|
3023
|
-
"list.js"
|
|
3589
|
+
"create.js"
|
|
3024
3590
|
]
|
|
3025
3591
|
},
|
|
3026
|
-
"
|
|
3592
|
+
"relations:delete": {
|
|
3027
3593
|
"aliases": [],
|
|
3028
|
-
"args": {
|
|
3029
|
-
|
|
3594
|
+
"args": {
|
|
3595
|
+
"id": {
|
|
3596
|
+
"description": "Relation ID",
|
|
3597
|
+
"name": "id",
|
|
3598
|
+
"required": true
|
|
3599
|
+
}
|
|
3600
|
+
},
|
|
3601
|
+
"description": "Delete an issue relation",
|
|
3030
3602
|
"examples": [
|
|
3031
|
-
"<%= config.bin %>
|
|
3032
|
-
"<%= config.bin %> teams list --format table",
|
|
3033
|
-
"<%= config.bin %> teams list --first 10"
|
|
3603
|
+
"<%= config.bin %> relations delete RELATION_ID"
|
|
3034
3604
|
],
|
|
3035
3605
|
"flags": {
|
|
3036
3606
|
"format": {
|
|
@@ -3046,26 +3616,11 @@
|
|
|
3046
3616
|
"plain"
|
|
3047
3617
|
],
|
|
3048
3618
|
"type": "option"
|
|
3049
|
-
},
|
|
3050
|
-
"first": {
|
|
3051
|
-
"description": "Number of teams to fetch (default: 50)",
|
|
3052
|
-
"name": "first",
|
|
3053
|
-
"default": 50,
|
|
3054
|
-
"hasDynamicHelp": false,
|
|
3055
|
-
"multiple": false,
|
|
3056
|
-
"type": "option"
|
|
3057
|
-
},
|
|
3058
|
-
"after": {
|
|
3059
|
-
"description": "Cursor for pagination",
|
|
3060
|
-
"name": "after",
|
|
3061
|
-
"hasDynamicHelp": false,
|
|
3062
|
-
"multiple": false,
|
|
3063
|
-
"type": "option"
|
|
3064
3619
|
}
|
|
3065
3620
|
},
|
|
3066
3621
|
"hasDynamicHelp": false,
|
|
3067
3622
|
"hiddenAliases": [],
|
|
3068
|
-
"id": "
|
|
3623
|
+
"id": "relations:delete",
|
|
3069
3624
|
"pluginAlias": "linear-cli-agents",
|
|
3070
3625
|
"pluginName": "linear-cli-agents",
|
|
3071
3626
|
"pluginType": "core",
|
|
@@ -3075,24 +3630,23 @@
|
|
|
3075
3630
|
"relativePath": [
|
|
3076
3631
|
"dist",
|
|
3077
3632
|
"commands",
|
|
3078
|
-
"
|
|
3079
|
-
"
|
|
3633
|
+
"relations",
|
|
3634
|
+
"delete.js"
|
|
3080
3635
|
]
|
|
3081
3636
|
},
|
|
3082
|
-
"
|
|
3637
|
+
"relations:list": {
|
|
3083
3638
|
"aliases": [],
|
|
3084
3639
|
"args": {
|
|
3085
|
-
"
|
|
3086
|
-
"description": "
|
|
3087
|
-
"name": "
|
|
3640
|
+
"issue": {
|
|
3641
|
+
"description": "Issue ID or identifier (e.g., ENG-123)",
|
|
3642
|
+
"name": "issue",
|
|
3088
3643
|
"required": true
|
|
3089
3644
|
}
|
|
3090
3645
|
},
|
|
3091
|
-
"description": "
|
|
3646
|
+
"description": "List relations for an issue",
|
|
3092
3647
|
"examples": [
|
|
3093
|
-
"<%= config.bin %>
|
|
3094
|
-
"<%= config.bin %>
|
|
3095
|
-
"<%= config.bin %> users get me"
|
|
3648
|
+
"<%= config.bin %> relations list ENG-123",
|
|
3649
|
+
"<%= config.bin %> relations list ENG-123 --format table"
|
|
3096
3650
|
],
|
|
3097
3651
|
"flags": {
|
|
3098
3652
|
"format": {
|
|
@@ -3112,7 +3666,7 @@
|
|
|
3112
3666
|
},
|
|
3113
3667
|
"hasDynamicHelp": false,
|
|
3114
3668
|
"hiddenAliases": [],
|
|
3115
|
-
"id": "
|
|
3669
|
+
"id": "relations:list",
|
|
3116
3670
|
"pluginAlias": "linear-cli-agents",
|
|
3117
3671
|
"pluginName": "linear-cli-agents",
|
|
3118
3672
|
"pluginType": "core",
|
|
@@ -3122,18 +3676,18 @@
|
|
|
3122
3676
|
"relativePath": [
|
|
3123
3677
|
"dist",
|
|
3124
3678
|
"commands",
|
|
3125
|
-
"
|
|
3126
|
-
"
|
|
3679
|
+
"relations",
|
|
3680
|
+
"list.js"
|
|
3127
3681
|
]
|
|
3128
3682
|
},
|
|
3129
|
-
"
|
|
3683
|
+
"teams:list": {
|
|
3130
3684
|
"aliases": [],
|
|
3131
3685
|
"args": {},
|
|
3132
|
-
"description": "List
|
|
3686
|
+
"description": "List teams in the workspace",
|
|
3133
3687
|
"examples": [
|
|
3134
|
-
"<%= config.bin %>
|
|
3135
|
-
"<%= config.bin %>
|
|
3136
|
-
"<%= config.bin %>
|
|
3688
|
+
"<%= config.bin %> teams list",
|
|
3689
|
+
"<%= config.bin %> teams list --format table",
|
|
3690
|
+
"<%= config.bin %> teams list --first 10"
|
|
3137
3691
|
],
|
|
3138
3692
|
"flags": {
|
|
3139
3693
|
"format": {
|
|
@@ -3150,16 +3704,10 @@
|
|
|
3150
3704
|
],
|
|
3151
3705
|
"type": "option"
|
|
3152
3706
|
},
|
|
3153
|
-
"active": {
|
|
3154
|
-
"description": "Show only active users",
|
|
3155
|
-
"name": "active",
|
|
3156
|
-
"allowNo": false,
|
|
3157
|
-
"type": "boolean"
|
|
3158
|
-
},
|
|
3159
3707
|
"first": {
|
|
3160
|
-
"description": "Number of
|
|
3708
|
+
"description": "Number of teams to fetch (default: 50)",
|
|
3161
3709
|
"name": "first",
|
|
3162
|
-
"default":
|
|
3710
|
+
"default": 50,
|
|
3163
3711
|
"hasDynamicHelp": false,
|
|
3164
3712
|
"multiple": false,
|
|
3165
3713
|
"type": "option"
|
|
@@ -3174,7 +3722,7 @@
|
|
|
3174
3722
|
},
|
|
3175
3723
|
"hasDynamicHelp": false,
|
|
3176
3724
|
"hiddenAliases": [],
|
|
3177
|
-
"id": "
|
|
3725
|
+
"id": "teams:list",
|
|
3178
3726
|
"pluginAlias": "linear-cli-agents",
|
|
3179
3727
|
"pluginName": "linear-cli-agents",
|
|
3180
3728
|
"pluginType": "core",
|
|
@@ -3184,7 +3732,7 @@
|
|
|
3184
3732
|
"relativePath": [
|
|
3185
3733
|
"dist",
|
|
3186
3734
|
"commands",
|
|
3187
|
-
"
|
|
3735
|
+
"teams",
|
|
3188
3736
|
"list.js"
|
|
3189
3737
|
]
|
|
3190
3738
|
},
|
|
@@ -3451,7 +3999,180 @@
|
|
|
3451
3999
|
"templates",
|
|
3452
4000
|
"update.js"
|
|
3453
4001
|
]
|
|
4002
|
+
},
|
|
4003
|
+
"users:get": {
|
|
4004
|
+
"aliases": [],
|
|
4005
|
+
"args": {
|
|
4006
|
+
"id": {
|
|
4007
|
+
"description": "User ID (use \"me\" for current user)",
|
|
4008
|
+
"name": "id",
|
|
4009
|
+
"required": true
|
|
4010
|
+
}
|
|
4011
|
+
},
|
|
4012
|
+
"description": "Get a single user by ID",
|
|
4013
|
+
"examples": [
|
|
4014
|
+
"<%= config.bin %> users get USER_ID",
|
|
4015
|
+
"<%= config.bin %> users get USER_ID --format table",
|
|
4016
|
+
"<%= config.bin %> users get me"
|
|
4017
|
+
],
|
|
4018
|
+
"flags": {
|
|
4019
|
+
"format": {
|
|
4020
|
+
"char": "F",
|
|
4021
|
+
"description": "Output format",
|
|
4022
|
+
"name": "format",
|
|
4023
|
+
"default": "json",
|
|
4024
|
+
"hasDynamicHelp": false,
|
|
4025
|
+
"multiple": false,
|
|
4026
|
+
"options": [
|
|
4027
|
+
"json",
|
|
4028
|
+
"table",
|
|
4029
|
+
"plain"
|
|
4030
|
+
],
|
|
4031
|
+
"type": "option"
|
|
4032
|
+
}
|
|
4033
|
+
},
|
|
4034
|
+
"hasDynamicHelp": false,
|
|
4035
|
+
"hiddenAliases": [],
|
|
4036
|
+
"id": "users:get",
|
|
4037
|
+
"pluginAlias": "linear-cli-agents",
|
|
4038
|
+
"pluginName": "linear-cli-agents",
|
|
4039
|
+
"pluginType": "core",
|
|
4040
|
+
"strict": true,
|
|
4041
|
+
"enableJsonFlag": false,
|
|
4042
|
+
"isESM": true,
|
|
4043
|
+
"relativePath": [
|
|
4044
|
+
"dist",
|
|
4045
|
+
"commands",
|
|
4046
|
+
"users",
|
|
4047
|
+
"get.js"
|
|
4048
|
+
]
|
|
4049
|
+
},
|
|
4050
|
+
"users:list": {
|
|
4051
|
+
"aliases": [],
|
|
4052
|
+
"args": {},
|
|
4053
|
+
"description": "List users in the workspace",
|
|
4054
|
+
"examples": [
|
|
4055
|
+
"<%= config.bin %> users list",
|
|
4056
|
+
"<%= config.bin %> users list --format table",
|
|
4057
|
+
"<%= config.bin %> users list --active"
|
|
4058
|
+
],
|
|
4059
|
+
"flags": {
|
|
4060
|
+
"format": {
|
|
4061
|
+
"char": "F",
|
|
4062
|
+
"description": "Output format",
|
|
4063
|
+
"name": "format",
|
|
4064
|
+
"default": "json",
|
|
4065
|
+
"hasDynamicHelp": false,
|
|
4066
|
+
"multiple": false,
|
|
4067
|
+
"options": [
|
|
4068
|
+
"json",
|
|
4069
|
+
"table",
|
|
4070
|
+
"plain"
|
|
4071
|
+
],
|
|
4072
|
+
"type": "option"
|
|
4073
|
+
},
|
|
4074
|
+
"active": {
|
|
4075
|
+
"description": "Show only active users",
|
|
4076
|
+
"name": "active",
|
|
4077
|
+
"allowNo": false,
|
|
4078
|
+
"type": "boolean"
|
|
4079
|
+
},
|
|
4080
|
+
"first": {
|
|
4081
|
+
"description": "Number of users to fetch (default: 100)",
|
|
4082
|
+
"name": "first",
|
|
4083
|
+
"default": 100,
|
|
4084
|
+
"hasDynamicHelp": false,
|
|
4085
|
+
"multiple": false,
|
|
4086
|
+
"type": "option"
|
|
4087
|
+
},
|
|
4088
|
+
"after": {
|
|
4089
|
+
"description": "Cursor for pagination",
|
|
4090
|
+
"name": "after",
|
|
4091
|
+
"hasDynamicHelp": false,
|
|
4092
|
+
"multiple": false,
|
|
4093
|
+
"type": "option"
|
|
4094
|
+
}
|
|
4095
|
+
},
|
|
4096
|
+
"hasDynamicHelp": false,
|
|
4097
|
+
"hiddenAliases": [],
|
|
4098
|
+
"id": "users:list",
|
|
4099
|
+
"pluginAlias": "linear-cli-agents",
|
|
4100
|
+
"pluginName": "linear-cli-agents",
|
|
4101
|
+
"pluginType": "core",
|
|
4102
|
+
"strict": true,
|
|
4103
|
+
"enableJsonFlag": false,
|
|
4104
|
+
"isESM": true,
|
|
4105
|
+
"relativePath": [
|
|
4106
|
+
"dist",
|
|
4107
|
+
"commands",
|
|
4108
|
+
"users",
|
|
4109
|
+
"list.js"
|
|
4110
|
+
]
|
|
4111
|
+
},
|
|
4112
|
+
"states:list": {
|
|
4113
|
+
"aliases": [],
|
|
4114
|
+
"args": {},
|
|
4115
|
+
"description": "List workflow states in the workspace",
|
|
4116
|
+
"examples": [
|
|
4117
|
+
"<%= config.bin %> states list",
|
|
4118
|
+
"<%= config.bin %> states list --format table",
|
|
4119
|
+
"<%= config.bin %> states list --team ENG"
|
|
4120
|
+
],
|
|
4121
|
+
"flags": {
|
|
4122
|
+
"format": {
|
|
4123
|
+
"char": "F",
|
|
4124
|
+
"description": "Output format",
|
|
4125
|
+
"name": "format",
|
|
4126
|
+
"default": "json",
|
|
4127
|
+
"hasDynamicHelp": false,
|
|
4128
|
+
"multiple": false,
|
|
4129
|
+
"options": [
|
|
4130
|
+
"json",
|
|
4131
|
+
"table",
|
|
4132
|
+
"plain"
|
|
4133
|
+
],
|
|
4134
|
+
"type": "option"
|
|
4135
|
+
},
|
|
4136
|
+
"team": {
|
|
4137
|
+
"char": "t",
|
|
4138
|
+
"description": "Filter by team key (e.g., ENG)",
|
|
4139
|
+
"name": "team",
|
|
4140
|
+
"hasDynamicHelp": false,
|
|
4141
|
+
"multiple": false,
|
|
4142
|
+
"type": "option"
|
|
4143
|
+
},
|
|
4144
|
+
"first": {
|
|
4145
|
+
"description": "Number of states to fetch (default: 100)",
|
|
4146
|
+
"name": "first",
|
|
4147
|
+
"default": 100,
|
|
4148
|
+
"hasDynamicHelp": false,
|
|
4149
|
+
"multiple": false,
|
|
4150
|
+
"type": "option"
|
|
4151
|
+
},
|
|
4152
|
+
"after": {
|
|
4153
|
+
"description": "Cursor for pagination",
|
|
4154
|
+
"name": "after",
|
|
4155
|
+
"hasDynamicHelp": false,
|
|
4156
|
+
"multiple": false,
|
|
4157
|
+
"type": "option"
|
|
4158
|
+
}
|
|
4159
|
+
},
|
|
4160
|
+
"hasDynamicHelp": false,
|
|
4161
|
+
"hiddenAliases": [],
|
|
4162
|
+
"id": "states:list",
|
|
4163
|
+
"pluginAlias": "linear-cli-agents",
|
|
4164
|
+
"pluginName": "linear-cli-agents",
|
|
4165
|
+
"pluginType": "core",
|
|
4166
|
+
"strict": true,
|
|
4167
|
+
"enableJsonFlag": false,
|
|
4168
|
+
"isESM": true,
|
|
4169
|
+
"relativePath": [
|
|
4170
|
+
"dist",
|
|
4171
|
+
"commands",
|
|
4172
|
+
"states",
|
|
4173
|
+
"list.js"
|
|
4174
|
+
]
|
|
3454
4175
|
}
|
|
3455
4176
|
},
|
|
3456
|
-
"version": "0.
|
|
4177
|
+
"version": "0.7.0"
|
|
3457
4178
|
}
|