-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathlandscape.yml
2528 lines (2520 loc) · 130 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: Installation assistant for Linux on IBM Z
homepage_url: https://ibm.github.io/liz/
repo_url: https://github.com/IBM/liz
logo: installation-assistant-for-linux-on-ibm-z.svg
crunchbase: https://www.crunchbase.com/organization/ibm
- 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://github.com/ibm-s390-linux/qclib
repo_url: https://github.com/ibm-s390-linux/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://github.com/ibm-s390-linux/smc-tools
repo_url: https://github.com/ibm-s390-linux/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: VMLINK
homepage_url: https://github.com/trothtech/vmlink
repo_url: https://github.com/trothtech/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: 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
- item:
name: zvm_ansible
homepage_url: https://github.com/IBM/zvm_ansible
repo_url: https://github.com/IBM/zvm_ansible
logo: zvm_ansible.svg
crunchbase: https://www.crunchbase.com/organization/ibm
- subcategory:
name: z/OS
items:
- 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: racfadm
homepage_url: https://github.com/lbdyck/racfadm
project: null
repo_url: https://github.com/lbdyck/racfadm
logo: racfadm.svg
organization:
name: Lionel B. Dyck
- 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/zdev
- 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: 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: Global Repository for Mainframe Developers
homepage_url: https://github.com/IBA-mainframe-dev/Global-Repository-for-Mainframe-Developers
repo_url: https://github.com/IBA-mainframe-dev/Global-Repository-for-Mainframe-Developers
logo: Global-Repository-for-Mainframe-Developers.svg
crunchbase: https://www.crunchbase.com/organization/iba-group
- subcategory:
name: Other
items:
- 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
- category:
name: Zowe Conformant
subcategories:
- subcategory:
name: API Mediation Layer ZOWE V1
items: []
- subcategory:
name: App Framework ZOWE V1
items: []
- subcategory:
name: CLI ZOWE V1
items: []
- subcategory:
name: API Mediation Layer 2019
items: []
- subcategory:
name: App Framework 2019
items: []
- subcategory:
name: CLI 2019
items: []
- subcategory:
name: Explorer for Visual Studio Code ZOWE V1
items: []
- subcategory:
name: Explorer for Visual Studio Code ZOWE V2
items:
- item:
name: Code4z
description: Extension pack for MF users working with z/OS applications and tools. Simplify user experience for new Mainframe developers.
homepage_url: https://integration.mainframe.broadcom.com/
repo_url: https://github.com/BroadcomMFD/code4z
logo: code4z.svg
open_source: false
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: Rocket® PRO/JCL
description: >-
PRO/JCL is a comprehensive JCL management tool that provides JCL validation, standards enforcement, and reformatting. Designed to help developers
streamline their JCL workflows on the z/OS mainframe, this extension allows you to access the most important features of PRO/JCL from Visual
Studio Code.
homepage_url: https://marketplace.visualstudio.com/items?itemName=RocketSoftware.projcl-vscode
project: null
logo: rocket-projcl.svg
crunchbase: https://www.crunchbase.com/organization/rocket-software
- subcategory:
name: CLI ZOWE V2
items:
- item:
name: (E)JES Plug-in for Zowe CLI
description: >-
E)JES Plug-in for Zowe Command Line Interface - Provides a "zowe" command supported on Windows, Mac and Linux systems, and others. Supports the
concept of “plug-ins”, modules that can be
incorporated into the CLI framework extending functionality of basic “zowe” command. Allows plug-in to support a common syntax for command line
directives, options and parameters. Provides command line functions to stream or search 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
- item:
name: IBM® IMS™ Plug-in
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
- item:
name: IDMS
description: IDMS RPC and REST APIs provide DCMT, DCUF, Print Log, and Performance Real Time Monitor services.
homepage_url: https://integration.mainframe.broadcom.com/
stock_ticker: AVGO
logo: idms.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: MAT Analyze
description: >-
MAT Analyze ensures interaction with MAT and enables you to measure your mainframe applications and get the analysis data in the form of MAT
analysis views using Zowe CLI.
homepage_url: https://integration.mainframe.broadcom.com/
stock_ticker: AVGO
logo: mat-analyze.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: MAT Detect
description: >-
MAT Detect provides utilities to access performance data supplied by the Mainframe Application Tuner component Performance Management Assistant
(PMA).
homepage_url: https://integration.mainframe.broadcom.com/
stock_ticker: AVGO
logo: mat-detect.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- subcategory:
name: API Mediation Layer ZOWE V2
items:
- item:
name: (E)JES Zowe REST API
description: >-
The Zowe API for (E)JES is based on REST principles and is compatible with the Zowe API Mediation Layer (APIML). The APIML is a gateway that
provides a single point of access to heterogeneous services that might be located on different systems or locations.
homepage_url: https://phoenixsoftware.com/ejes.htm#zowe
logo: phoenix-software-international-ejes.svg
crunchbase: https://www.crunchbase.com/organization/phoenix-software-international
- item:
name: Alert Central
description: Alert Central is a product used to quickly identify and resolve incidents across multiple systems and applications.
homepage_url: https://integration.mainframe.broadcom.com/
logo: alert-central.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: API State Monitor for Zowe API ML
description: >-
The API State Monitor for Zowe API ML monitors the state of standard API services that flow through the Zowe ecosystem and reports that state back
to the System Log (SYSLOG) in the form of a Write To Operator (WTO) message. Specifically, the API State
Monitor posts information on whether services are registering or de-registering from the API Mediation Layer Discovery Service (EUREKA), or shut
down ungracefully.
homepage_url: https://integration.mainframe.broadcom.com/
logo: api-state-monitor-for-zowe-api-ml.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: IBM Z JCL Expert
second_path:
- Zowe Conformant / CLI ZOWE V2
description: >-
IBM Z JCL Expert is a new offering that can accelerate testing and production delivery of JCL streams and reduce production processing errors and
costly delays through mass JCL checking.
homepage_url: https://www.ibm.com/products/z-jcl-expert
project: null
logo: ibm-z-jcl-expert.svg
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: IBM® Remote System Explorer API
second_path:
- Zowe Conformant / CLI ZOWE V2
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
- item:
name: IBM® Z Netview
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.ibm.com/products/z-netview
logo: ibm-z-netview.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: IBM® Z System Automation
second_path:
- Zowe Conformant / CLI ZOWE V2
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
- item:
name: IDMS Systems REST API
description: |-
The IDMS Systems REST API allows you to manage and monitor your IDMS CV with DCMT, DCUF, Compiler, SQL Execution, and Performance
Metrics endpoints.
homepage_url: https://integration.mainframe.broadcom.com/
project: null
logo: idms-systems-rest-api.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: Mainframe Security Insights Platform
homepage_url: https://integration.mainframe.broadcom.com/
stock_ticker: AVGO
logo: mainframe-security-insights-platform.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: Test4z
description: Test4z v1.2.2 Mainframe Batch Testing Automation released March 22, 2022
homepage_url: https://integration.mainframe.broadcom.com/
logo: test4z.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- subcategory:
name: App Framework ZOWE V2
items:
- item:
name: (E)JES Web App on Zowe Desktop
description: (E)JES Web running on the Zowe Desktop (a ZSS component)
homepage_url: https://www.phoenixsoftware.com/ejes.htm
project: null
logo: ejes_web.svg
crunchbase: https://www.crunchbase.com/organization/phoenix-software-international
- item:
name: IBM IMS Administration Foundation for z/OS
description: IBM IMS Administration Foundation for z/OS (a component of IBM IMS Tools Base for z/OS V1.7 and later)
homepage_url: https://www.ibm.com/docs/en/umsfz/1.2.0?topic=120-using-ims-administration-foundation
project: null
logo: ibm-ims-administration-foundation-for-zos.svg
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: IBM Unified Management Server (UMS) for z/OS
description: >-
The IBM Unified Experience for z/OS is a browser-based user interface that is built on top of the open-source Zowe Virtual Desktop. One intuitive
interface seamlessly displays all installed software, or data management products, by logical grouping.
homepage_url: https://www.ibm.com/docs/en/umsfz/1.1.0?topic=overview-unified-experience-zos
logo: ibm-unified-management-server-ums-for-zos.svg
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: IBM Z Service Management Explorer
description: >-
IBM Z Service Management Explorer is intended to provide a web-based alternative 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
- item:
name: IBM z/OS Workload Interaction Navigator
description: >-
IBM z/OS Workload Interaction Navigator reactive analysis helps identify the root cause of transient performance issues by correlating and
contextually prioritizing short term anomalous activities. The historical inspector analyzes performance issues over a period of time to highlight
system resilience risks.
homepage_url: https://www.ibm.com/products/zos-workload-interaction-navigator
logo: ibm-zos-workload-interaction-navigator.svg
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: IBM® Db2 Administration Foundation for z/OS
description: >-
Introduces a modern unified experience for next-gen users that delivers an intuitive alternative to existing Db2 for z/OS administration
experience with capabilities to view database object details, run SQL queries and Db2 commands. With release 1.2, integration with IBM Db2
Analytics Accelerator Administration Services and IBM Query Workload Tuner for z/OS is now available to support accelerator management and
workload tuning respectively.
homepage_url: https://www.ibm.com/common/ssi/ShowDoc.wss
logo: ibm-db2-administration-foundation-for-zos.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: IBM® Db2 DevOps Experience for z/OS
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
- item:
name: Vantage™ Storage Resource Manager
description: >-
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://integration.mainframe.broadcom.com/
logo: vantage-storage-resource-manager.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- subcategory:
name: App Framework ZOWE V3
items: []
- subcategory:
name: CLI ZOWE V3
items:
- item:
name: IBM® CICS® Plug-in for Zowe CLI
second_path:
- Zowe Conformant / CLI ZOWE V2
description: The IBM® CICS® Plug-in for Zowe CLI lets you extend Zowe CLI to interact with CICS programs and transactions.
homepage_url: https://https://github.com/zowe/zowe-cli-cics-plugin#readme
logo: ibm-cics-for-cli.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
- item:
name: IBM® Db2® Database Plug-in for Zowe CLI
second_path:
- Zowe Conformant / CLI ZOWE V2
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
- item:
name: IBM® MQ Plug-in for Zowe CLI
second_path:
- Zowe Conformant / CLI ZOWE V2
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
- item:
name: IBM® RSE API Plug-in for Zowe CLI
description: IBM RSE API Plug-in for Zowe CLI extends Zowe CLI to let you interact with z/OS resources by using IBM Remote System Explorer API (RSE API).
homepage_url: https://www.npmjs.com/package/@ibm/rse-api-for-zowe-cli
logo: ibm-rse-api-plug-in-for-zowe-cli.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: Output Management Spool™ for z/OS
second_path:
- Zowe Conformant / CLI ZOWE V2
description: Output Management Spool™ for z/OS Plug-in for Zowe CLI allows issuing Spool native commands from Zowe CLI.
homepage_url: https://integration.mainframe.broadcom.com/
logo: output-management-spool-for-zos.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: Output Management View™ for z/OS
second_path:
- Zowe Conformant / CLI ZOWE V2
description: >-
Output Management View™ for z/OS lets you access report data, list repositories, and search cross-report index names or values in a repository.
You can also use the OM View Plug-in for Zowe CLI to automate report data exports using rules, and to manage user settings.
homepage_url: https://integration.mainframe.broadcom.com/
stock_ticker: AVGO
logo: output-management-view-for-zos.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: z/OS FTP Plug-in for Zowe CLI
second_path:
- Zowe Conformant / CLI ZOWE V2
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
- subcategory:
name: API Mediation Layer ZOWE V3
items:
- item:
name: Database Management Solutions for Db2 for z/OS
second_path:
- Zowe Conformant / API Mediation Layer ZOWE V2
- Zowe Conformant / CLI ZOWE V3
- Zowe Conformant / CLI ZOWE V2
description: Db2 for z/OS administration, performance monitoring, and DevOps capabilities using modern API and CLI interfaces
homepage_url: https://integration.mainframe.broadcom.com/
stock_ticker: AVGO
logo: database-management-solutions-for-db2-for-zos.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: Endevor®
second_path:
- Zowe Conformant / API Mediation Layer ZOWE V2
- Zowe Conformant / CLI ZOWE V3
- Zowe Conformant / CLI ZOWE V2
description: >-
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://integration.mainframe.broadcom.com/
stock_ticker: AVGO
logo: endevor.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: ESP Workload Automation
second_path:
- Zowe Conformant / API Mediation Layer ZOWE V2
homepage_url: https://integration.mainframe.broadcom.com/
project: null
logo: esp-workload-automation.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: File Master™ Plus
second_path:
- Zowe Conformant / API Mediation Layer ZOWE V2
- Zowe Conformant / CLI ZOWE V2
description: >-
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://integration.mainframe.broadcom.com/
stock_ticker: AVGO
logo: file-master-plus.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: JCLCheck™ Workload Automation
second_path:
- Zowe Conformant / CLI ZOWE V3
- Zowe Conformant / API Mediation Layer ZOWE V2
- Zowe Conformant / CLI ZOWE V2
- Zowe Conformant / Explorer for Visual Studio Code ZOWE V2
description: >-
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://integration.mainframe.broadcom.com/
stock_ticker: AVGO
logo: jclcheck-workload-automation.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: Mainframe Application Tuner
second_path:
- Zowe Conformant / CLI ZOWE V3
description: >-
The REST API enables application and system programmers to manage the application measurement process and access the MAT measurement data stored
in the MAT database for analysis of application performance.
homepage_url: https://techdocs.broadcom.com/us/en/ca-mainframe-software/devops/ca-mainframe-application-tuner/12-0/using/use-the-rest-api.html
logo: mainframe-application-tuner.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: Mainframe Operational Intelligence
description: Mainframe Operational Intelligence (MOI) GraphQL API to query time-series data, Green Highway data, statistical data, and alerts.
homepage_url: https://integration.mainframe.broadcom.com/
logo: mainframe-operational-intelligence.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: Mainframe Topology
second_path:
- Zowe Conformant / API Mediation Layer ZOWE V2
description: >-
Mainframe Topology auto-discovers your mainframe environment by analyzing SMF data. It provides a modern web interface to view both the mainframe
elements hierarchically and their cross domain relationships, giving L1 Operators, L2 SMEs and application developers a better understanding of
their environment.
homepage_url: https://integration.mainframe.broadcom.com/
logo: mainframe-topology.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: MAT REST API
second_path:
- Zowe Conformant / API Mediation Layer ZOWE V2
description: >-
MAT REST API to measure your mainframe applications performance with Mainframe Application Tuner and obtain the measurement results for detailed
performance analysis.
homepage_url: https://integration.mainframe.broadcom.com/
logo: mat-rest-api.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: MICS Rest API Server
description: >-
MICS REST API Server allows the extraction of MICS data using any application that supports HTTP-based REST interfaces. It provides users with a
GET request functionality, which triggers the invocation of a SAS program to convert the MICS data into the CSV format.
homepage_url: https://integration.mainframe.broadcom.com/
project: null
logo: mics-rest-api-server.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: NetMaster
second_path:
- Zowe Conformant / API Mediation Layer ZOWE V2
description: >-
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://integration.mainframe.broadcom.com/
logo: netmaster.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: OPS/MVS®
second_path:
- Zowe Conformant / API Mediation Layer ZOWE V2
- Zowe Conformant / CLI ZOWE V3
description: |-
Extend the Zowe CLI to include OPS/MVS commands
NPM Registry Date: Will be released immediately following Zowe v2.
homepage_url: https://integration.mainframe.broadcom.com/
logo: opsmvs.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: SymDump
second_path:
- Zowe Conformant / API Mediation Layer ZOWE V2
description: SymDump is a fault management tool designed to identify and resolve dumps. The tool provides multitude of user interfaces including REST API.
homepage_url: https://integration.mainframe.broadcom.com/
logo: symdump.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: SYSVIEW® Performance Management
second_path:
- Zowe Conformant / API Mediation Layer ZOWE V2
- Zowe Conformant / CLI ZOWE V3
- Zowe Conformant / CLI ZOWE V2
description: >-
SYSVIEW Performance Management allows Application Developers, Automation Engineers, and Systems Programmers to access SYSVIEW actions and data
using a modern API.
homepage_url: https://integration.mainframe.broadcom.com/
stock_ticker: AVGO
logo: sysview-performance-management.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: WatchTower Alert Insights
description: >-
The Alert Insights API allows you to list and manage
alerts including service ticket creation, issue XMVS commands through SYSVIEW, retrieve QuickRef data and configurations, and manage users and
user groups.
homepage_url: https://integration.mainframe.broadcom.com/
logo: watchtower-alert-insights.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: WatchTower Data Insights
description: |-
WatchTower Data Insights REST APIs provide access to
the operational ML Insights metrics.
homepage_url: https://integration.mainframe.broadcom.com/
logo: watchtower-data-insights.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: WatchTower Metric Catalog
description: The Metric Catalog APIs support operational intelligence projects by delivering ML Insights functionality.
homepage_url: https://integration.mainframe.broadcom.com/
logo: watchtower-metric-catalog.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: Workload Automation CA7®
second_path:
- Zowe Conformant / API Mediation Layer ZOWE V2
- Zowe Conformant / CLI ZOWE V2
description: Zowe CLI plugins for 7
homepage_url: https://integration.mainframe.broadcom.com/
logo: workload-automation-ca7.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- subcategory:
name: Explorer for Visual Studio Code ZOWE V3
items:
- item:
name: Abend Analyzer for Mainframe
second_path:
- Zowe Conformant / Explorer for Visual Studio Code ZOWE V2
description: >-
Abend Analyzer for Mainframe provides an interface to SymDump® Batch. This extension allows you to browse, manage and view formatted abend reports
and symbolic data in a modern IDE environment.
homepage_url: https://integration.mainframe.broadcom.com/
repo_url: https://github.com/BroadcomMFD/abend-analyzer-for-mainframe
logo: abend-analyzer-for-mainframe.svg
open_source: false
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: COBOL Control Flow
second_path:
- Zowe Conformant / Explorer for Visual Studio Code ZOWE V2
description: >-
Provides graphical visualization of program flow for programs written in COBOL. The extension is designed to help COBOL developers to quickly
comprehend and debug COBOL programs with which they might not be familiar.
homepage_url: https://integration.mainframe.broadcom.com/
repo_url: https://github.com/BroadcomMFD/cobol-control-flow
logo: cobol-control-flow.svg
open_source: false
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: COBOL Language Support
second_path:
- Zowe Conformant / Explorer for Visual Studio Code ZOWE V2
description: Provide autocomplete, syntax highlighting and coloring, and diagnostic features for for IBM Enterprise Cobol for z/OS code and copybooks.
homepage_url: https://integration.mainframe.broadcom.com/
repo_url: https://github.com/eclipse/che-che4z-lsp-for-cobol
logo: cobol-language-support.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: Data Editor for Mainframe
second_path:
- Zowe Conformant / Explorer for Visual Studio Code ZOWE V2
description: Data Editor for Mainframe, a VS Code extension that adds a modern user interface to File Master Plus for MVS.
homepage_url: https://integration.mainframe.broadcom.com/
repo_url: https://github.com/BroadcomMFD/data-editor-for-mainframe
logo: data-editor-for-mainframe.svg
open_source: false
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: Debugger for Mainframe
second_path:
- Zowe Conformant / Explorer for Visual Studio Code ZOWE V2
description: This extension provides a modern debugging experience for CICS and Batch programs written in COBOL leveraging Intertest Batch and z/OS
homepage_url: https://integration.mainframe.broadcom.com/
repo_url: https://github.com/BroadcomMFD/debugger-for-mainframe
logo: debugger-for-mainframe.svg
open_source: false
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: Endevor® Bridge For Git
second_path:
- Zowe Conformant / CLI ZOWE V2
description: >-
The Endevor Bridge for Git Plug-in for Zowe CLI allows you to work with and manage Git-Endevor mappings of your Bridge for Git server. Also, as a
developer, you can build the changed files from the local working directory of your mapping in an Endevor work area.
homepage_url: https://integration.mainframe.broadcom.com/
stock_ticker: AVGO
logo: endevor-bridge-for-git.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: Explorer for Endevor
second_path:
- Zowe Conformant / Explorer for Visual Studio Code ZOWE V2
description: Modernizes the way you interact with Endevor, offering a user-friendly and convenient way to work with elements and inventory locations.
homepage_url: https://integration.mainframe.broadcom.com/
repo_url: https://github.com/eclipse/che-che4z-explorer-for-endevor
logo: explorer-for-endevor.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: HLASM Language Support
second_path:
- Zowe Conformant / Explorer for Visual Studio Code ZOWE V2
description: >-
An extension that supports the High Level Assembler language. It provides code completion, highlighting and navigation features, shows mistakes in
the source, and lets you trace how the conditional assembly is evaluated with a modern debugging experience.
homepage_url: https://integration.mainframe.broadcom.com/
repo_url: https://github.com/eclipse/che-che4z-lsp-for-hlasm
logo: hlasm-language-support.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: IBM z Open Editor
second_path:
- Zowe Conformant / Explorer for Visual Studio Code ZOWE V2
description: >-
IBM Z Open Editor is an extension for Visual Studio Code that provides language support for the IBM® Enterprise COBOL, PL/I, HLASM, REXX, and JCL
languages. Also allowing interaction with z/OS using the Zowe Explorer VS Code Extension introducing a new RSE profile type for host connection.
homepage_url: https://marketplace.visualstudio.com/items?itemName=IBM.zopeneditor
logo: ibm-z-open-editor.svg
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: IBM® CICS® for Zowe Explorer
second_path:
- Zowe Conformant / Explorer for Visual Studio Code ZOWE V2
homepage_url: https://marketplace.visualstudio.com/items?itemName=Zowe.cics-extension-for-zowe
project: null
repo_url: https://github.com/zowe/vscode-extension-for-cics
logo: zowe-explorer-for-ibm-cics.svg
crunchbase: https://www.crunchbase.com/organization/open-mainframe-project
- item:
name: OPS/REXX Language Support Extension for VS Code
second_path:
- Zowe Conformant / Explorer for Visual Studio Code ZOWE V2
description: >-
The OPS/REXX Language Support extension provides language support in VS Code for developers to edit OPS/REXX in a local environment complete with
syntax highlighting, hover IntelliSense, minor error checking, and access to a library of sample rule/function snippets.
homepage_url: https://integration.mainframe.broadcom.com/
repo_url: https://github.com/BroadcomMFD/opsrexx-language-support
logo: opsrexx-language-support-extension-for-vs-code.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- category:
name: Zowe Conformant Support Provider
subcategories:
- subcategory:
name: Comprehensive ZOWE V1
items: []
- subcategory:
name: API Mediation Layer ZOWE V1
items: []
- subcategory:
name: App Framework ZOWE V1
items: []
- subcategory:
name: CLI ZOWE V1
items: []
- subcategory:
name: Explorer for Visual Studio Code ZOWE V1
items: []
- subcategory:
name: Comprehensive ZOWE V2
items:
- item:
name: IBM Z Distribution for Zowe
second_path:
- Zowe Conformant Support Provider / API Mediation Layer ZOWE V2
- Zowe Conformant Support Provider / App Framework ZOWE V2
- Zowe Conformant Support Provider / CLI ZOWE V2
- Zowe Conformant Support Provider / Explorer for Visual Studio Code ZOWE V2
description: >-
IBM Z® Distribution for Zowe provides IBM delivery of Zowe open source software in executable form to extend and enhance z/OS products and
services, includes an entitlement to IBM SDK for Node.js - z/OS, V12.0 as a supporting program of IBM Z Distribution for Zowe, is delivered in
z/OS standard software package format (SMP/E), includes entitled IBM Subscription and Support (S&S) when Zowe is used as a prerequisite for IBM
products, and S&S has been purchased for such IBM products, and offers optional worldwide 24x7 fee-based S&S when Zowe is used independent of IBM
products, subject to IBM standard terms and conditions.
homepage_url: https://www.ibm.com/common/ssi/ShowDoc.wss?docURL=/common/ssi/rep_ca/4/897/ENUS220-014/index.html
logo: ibm-z-distribution-for-zowe.svg
twitter: https://twitter.com/ibmz
crunchbase: https://www.crunchbase.com/organization/ibm
- subcategory:
name: Explorer for Visual Studio Code ZOWE V2
items: []
- subcategory:
name: API Mediation Layer ZOWE V2
items:
- item:
name: Rocket Support for Zowe
second_path:
- Zowe Conformant Support Provider / App Framework ZOWE V2
- Zowe Conformant Support Provider / CLI ZOWE V2
- Zowe Conformant Support Provider / Explorer for Visual Studio Code ZOWE V2
- Zowe Conformant Support Provider / Comprehensive ZOWE V2
description: >-
Rocket Support for Zowe provides a Rocket-hosted download for all Zowe core components, 24x7 customer support for Zowe, and security assurance
with an independent ability to provide security fixes as needed. Additionally, Rocket Support for Zowe comes with extra Rocket exclusive
enterprise-grade utility apps for the mainframe virtual desktop.
homepage_url: https://www.rocketsoftware.com/products/rocket-zowe
logo: rocket-support.svg
crunchbase: https://www.crunchbase.com/organization/rocket-software
- subcategory:
name: App Framework ZOWE V2
items: []
- subcategory:
name: CLI ZOWE V2
items: []
- subcategory:
name: Comprehensive ZOWE V3
items:
- item:
name: Brightside
second_path:
- Zowe Conformant Support Provider / Comprehensive ZOWE V2
- Zowe Conformant Support Provider / API Mediation Layer ZOWE V3
- Zowe Conformant Support Provider / API Mediation Layer ZOWE V2
- Zowe Conformant Support Provider / App Framework ZOWE V2
- Zowe Conformant Support Provider / CLI ZOWE V2
- Zowe Conformant Support Provider / Explorer for Visual Studio Code ZOWE V2
description: >-
24x7 Enterprise Support for Zowe, Code4z and Test4z from a trusted mainframe partner, enabling teams to adopt open source with confidence.
Brightside subscribers also have access to exclusive innovations.
homepage_url: https://integration.mainframe.broadcom.com/
logo: brightside.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- item:
name: Enterprise Support for Zowe
second_path:
- Zowe Conformant Support Provider / API Mediation Layer ZOWE V3
- Zowe Conformant Support Provider / App Framework ZOWE V3
- Zowe Conformant Support Provider / CLI ZOWE V3
- Zowe Conformant Support Provider / Explorer for Visual Studio Code ZOWE V3
- Zowe Conformant Support Provider / Explorer for IntelliJ ZOWE V3
description: >-
A Broadcom subscription designed to help enterprises confidently adopt the Open Mainframe Project Zowe open-source software for use in production.
In addition to comprehensive support for Zowe core components, customers gain access to Zowe release distributions,
Zowe enhancements, and Zowe fixes directly from the Broadcom Support Portal.
homepage_url: https://techdocs.broadcom.com/us/en/ca-mainframe-software/devops/enterprise-support-for-zowe/1-0.html
logo: enterprise-support-for-zowe.svg
crunchbase: https://www.crunchbase.com/organization/broadcom
- subcategory:
name: Explorer for Visual Studio Code ZOWE V3
items: []
- subcategory:
name: Explorer for IntelliJ ZOWE V3
items: []
- subcategory:
name: API Mediation Layer ZOWE V3
items: []
- subcategory:
name: App Framework ZOWE V3
items: []
- subcategory:
name: CLI ZOWE V3
items: []
- subcategory:
name: Client SDK (Node.js) ZOWE V3
items: []
- category:
name: Broad Open Source
subcategories:
- subcategory:
name: Networking and Monitoring
items:
- item:
name: Apache Mesos
homepage_url: https://mesos.apache.org/
repo_url: https://github.com/apache/mesos
logo: apache-mesos.svg
twitter: https://twitter.com/ApacheMesos
crunchbase: https://www.crunchbase.com/organization/apache
- item:
name: Apache Zookeeper
homepage_url: https://zookeeper.apache.org/
repo_url: https://github.com/apache/zookeeper
logo: apache-zookeeper.svg
twitter: https://twitter.com/ApacheZooKeeper
crunchbase: https://www.crunchbase.com/organization/apache
- item:
name: Caddy
homepage_url: https://caddyserver.com
repo_url: https://github.com/caddyserver/caddy
logo: caddy-2.svg
twitter: https://twitter.com/caddyserver
crunchbase: https://www.crunchbase.com/organization/ardan-labs
- item:
name: CoreDNS
homepage_url: https://coredns.io
repo_url: https://github.com/coredns/coredns
logo: coreDNS-2.svg
twitter: https://twitter.com/corednsio