forked from openmainframeproject/omp-landscape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
landscape.yml
2066 lines (2066 loc) · 111 KB
/
landscape.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
landscape:
- category:
name: Projects
subcategories:
- subcategory:
name: Linux
items:
- item:
name: crc32-s390x
homepage_url: https://github.com/linux-on-ibm-z/crc32-s390x
repo_url: https://github.com/linux-on-ibm-z/crc32-s390x
logo: crc32-s390x.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: Feilong
homepage_url: https://www.openmainframeproject.org/projects/feilong
project: incubating
repo_url: https://github.com/openmainframeproject/feilong
logo: https://raw.githubusercontent.com/openmainframeproject/artwork/master/projects/feilong/feilong-color.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
- item:
name: libica
homepage_url: https://github.com/opencryptoki/libica
repo_url: https://github.com/opencryptoki/libica
logo: libica.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: qclib
description: qclib provides a C API for extraction of system information for Linux on z Systems.
homepage_url: https://developer.ibm.com/technologies/linux
repo_url: https://github.com/openmainframeproject/qclib
logo: qclib.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: s390-tools
homepage_url: https://developer.ibm.com/technologies/linux
repo_url: https://github.com/ibm-s390-linux/s390-tools
logo: s390-tools.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: SMC Tools
homepage_url: https://developer.ibm.com/technologies/linux
repo_url: https://github.com/openmainframeproject/smc-tools
logo: shared-memory-communication-tools.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: snIPL
description: Linux on System z snIPL 'simple network IPL' package.
homepage_url: https://developer.ibm.com/technologies/linux
repo_url: https://github.com/openmainframeproject/snipl
logo: snipl.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: source VIPA
description: src_vipa is a recommended utility that provides a very flexible means of source address selection to arbitrary applications.
homepage_url: https://developer.ibm.com/technologies/linux
repo_url: https://github.com/openmainframeproject/src_vipa
logo: source-vipa.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: sysload
description: >-
System Loader uses a minimal RAM disk based Linux system to run a boot loader application and kexec to boot the final Linux system. Within the
boot loader application all capabilities provided by the kernel can be used to select and access a kernel image and other boot files or to start a
shell and use it as a rescue system.
homepage_url: https://developer.ibm.com/technologies/linux
repo_url: https://github.com/openmainframeproject/sysload
logo: system-loader-sysload.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: tessia
description: A tool to automate and simplify the installation/configuration/testing of Linux systems running on the IBM Z platform
homepage_url: https://github.com/tessia-project
project: incubating
repo_url: https://github.com/tessia-project/tessia
project_org: https://github.com/tessia-project
logo: https://artwork.openmainframeproject.org/projects/tessia/horizontal/color/tessia-horizontal-color.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
- item:
name: VMLINK
homepage_url: https://github.com/trothr/vmlink
repo_url: https://github.com/trothr/vmlink
logo: vmlink.svg
crunchbase: https://www.crunchbase.com/organization/la-casita
- item:
name: zfcp HBA API library
description: zfcp HBA API library, Version 2, is part of an implementation of FC-HBA for the ZFCP device driver to be used with the Linux on Z distributions.
homepage_url: https://developer.ibm.com/technologies/linux
repo_url: https://github.com/openmainframeproject/zfcp-hbaapi
logo: zfcp-hba-api-library.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: ZNETBOOT
homepage_url: https://github.com/trothr/znetboot
repo_url: https://github.com/trothr/znetboot
logo: znetboot.svg
crunchbase: https://www.crunchbase.com/organization/la-casita
- subcategory:
name: z/VM
items:
- item:
name: CMS Make
homepage_url: https://github.com/trothr/cmsmake
repo_url: https://github.com/trothr/cmsmake
logo: cmsmake.svg
crunchbase: https://www.crunchbase.com/organization/la-casita
- item:
name: CMS TAR
homepage_url: https://github.com/trothr/cmstar
repo_url: https://github.com/trothr/cmstar
logo: cmstar.svg
crunchbase: https://www.crunchbase.com/organization/la-casita
- item:
name: ComsoleZ
homepage_url: https://www.openmainframeproject.org/projects/consolez
project: incubating
repo_url: https://github.com/openmainframeproject/consolez
logo: https://artwork.openmainframeproject.org/projects/consolez/horizontal/color/consolez-horizontal-color.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
- item:
name: xmitmsgx
homepage_url: https://github.com/trothr/xmitmsgx
repo_url: https://github.com/trothr/xmitmsgx
logo: xmitmsgx.svg
crunchbase: https://www.crunchbase.com/organization/la-casita
- subcategory:
name: z/OS
items:
- item:
name: CBT Tape
homepage_url: https://www.cbttape.org
project: incubating
repo_url: https://github.com/CBTTape/290
project_org: https://github.com/CBTTape
logo: cbttape.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
- item:
name: GenevaERS
homepage_url: https://genevaers.org
project: incubating
repo_url: https://github.com/genevaers/community
project_org: https://github.com/genevaers
logo: https://raw.githubusercontent.com/openmainframeproject/artwork/master/projects/genevaers/genevaers-color.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
- item:
name: Launcher
homepage_url: https://github.com/phoenixsoftware/Launcher
repo_url: https://github.com/phoenixsoftware/Launcher
logo: phoenix-software-international-launcher.svg
crunchbase: https://www.crunchbase.com/organization/phoenix-software-international
- item:
name: Open z/OS Enablement Working Group
homepage_url: https://github.com/openmainframeproject/wg-open-zos-enablement
project: workinggroup
repo_url: https://github.com/openmainframeproject/wg-open-zos-enablement
logo: https://artwork.openmainframeproject.org/working-groups/open-z-os-enablement-wg/horizontal/color/open-z-os-enablement-wg-horizontal-color.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
- item:
name: Polycephaly
homepage_url: https://www.openmainframeproject.org/projects/polycephaly
project: incubating
repo_url: https://github.com/openmainframeproject/polycephaly
logo: https://raw.githubusercontent.com/openmainframeproject/artwork/master/projects/polycephaly/polycephaly-color.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
- item:
name: z/OS Connector Plugin for Jenkins
homepage_url: https://github.com/jenkinsci/zos-connector-plugin
repo_url: https://github.com/jenkinsci/zos-connector-plugin
logo: jenkins-zos-plugin.svg
crunchbase: https://www.crunchbase.com/organization/jenkins-ci
- item:
name: z/OS Node Accessor
homepage_url: https://github.com/IBM/zos-node-accessor
repo_url: https://github.com/IBM/zos-node-accessor
logo: zos-node-accessor.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: z/OS Tools
homepage_url: https://github.com/IBM/IBM-Z-zOS
repo_url: https://github.com/IBM/IBM-Z-zOS
logo: zos-tools.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: zECS
homepage_url: https://github.com/walmartlabs/zECS
repo_url: https://github.com/walmartlabs/zECS
logo: zecs.svg
crunchbase: https://www.crunchbase.com/organization/walmart-labs
- item:
name: zFAM
homepage_url: https://github.com/walmartlabs/zFAM
repo_url: https://github.com/walmartlabs/zFAM
logo: zfam.svg
crunchbase: https://www.crunchbase.com/organization/walmart-labs
- item:
name: zigi
homepage_url: https://zigi.rocks/
repo_url: https://github.com/wizardofzos/zigi
logo: zigi.svg
twitter: https://twitter.com/ispfgit
crunchbase: https://www.crunchbase.com/organization/zdevops
- item:
name: Zorow
homepage_url: https://www.openmainframeproject.org/projects/zorow
project: incubating
repo_url: https://github.com/openmainframeproject/zorow
logo: https://raw.githubusercontent.com/openmainframeproject/artwork/master/projects/zorow/zorow-color.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
- item:
name: Zowe
description: Zowe is an open source framework for leveraging data and applications in z/OS from modern applications and tools.
homepage_url: https://www.zowe.org
project: graduated
repo_url: https://github.com/zowe/api-layer
project_org: https://github.com/zowe
url_for_bestpractices: https://github.com/zowe/zlc
logo: https://raw.githubusercontent.com/openmainframeproject/artwork/master/projects/zowe/zowe-color.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
- item:
name: zUID
homepage_url: https://github.com/walmartlabs/zUID
repo_url: https://github.com/walmartlabs/zUID
logo: zuid.svg
crunchbase: https://www.crunchbase.com/organization/walmart-labs
- subcategory:
name: Development Tools
items:
- item:
name: Atom language syntax highlighting for z/VM
homepage_url: https://atom.io/users/openmainframeproject
project: incubating
repo_url: https://github.com/openmainframeproject/atompkg-language-zvm-asm
logo: https://raw.githubusercontent.com/openmainframeproject/artwork/master/projects/atom/atom-color.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
- item:
name: COBOL Check
homepage_url: https://www.openmainframeproject.org/projects/cobol-check
project: incubating
repo_url: https://github.com/openmainframeproject/cobol-check
logo: https://artwork.openmainframeproject.org/projects/cobol-check/color/cobol-check-color.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
- item:
name: COBOL Source colouriser for Visual Studio Code
homepage_url: https://github.com/spgennard/vscode_cobol
repo_url: https://github.com/spgennard/vscode_cobol
logo: cobol_source_colouriser_vscode.svg
crunchbase: https://www.crunchbase.com/organization/bitlang-development
- item:
name: Eclipse Che4z
homepage_url: https://projects.eclipse.org/projects/ecd.che.che4z
repo_url: https://github.com/eclipse/che-che4z
logo: che4z.svg
crunchbase: https://www.crunchbase.com/organization/eclipse-foundation
- item:
name: zSublime
homepage_url: https://github.com/vadimshchukin/zsublime
repo_url: https://github.com/vadimshchukin/zsublime
logo: zsublime.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- subcategory:
name: Learning and Mentoring
items:
- item:
name: COBOL Programming Course
homepage_url: https://www.openmainframeproject.org/projects/coboltrainingcourse
project: graduated
repo_url: https://github.com/openmainframeproject/cobol-programming-course
logo: https://raw.githubusercontent.com/openmainframeproject/artwork/master/projects/cobol-programming-course/cobol-programming-course-color.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
- item:
name: COBOL Working Group
homepage_url: https://www.openmainframeproject.org/projects/cobol-working-group
project: workinggroup
repo_url: https://github.com/openmainframeproject/wg-cobol
logo: https://artwork.openmainframeproject.org/working-groups/cobol-wg/color/cobol-wg-color.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
- item:
name: Mentorship
homepage_url: https://www.openmainframeproject.org/projects/mentorship-program
project: graduated
repo_url: https://github.com/openmainframeproject-internship/resources
project_org: https://github.com/openmainframeproject-internship
logo: https://raw.githubusercontent.com/openmainframeproject/artwork/master/projects/mentorship/mentorship-color.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
- item:
name: Open Mainframe Education
homepage_url: https://github.com/openmainframeproject/omp-education
project: incubating
repo_url: https://github.com/openmainframeproject/omp-education
logo: https://raw.githubusercontent.com/openmainframeproject/artwork/master/projects/education/education-color.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
- subcategory:
name: Other
items:
- item:
name: ADE
homepage_url: https://openmainframeproject.github.io/ade/
project: graduated
repo_url: https://github.com/openmainframeproject/ade
logo: https://raw.githubusercontent.com/openmainframeproject/artwork/master/projects/ade/ade-color.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
- item:
name: Ambitus
homepage_url: https://github.com/ambitus
project: incubating
repo_url: https://github.com/ambitus/ambitus
project_org: https://github.com/ambitus
logo: https://raw.githubusercontent.com/openmainframeproject/artwork/master/projects/ambitus/ambitus-color.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
- item:
name: Ductwork
homepage_url: https://github.com/trothr/ductwork
repo_url: https://github.com/trothr/ductwork
logo: ductwork.svg
crunchbase: https://www.crunchbase.com/organization/la-casita
- item:
name: Software Discovery Tool
homepage_url: https://github.com/openmainframeproject/software-discovery-tool
project: incubating
repo_url: https://github.com/openmainframeproject/software-discovery-tool
logo: https://raw.githubusercontent.com/openmainframeproject/artwork/master/projects/softwarediscoverytool/softwarediscoverytool-color.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
- item:
name: TerseDecompress
homepage_url: https://www.openmainframeproject.org/projects/tersedecompress
project: incubating
repo_url: https://github.com/openmainframeproject/tersedecompress
logo: https://raw.githubusercontent.com/openmainframeproject/artwork/master/projects/tersedecompress/tersedecompress-color.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
- category:
name: Zowe Conformant
subcategories:
- subcategory:
name: API Mediation Layer ZOWE V1
items:
- item:
name: (E)JES (API Mediation Layer ZOWE V1)
description: >-
(E)JES is a systems management tool that provides all the information you need to monitor, manage, and control your z/OS® JESplex—whether you are
running JES2 or JES3
homepage_url: https://phoenixsoftware.com/ejes.htm
logo: phoenix-software-international-ejes.svg
crunchbase: https://www.crunchbase.com/organization/phoenix-software-international
allow_duplicate_repo: true
- item:
name: CA Data Content Discovery (API Mediation Layer ZOWE V1)
description: CA Data Content Discovery helps you identify data exposure risks and institute effective measures for enterprise data protection.
homepage_url: https://www.broadcom.com/products/mainframe/compliance-data-protection/data-content-discovery
logo: ca-data-content-discovery.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA Database Management Solutions for Db2 for z/OS (API Mediation Layer ZOWE V1)
description: RESTful APIs for Db2 for z/OS data access and management
homepage_url: https://techdocs.broadcom.com/us/en/ca-mainframe-software/database-management/ca-database-management-solutions-for-db2-for-z-os/20.html
stock_ticker: AVGO
logo: ca-database-management-solutions-for-db2-for-zos.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA Endevor® (API Mediation Layer ZOWE V1)
description: >-
CA Endevor® provides a standardized, reliable and automated approach to securing and managing your software assets. Designed to automate the
development process, CA Endevor governs software change from the very first line of modified code through deployment with change tracking.
homepage_url: https://techdocs.broadcom.com/us/en/ca-mainframe-software/devops/ca-endevor-software-change-manager/18-0.html
stock_ticker: AVGO
logo: ca-endevor.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA File Master™ Plus (API Mediation Layer ZOWE V1)
description: >-
CA File Master™ Plus is a full function z/OS and file/data management product that provides enhanced capabilities for sequential, partitioned, and
VSAM (including IAM) files in an online ISPF interface, Eclipse-based user interface, REST API, CLI and through batch commands.
homepage_url: https://techdocs.broadcom.com/us/en/ca-mainframe-software/devops/ca-filemaster-plus/12-0/using-the-rest-api.html
stock_ticker: AVGO
logo: ca-file-master-plus.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA IDMS (API Mediation Layer ZOWE V1)
description: IDMS RPC and REST APIs provide DCMT, DCUF, Print Log, and Performance Real Time Monitor services.
homepage_url: https://techdocs.broadcom.com/us/en/ca-mainframe-software/database-management/ca-idms/19-0.html
stock_ticker: AVGO
logo: ca-idms.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA JCLCheck™ Workload Automation (API Mediation Layer ZOWE V1)
description: >-
CA JCLCheck Workload Automation lets you validate the accuracy of Job Control Language (JCL) during development or automated processes. Use the
plug-in to identify execution-time errors, such as security violations and missing data sets, that can cause jobs to fail and lead to delays in
production cycles
homepage_url: https://techdocs.broadcom.com/us/en/ca-mainframe-software/automation/ca-jclcheck-workload-automation/12-0.html
stock_ticker: AVGO
logo: ca-jclcheck-workload-automation.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA Mainframe Security Insights Platform (API Mediation Layer ZOWE V1)
homepage_url: https://techdocs.broadcom.com/us/en/ca-mainframe-software/security/ca-mainframe-security-insights-platform/1-0.html
stock_ticker: AVGO
logo: ca-mainframe-security-insights-platform.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA MAT (API Mediation Layer ZOWE V1)
description: >-
This API enables accessing CA Mainframe Application Tuner via modern tools by providing end-points to enable customers to automate and script a
MAT request in their CI/CD pipeline
homepage_url: https://techdocs.broadcom.com/us/en/ca-mainframe-software/devops/ca-mainframe-application-tuner/12-0.html
logo: ca-mat.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA NetMaster (API Mediation Layer ZOWE V1)
description: >-
CA NetMaster includes a microservice that leverages the Open Mainframe Project ZoweTM Spring Boot REST API SDK. It provides NetMaster customers
with an open and standard interface to network management data collected by NetMaster.
homepage_url: https://techdocs.broadcom.com/us/en/ca-mainframe-software/performance-and-storage/ca-netmaster-network-management
logo: ca-netmaster.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA SYSVIEW® Performance Management (API Mediation Layer ZOWE V1)
description: >-
CA SYSVIEW Performance Management allows Application Developers, Automation Engineers, and Systems Programmers to access CA SYSVIEW actions and
data using a modern API.
homepage_url: https://techdocs.broadcom.com/us/en/ca-mainframe-software/performance-and-storage/ca-sysview-performance-management/16-0.html
stock_ticker: AVGO
logo: ca-sysview-performance-management.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA Vantage™ Storage Resource Manager (API Mediation Layer ZOWE V1)
description: CA Vantage™ SRM is an automated storage management system that provides comprehensive reporting, monitoring, and automation capabilities.
homepage_url: https://techdocs.broadcom.com/us/en/ca-mainframe-software/performance-and-storage/ca-vantage-storage-resource-manager/14-0.html
stock_ticker: AVGO
logo: ca-vantage-storage-resource-manager.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA Workload Automation CA 7® (API Mediation Layer ZOWE V1)
description: >-
CA Workload Automation CA7 Edition (WLA CA 7) supports an agile and business–centric IT environment by automating many of the labor-intensive
tasks associated with workload automation and monitoring for z Systems.
homepage_url: https://techdocs.broadcom.com/us/en/ca-mainframe-software/automation/ca-workload-automation-ca-7-edition/12-1.html
stock_ticker: AVGO
logo: ca-workload-automation-ca-7.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: Datacom DST API (API Mediation Layer ZOWE V1)
description: Restful API for accessing CA Datacom Dynamic System Tables
homepage_url: https://techdocs.broadcom.com/us/en/ca-mainframe-software/database-management/ca-datacom-tools/15-1.html
logo: datacom-dst-api.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: IBM® Remote System Explorer API (API Mediation Layer ZOWE V1)
description: >-
REST APIs for working with various components on the z/OS host system, including MVS data sets, z/OS UNIX files and commands, JES jobs, TSO
Commands, and more.
homepage_url: https://ibm.github.io/mainframe-downloads/host-components.html#rse-api-host
logo: ibm-remote-system-explorer-api.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
allow_duplicate_repo: true
- item:
name: IBM® Z Netview (API Mediation Layer ZOWE V1)
description: >-
IBM Z® NetView®, a core component of IBM Z Service Management Suite and IBM Z Service Automation Suite, provides automation and network and
systems management to address your requirements for business agility on IBM Z systems.
homepage_url: https://www-01.ibm.com/common/ssi/ShowDoc.wss?docURL=/common/ssi/rep_ca/4/897/ENUS219-484/index.html&request_locale=en
logo: ibm-z-netview.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
allow_duplicate_repo: true
- item:
name: IBM® Z System Automation (API Mediation Layer ZOWE V1)
description: >-
IBM® Z System Automation is a policy-based, self-healing, high-availability solution to optimize efficiency and availability of critical systems
and applications.
homepage_url: https://www.ibm.com/products/z-system-automation
logo: ibm-z-system-automation.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
allow_duplicate_repo: true
- subcategory:
name: App Framework ZOWE V1
items:
- item:
name: CA Vantage™ Storage Resource Manager (App Framework ZOWE V1)
description: >-
CA Vantage™ Storage Resource Manager Web Client, also known as Mainframe Team Center - Management. Zowe App Framework plugin provides access to
the Mainframe Team Center - Management from Zowe Desktop.
homepage_url: https://techdocs.broadcom.com/us/en/ca-mainframe-software/performance-and-storage/ca-vantage-storage-resource-manager/14-0/web-client.html
stock_ticker: AVGO
logo: ca-vantage-storage-resource-manager.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: IBM Z Service Management Explorer (App Framework ZOWE V1)
description: >-
IBM Z Service Management Explorer is intended to provide a web-based replacement for the java-based IBM Tivoli Enterprise Portal, providing a
graphical user interface for IBM OMEGAMON agents.
homepage_url: https://www.ibm.com/docs/en/om-shared
logo: ibm-z-service-management-explorer.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
allow_duplicate_repo: true
- item:
name: IBM® Db2 DevOps Experience for z/OS (App Framework ZOWE V1)
description: >-
Allows you to bring applications to market more rapidly, at lower costs and with less risk. You can implement modern application development
practices by automating and standardizing processes while ensuring your organizational standards and business rules are followed.
homepage_url: https://www.ibm.com/products/db2-devops-experience
logo: db2-devops-experience-for-zos.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
allow_duplicate_repo: true
- item:
name: IBM® Service Management Unite (App Framework ZOWE V1)
description: >-
IBM® Service Management Unite is a customizable service management user interface that provides dashboards to monitor and operate IBM Z
environments. Zowe application plugin for Service Management Unite is provided to allow user to use Service Management Unite directly on Zowe
Desktop.
homepage_url: https://www.ibm.com/products/service-management-unite
logo: service-management-unite.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
allow_duplicate_repo: true
- item:
name: IBM® Z Netview (App Framework ZOWE V1)
description: >-
IBM Z® NetView®, a core component of IBM Z Service Management Suite and IBM Z Service Automation Suite, provides automation and network and
systems management to address your requirements for business agility on IBM Z systems.
homepage_url: https://www-01.ibm.com/common/ssi/ShowDoc.wss?docURL=/common/ssi/rep_ca/4/897/ENUS219-484/index.html&request_locale=en
logo: ibm-z-netview.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
allow_duplicate_repo: true
- item:
name: Rocket™ BlueZone Web (App Framework ZOWE V1)
description: >-
Rocket BlueZone Web simplifies the mainframe by making it easy for your users to access host-based applications and data anytime, anywhere and on
any device.
homepage_url: https://www.rocketsoftware.com/products/rocket-bluezonepassport-terminal-emulator/rocket-bluezone-web
logo: rocketsoftware-bluezoneweb.svg
crunchbase: https://www.crunchbase.com/organization/rocket-software
allow_duplicate_repo: true
- item:
name: SQL WorkloadExpert for Db2 z/OS (App Framework ZOWE V1)
description: >-
SQL WorkloadExpert (WLX) is a highly efficient SQL workload capture and warehouse solution and was specifically designed to provide modern
analytics as a basis for educated decisions on a variety of metrics. WLX Zowe App is provided to use WLX directly on the Zowe Desktop.
homepage_url: https://www.seg.de/en/products/db2-zos-products/sql-workloadexpert-for-db2-zos
logo: sql_workloadexport_for_db2_zos.svg
crunchbase: https://www.crunchbase.com/organization/software-engineering-gmbh
allow_duplicate_repo: true
- subcategory:
name: CLI ZOWE V1
items:
- item:
name: (E)JES (CLI ZOWE V1)
description: >-
(E)JES is a systems management tool that provides all the information you need to monitor, manage, and control your z/OS® JESplex—whether you are
running JES2 or JES3
homepage_url: https://phoenixsoftware.com/ejes.htm
repo_url: https://github.com/phoenixsoftware/ejes-cli
logo: phoenix-software-international-ejes.svg
crunchbase: https://www.crunchbase.com/organization/phoenix-software-international
allow_duplicate_repo: true
- item:
name: CA Endevor® (CLI ZOWE V1)
description: >-
CA Endevor® provides a standardized, reliable and automated approach to securing and managing your software assets. Designed to automate the
development process, CA Endevor governs software change from the very first line of modified code through deployment with change tracking.
homepage_url: >-
https://techdocs.broadcom.com/us/en/ca-mainframe-software/devops/ca-brightside/3-0/zowe-cli/available-cli-plug-ins/ca-endevor-scm-plug-in-for-zowe-cli.html
stock_ticker: AVGO
logo: ca-endevor.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA Endevor® Bridge For Git (CLI ZOWE V1)
description: CA Endevor® Bridge for Git lets you interact with CA Endevor® Bridge For Git to perform tasks through Zowe CLI
homepage_url: >-
https://techdocs.broadcom.com/us/en/ca-mainframe-software/devops/ca-brightside/3-0/zowe-cli/available-cli-plug-ins/ca-endevor-bridge-for-git-plug-in-for-zowe-cli.html
stock_ticker: AVGO
logo: ca-endevor-bridge-for-git.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA File Master™ Plus (CLI ZOWE V1)
description: CA File Master™ Plus brings advanced file management and data manipulation functionality to the CLI.
homepage_url: >-
https://techdocs.broadcom.com/us/en/ca-mainframe-software/devops/ca-brightside/3-0/zowe-cli/available-cli-plug-ins/ca-file-master-plus-plug-in-for-zowe-cli.html
stock_ticker: AVGO
logo: ca-file-master-plus.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA IDMS (CLI ZOWE V1)
description: >-
The CA IDMS Plug-in for Zowe CLI lets you interact with CA IDMS by providing the ability to list real-time performance statistics, view DC Log
records, and issue DCMT and DCUF commands. The plug-in requires the CA IDMS REST API.
homepage_url: https://techdocs.broadcom.com/us/en/ca-mainframe-software/database-management/ca-idms/19-0.html
stock_ticker: AVGO
logo: ca-idms.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA JCLCheck™ Workload Automation (CLI ZOWE V1)
description: >-
CA JCLCheck™ Workload Automation lets you validate the accuracy of Job Control Language (JCL) during development or automated processes. Use the
plug-in to identify execution-time errors, such as security violations and missing data sets, that can cause jobs to fail and lead to delays in
production cycles
homepage_url: >-
https://techdocs.broadcom.com/us/en/ca-mainframe-software/devops/ca-brightside/3-0/zowe-cli/available-cli-plug-ins/ca-jclcheck-workload-automation-plug-in-for-zowe-cli.html
stock_ticker: AVGO
logo: ca-jclcheck-workload-automation.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA MAT Analyze (CLI ZOWE V1)
description: >-
CA MAT Analyze ensures interaction with CA MAT and enables you to measure your mainframe applications and get the analysis data in the form of CA
MAT analysis views using Zowe CLI.
homepage_url: >-
https://techdocs.broadcom.com/us/en/ca-mainframe-software/devops/ca-brightside/3-0/zowe-cli/available-cli-plug-ins/ca-mat-analyze-plug-in-for-zowe-cli.html
stock_ticker: AVGO
logo: ca-mat-analyze.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA MAT Detect (CLI ZOWE V1)
description: >-
CA MAT Detect provides utilities to access performance data supplied by the CA Mainframe Application Tuner component Performance Management
Assistant (PMA).
homepage_url: >-
https://techdocs.broadcom.com/us/en/ca-mainframe-software/devops/ca-brightside/3-0/zowe-cli/available-cli-plug-ins/ca-mat-detect-plug-in-for-zowe-cli.html
stock_ticker: AVGO
logo: ca-mat-detect.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA OPS/MVS® (CLI ZOWE V1)
description: >-
CA OPS/MVS® lets you to interact with CA OPS/MVS automation elements. The features in the plug-in enable efficient automation and resource
management from the CLI.
homepage_url: >-
https://techdocs.broadcom.com/us/en/ca-mainframe-software/devops/ca-brightside/3-0/zowe-cli/available-cli-plug-ins/ca-brightside-plug-in-for-ca-ops-mvs.html
stock_ticker: AVGO
logo: ca-opsmvs.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA Spool™ (CLI ZOWE V1)
description: CA Spool™ provides you with a central point of control for managing enterprise-wide print, email and intelligence delivery services.
homepage_url: >-
https://techdocs.broadcom.com/us/en/ca-mainframe-software/devops/ca-brightside/3-0/zowe-cli/available-cli-plug-ins/ca-spool-plug-in-for-zowe-cli.html
stock_ticker: AVGO
logo: ca-spool.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA SYSVIEW® Performance Management (CLI ZOWE V1)
description: >-
CA SYSVIEW Performance Management lets Application Developers, DevOps and CI/CD Administrators, and other similar IT roles issue CA SYSVIEW
commands that take actions or display data.
homepage_url: >-
https://techdocs.broadcom.com/us/en/ca-mainframe-software/devops/ca-brightside/3-0/zowe-cli/available-cli-plug-ins/ca-sysview-performance-management-plug-in-for-zowe-cli.html
stock_ticker: AVGO
logo: ca-sysview-performance-management.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA View® (CLI ZOWE V1)
description: >-
CA View® lets you access report data, list repositories, and search cross-report index names or values in a repository. You can also use the
plug-in to automate report data exports using rules, and to manage user settings.
homepage_url: >-
https://techdocs.broadcom.com/us/en/ca-mainframe-software/devops/ca-brightside/3-0/zowe-cli/available-cli-plug-ins/CA-View-Plug-in-for-Zowe-CLI.html
stock_ticker: AVGO
logo: ca-view.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA Workload Automation CA 7® (CLI ZOWE V1)
description: >-
CA Workload Automation CA7 Edition (WLA CA 7) supports an agile and business–centric IT environment by automating many of the labor-intensive
tasks associated with workload automation and monitoring for z Systems.
homepage_url: >-
https://techdocs.broadcom.com/us/en/ca-mainframe-software/devops/ca-brightside/3-0/zowe-cli/available-cli-plug-ins/ca-workload-automation-ca-7-plug-in-for-zowe-cli.html
stock_ticker: AVGO
logo: ca-workload-automation-ca-7.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA z/OS Extended Files (CLI ZOWE V1)
description: CA z/OS Extended Files Plug-in extends the CLI to support complex data set management functionality.
homepage_url: >-
https://techdocs.broadcom.com/us/en/ca-mainframe-software/devops/ca-brightside/3-0/zowe-cli/available-cli-plug-ins/ca-brightside-plug-in-for-z-os-extended-files.html
stock_ticker: AVGO
logo: ca-zos-extended-files.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA z/OS Extended Jobs (CLI ZOWE V1)
description: CA z/OS Extended Jobs extends the CLI to include additional commands for interaction with z/OS jobs.
homepage_url: >-
https://techdocs.broadcom.com/us/en/ca-mainframe-software/devops/ca-brightside/3-0/zowe-cli/available-cli-plug-ins/ca-brightside-plug-in-for-z-os-extended-jobs.html
stock_ticker: AVGO
logo: ca-zos-extended-jobs.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: IBM RSE API Plug-in for Zowe CLI v.1.0.0 (CLI ZOWE V1)
description: The IBM RSE API Plug-in for Zowe CLI allows you to interact with z/OS by using IBM Remote System Explorer API (RSE API)
homepage_url: https://www.ibm.com/links
logo: remote-system-explorer-api.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
allow_duplicate_repo: true
- item:
name: IBM® CICS® Plug-in for Zowe CLI (CLI ZOWE V1)
description: The IBM® CICS® Plug-in for Zowe CLI lets you extend Zowe CLI to interact with CICS programs and transactions
homepage_url: https://github.com/zowe/zowe-cli-cics-plugin#readme
repo_url: https://github.com/zowe/zowe-cli-cics-plugin
logo: ibm-cics-for-cli.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
allow_duplicate_repo: true
- item:
name: IBM® Db2® Database Plug-in for Zowe CLI (CLI ZOWE V1)
description: >-
The IBM® Db2® Database Plug-in for Zowe CLI lets you interact with IBM® Db2® Database for z/OS and perform tasks with modern development tools to
automate typical workloads more efficiently.
homepage_url: https://github.com/zowe/zowe-cli-db2-plugin#readme
repo_url: https://github.com/zowe/zowe-cli-db2-plugin
logo: ibm-db2-for-cli.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
allow_duplicate_repo: true
- item:
name: IBM® IMS™ Plug-in for Zowe CLI (CLI ZOWE V1)
description: >-
The IBM® IMS™ Plug-in for Zowe CLI lets you extend Zowe CLI such that it can interact with IMS resources (regions, programs and transactions). You
can use the plug-in to start, stop, and query regions and start, stop, query, and update programs and transactions.
homepage_url: https://github.com/zowe/zowe-cli-ims-plugin#readme
repo_url: https://github.com/zowe/zowe-cli-ims-plugin
logo: ibm-ims-for-cli.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
allow_duplicate_repo: true
- item:
name: IBM® MQ Plug-in for Zowe CLI (CLI ZOWE V1)
description: >-
The IBM® MQ Plug-in for Zowe CLI lets you issue MQSC commands to a queue manager. With MQSC commands, you can perform administration tasks, such
as defining, altering, and deleting local queue objects.
homepage_url: https://github.com/zowe/zowe-cli-mq-plugin#readme
repo_url: https://github.com/zowe/zowe-cli-mq-plugin
logo: ibm-mq-for-cli.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
allow_duplicate_repo: true
- item:
name: IBM® Z® Workload Scheduler V 9.5.0.2 (CLI ZOWE V1)
description: >-
IBM® Z® Workload Scheduler is a workload automation solution that enables organizations to automate, plan and control the processing of complex
systems’ workloads.
homepage_url: https://www.ibm.com/products/z-workload-scheduler
logo: ibm-z-workload-scheduler.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
allow_duplicate_repo: true
- item:
name: z/OS Connect EE Plug-in for Zowe CLI (CLI ZOWE V1)
description: A Zowe CLI Plug-in for administering z/OS Connect EE servers.
homepage_url: https://github.com/zosconnect/zowe-cli-zosconnect-plugin/tree/lts-incremental
repo_url: https://github.com/zosconnect/zowe-cli-zosconnect-plugin
logo: zos-connect-ee.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
allow_duplicate_repo: true
- item:
name: z/OS FTP Plug-in for Zowe CLI (CLI ZOWE V1)
description: The z/OS FTP Plug-in for Zowe CLI lets you access z/OS datasets, USS files, and submit JCL, leveraging the z/OS FTP service.
homepage_url: https://github.com/zowe/zowe-cli-ftp-plugin#readme
repo_url: https://github.com/zowe/zowe-cli-ftp-plugin
logo: zowe-zos-ftp-for-cli.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
allow_duplicate_repo: true
- item:
name: Zowe CLI CICS Deploy plug-in (CLI ZOWE V1)
description: Deploy applications developed on a workstation to IBM CICS Transaction Server for z/OS.
homepage_url: https://github.com/IBM/zowe-cli-cics-deploy-plugin
repo_url: https://github.com/IBM/zowe-cli-cics-deploy-plugin
logo: zowe-cli-cics-deploy.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
allow_duplicate_repo: true
- item:
name: Zowe Secure Credential Store (CLI ZOWE V1)
description: Zowe Secure Credential Store lets you store your credentials securely in the credential manager of your operating system.
homepage_url: https://github.com/zowe/zowe-cli-scs-plugin#readme
repo_url: https://github.com/zowe/zowe-cli-scs-plugin
logo: zowe-secure-credential-store.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
allow_duplicate_repo: true
- subcategory:
name: API Mediation Layer 2019
items:
- item:
name: (E)JES Zowe REST API (API Mediation Layer 2019)
description: The Zowe API for (E)JES is based on REST principles and is compatible with the Zowe API Mediation Layer.
homepage_url: https://phoenixsoftware.com/ejes.htm#zowe
logo: phoenix-software-international-ejes.svg
crunchbase: https://www.crunchbase.com/organization/phoenix-software-international
allow_duplicate_repo: true
- item:
name: CA File Master™ Plus (API Mediation Layer 2019)
homepage_url: https://techdocs.broadcom.com/us/en/ca-mainframe-software/devops/ca-filemaster-plus/11-0/using-the-rest-api.html
stock_ticker: AVGO
logo: ca-file-master-plus.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: IBM MQ for z/OS Plug-in for Zowe CLI (API Mediation Layer 2019)
homepage_url: https://github.com/zowe/zowe-cli-mq-plugin
repo_url: https://github.com/zowe/zowe-cli-mq-plugin
logo: ibm-mq-for-cli.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
allow_duplicate_repo: true
- item:
name: IBM Z Workload Scheduler V 9.5.0.2 (API Mediation Layer 2019)
description: >-
Simplifies schedulers' and system administrators' tasks with new advanced automation features, enables integration of workload automation in
hybrid cloud application through REST API and command line that can easily integrated in applications and scripting.
homepage_url: https://www.ibm.com/products/z-workload-scheduler
logo: ibm-z-workload-scheduler.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
allow_duplicate_repo: true
- item:
name: IBM® Db2 DevOps Experience for z/OS (API Mediation Layer 2019)
description: >-
Allows you to bring applications to market more rapidly, at lower costs and with less risk. You can implement modern application development
practices by automating and standardizing processes while ensuring your organizational standards and business rules are followed.
homepage_url: https://www.ibm.com/products/db2-devops-experience
logo: db2-devops-experience-for-zos.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
allow_duplicate_repo: true
- item:
name: IBM® Z Netview (API Mediation Layer 2019)
description: A comprehensive platform for maintaining and automating complex, multi-vendor, multi-platform networks and systems from a single point of control
homepage_url: https://www-01.ibm.com/common/ssi/ShowDoc.wss?docURL=/common/ssi/rep_ca/4/897/ENUS219-484/index.html&request_locale=en
logo: ibm-z-netview.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
allow_duplicate_repo: true
- subcategory:
name: App Framework 2019
items:
- item:
name: IBM MQ for z/OS Plug-in for Zowe CLI (App Framework 2019)
homepage_url: https://github.com/zowe/zowe-cli-mq-plugin
repo_url: https://github.com/zowe/zowe-cli-mq-plugin
logo: ibm-mq-for-cli.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
allow_duplicate_repo: true
- item:
name: IBM® Db2 DevOps Experience for z/OS (App Framework 2019)
description: >-
Allows you to bring applications to market more rapidly, at lower costs and with less risk. You can implement modern application development
practices by automating and standardizing processes while ensuring your organizational standards and business rules are followed.
homepage_url: https://www.ibm.com/products/db2-devops-experience
logo: db2-devops-experience-for-zos.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
allow_duplicate_repo: true
- item:
name: IBM® Service Automation Suite (App Framework 2019)
description: IBM® Service Automation Suite V1.1.0 offers a single point of control for a broad range of systems management functions.
homepage_url: https://www-01.ibm.com/common/ssi/ShowDoc.wss?docURL=/common/ssi/rep_ca/5/897/ENUS219-085/index.html&request_locale=en
logo: service-automation-suite.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
allow_duplicate_repo: true
- item:
name: IBM® Service Management Suite for z/OS (App Framework 2019)
description: >-
IBM® Service Management Suite is focused on delivering comprehensive management of your z/OS enterprise, encompassing monitoring, automation,
network management, and asset discovery.
homepage_url: https://www-01.ibm.com/common/ssi/ShowDoc.wss?docURL=/common/ssi/rep_ca/0/897/ENUS217-270/index.html&request_locale=en
logo: service-management-suite-for-zos.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
allow_duplicate_repo: true
- item:
name: IBM® Service Management Unite(SMU) (App Framework 2019)
description: >-
IBM® Service Management Unite(SMU) is a customizable service management user interface that provides dashboards to monitor and operate IBM Z
environments. Zowe application plugin for SMU is provided to allow user to use SMU directly on Zowe Desktop.
homepage_url: https://www.ibm.com/products/service-management-unite
logo: service-management-unite.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
allow_duplicate_repo: true
- item:
name: IBM® Z Netview (App Framework 2019)
description: A comprehensive platform for maintaining and automating complex, multi-vendor, multi-platform networks and systems from a single point of control
homepage_url: https://www-01.ibm.com/common/ssi/ShowDoc.wss?docURL=/common/ssi/rep_ca/4/897/ENUS219-484/index.html&request_locale=en
logo: ibm-z-netview.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
allow_duplicate_repo: true
- item:
name: Rocket™ BlueZone (App Framework 2019)
description: >-
Rocket BlueZone Web is a zero-footprint terminal emulator that delivers real-time access to enterprise applications. You can combine the
capabilities in BlueZone with the power of the Zowe open source development framework using our BlueZone Web plug-in for Zowe.
homepage_url: https://www.rocketsoftware.com/products/rocket-bluezonepassport-terminal-emulator/rocket-bluezone-terminal-emulation
logo: rocketsoftware-bluezone.svg
crunchbase: https://www.crunchbase.com/organization/rocket-software
allow_duplicate_repo: true
- subcategory:
name: CLI 2019
items:
- item:
name: (E)JES Plug-in for Zowe CLI (CLI 2019)
description: 'The (E)JES Plug-in for Zowe CLI uses the (E)JES Zowe REST API to provide command line functions to stream or search the mainframe system logs. '
homepage_url: https://phoenixsoftware.com/ejes.htm#zowe
repo_url: https://github.com/phoenixsoftware/ejes-cli
logo: phoenix-software-international-ejes.svg
crunchbase: https://www.crunchbase.com/organization/phoenix-software-international
allow_duplicate_repo: true
- item:
name: CA Endevor® (CLI 2019)
description: >-
CA Endevor® lets you interact with CA Endevor through a local command-line interface. You can control CA Endevor application lifecycle actions,
allowing easy scripting from off-platform CI/CD pipelines.
homepage_url: >-
https://techdocs.broadcom.com/us/en/ca-mainframe-software/devops/ca-brightside/3-0/zowe-cli/available-cli-plug-ins/ca-endevor-scm-plug-in-for-zowe-cli.html
stock_ticker: AVGO
logo: ca-endevor.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA File Master™ Plus (CLI 2019)
description: >-
CA File Master™ Plus brings advanced file management and data manipulation functionality to the CLI. Control functions that CLI can invoke include
copying, renaming and deleting files, and populating files with data.
homepage_url: >-
https://techdocs.broadcom.com/us/en/ca-mainframe-software/devops/ca-brightside/3-0/zowe-cli/available-cli-plug-ins/ca-file-master-plus-plug-in-for-zowe-cli.html
stock_ticker: AVGO
logo: ca-file-master-plus.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA OPS/MVS® (CLI 2019)
description: >-
CA OPS/MVS® lets you to interact with CA OPS/MVS automation elements. The features in the plug-in enable efficient automation and resource
management from the CLI.
homepage_url: >-
https://techdocs.broadcom.com/us/en/ca-mainframe-software/devops/ca-brightside/3-0/zowe-cli/available-cli-plug-ins/ca-brightside-plug-in-for-ca-ops-mvs.html
stock_ticker: AVGO
logo: ca-opsmvs.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA Secure Credential Store (CLI 2019)
description: CA Secure Credential Store lets you store your credentials securely in the default credential manager of your operating system.
homepage_url: https://github.com/zowe/zowe-cli-scs-plugin#readme
stock_ticker: AVGO
logo: ca-secure-credential-store.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA z/OS Extended Files (CLI 2019)
description: >-
CA z/OS Extended Files lets application developers extend the CLI to support data set management functionality. For example, copying the contents
of a data set and downloading data sets that match a DSLEVEL pattern.
homepage_url: >-
https://techdocs.broadcom.com/us/en/ca-mainframe-software/devops/ca-brightside/3-0/zowe-cli/available-cli-plug-ins/ca-brightside-plug-in-for-z-os-extended-files.html
stock_ticker: AVGO
logo: ca-zos-extended-files.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
allow_duplicate_repo: true
- item:
name: CA z/OS Extended Jobs (CLI 2019)