-
-
Notifications
You must be signed in to change notification settings - Fork 931
Expand file tree
/
Copy pathregistry.toml
More file actions
5301 lines (4343 loc) · 192 KB
/
registry.toml
File metadata and controls
5301 lines (4343 loc) · 192 KB
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
# this file contains all the shorthand names for tools in mise
# the format is as follows:
# [tool-name] = [long-names...]
# multiple are allowed for each tool because some backends may be disabled, like on windows we don't use asdf, for example
# or a backend may be disabled via MISE_DISABLE_BACKENDS=ubi
[tools.1password]
aliases = ["1password-cli", "op"]
backends = ["vfox:mise-plugins/vfox-1password", "aqua:1password/cli"]
description = "Password manager developed by AgileBits Inc"
test = ["op --version", "{{version}}"]
[tools.aapt2]
backends = ["asdf:mise-plugins/mise-aapt2"]
description = "Android Asset Packaging Tool (aapt)"
test = [
"aapt2 version 2>&1",
"Android Asset Packaging Tool (aapt)",
] # version doesn't match
[tools.act]
backends = ["aqua:nektos/act", "ubi:nektos/act", "asdf:gr1m0h/asdf-act"]
description = "Run your GitHub Actions locally"
test = ["act --version", "act version {{version}}"]
[tools.action-validator]
backends = [
"aqua:mpalmer/action-validator",
"ubi:mpalmer/action-validator",
"asdf:mpalmer/action-validator",
"cargo:action-validator",
]
description = "Tool to validate GitHub Action and Workflow YAML files"
os = ["linux", "macos"]
test = ["action-validator --version", "action-validator {{version}}"]
[tools.actionlint]
backends = [
"aqua:rhysd/actionlint",
"ubi:rhysd/actionlint",
"asdf:crazy-matt/asdf-actionlint",
"go:github.com/rhysd/actionlint/cmd/actionlint",
]
description = ":octocat: Static checker for GitHub Actions workflow files"
test = ["actionlint --version", "{{version}}"]
[tools.adr-tools]
backends = [
"aqua:npryce/adr-tools",
"asdf:https://gitlab.com/td7x/asdf/adr-tools",
]
description = "Command-line tools for working with Architecture Decision Records"
test = ["adr help", "adr help"]
[tools.ag]
backends = ["asdf:mise-plugins/mise-ag"]
description = "The Silver Searcher: A code searching tool similar to ack, with a focus on speed"
[tools.age]
backends = ["aqua:FiloSottile/age", "asdf:threkk/asdf-age"]
description = "A simple, modern and secure encryption tool (and Go library) with small explicit keys, no config options, and UNIX-style composability"
test = ["age --version", "v{{version}}"]
[tools.age-plugin-yubikey]
backends = [
"github:str4d/age-plugin-yubikey",
"asdf:joke/asdf-age-plugin-yubikey",
"cargo:age-plugin-yubikey",
]
description = "age-plugin-yubikey is a plugin for age clients like age and rage, which enables files to be encrypted to age identities stored on YubiKeys"
test = ["which age-plugin-yubikey", ""] # libpcsclite.so.1 is missing in CI
[tools.agebox]
backends = ["aqua:slok/agebox", "ubi:slok/agebox", "asdf:slok/asdf-agebox"]
description = "Age based repository file encryption gitops tool"
test = ["agebox --version 2>&1", "v{{version}}"]
[tools.aichat]
backends = ["aqua:sigoden/aichat"]
description = "Use GPT-4(V), Gemini, LocalAI, Ollama and other LLMs in the terminal"
test = ["aichat --version", "{{version}}"]
[tools.air]
backends = ["aqua:air-verse/air", "asdf:pdemagny/asdf-air"]
description = "Live reload for Go apps"
test = ["air -v", "{{version}}"]
[tools.aks-engine]
backends = ["aqua:Azure/aks-engine", "asdf:robsonpeixoto/asdf-aks-engine"]
description = "AKS Engine deploys and manages Kubernetes clusters in Azure"
test = ["aks-engine version", "Version: v{{version}}"]
[tools.allure]
backends = ["github:allure-framework/allure2", "asdf:mise-plugins/mise-allure"]
description = "Allure Report is a popular open source tool for visualizing the results of a test run"
test = ["allure --version", "{{version}}"]
[tools.allurectl]
backends = ["github:allure-framework/allurectl"]
description = "allurectl is the command line wrapper of Allure TestOps' API allowing you to upload the test results in real time from a build job, and managing entities on Allure TestOps side (test cases, launches, projects)"
test = ["allurectl --version", "allurectl version {{version}}"]
[tools.alp]
backends = ["aqua:tkuchiki/alp", "asdf:asdf-community/asdf-alp"]
description = "Access Log Profiler"
test = ["alp --version", "{{version}}"]
[tools.amass]
backends = ["github:owasp-amass/amass", "asdf:dhoeric/asdf-amass"]
description = "In-depth attack surface mapping and asset discovery"
test = ["amass -version 2>&1", "v"] # version is wrong from the CLI
[tools.amazon-ecr-credential-helper]
backends = [
"aqua:awslabs/amazon-ecr-credential-helper",
"asdf:dex4er/asdf-amazon-ecr-credential-helper",
]
description = "Automatically gets credentials for Amazon ECR on docker push/docker pull"
test = [
"docker-credential-ecr-login version",
"docker-credential-ecr-login (github.com/awslabs/amazon-ecr-credential-helper/ecr-login) {{version}}",
]
[tools.amazon-ecs-cli]
aliases = ["ecs-cli"]
backends = ["aqua:aws/amazon-ecs-cli"]
description = "The Amazon ECS CLI enables users to run their applications on ECS/Fargate using the Docker Compose file format, quickly provision resources, push/pull images in ECR, and monitor running applications on ECS/Fargate."
test = ["ecs-cli --version", "ecs-cli version {{version}}"]
[tools.amp]
backends = ["npm:@sourcegraph/amp"]
description = "An agentic coding tool built by Sourcegraph"
test = ["amp --version", "{{version}}"]
[tools.android-sdk]
backends = ["asdf:mise-plugins/mise-android-sdk"]
depends = ["java", "yq"]
description = "Android Command-line tools"
[tools.ansible]
backends = ["pipx:ansible[uvx=false,pipx_args=--include-deps]"]
description = "ansible python package contains the core runtime and CLI tools, such as ansible and ansible-playbook and extra modules, plugins, and roles"
test = ["ansible --version", "ansible"]
[tools.ansible-core]
aliases = ["ansible-base"]
backends = ["pipx:ansible-core"]
description = "ansible-core python package contains the core runtime and CLI tools, such as ansible and ansible-playbook"
test = ["ansible --version", "ansible [core {{version}}]"]
[tools.ant]
backends = ["asdf:mise-plugins/mise-ant"]
description = "Apache Ant is a Java library and command-line tool whose mission is to drive processes described in build files as targets and extension points dependent upon each other"
# test = ["ant -version", "Apache Ant(TM) version {{version}}"] # installs wrong version
[tools.apko]
backends = [
"aqua:chainguard-dev/apko",
"ubi:chainguard-dev/apko",
"asdf:omissis/asdf-apko",
]
description = "Build OCI images from APK packages directly without Dockerfile"
test = ["apko version", "GitVersion: v{{version}}"]
[tools.apollo-ios]
aliases = ["apollo-ios-cli"]
backends = ["asdf:mise-plugins/mise-apollo-ios-cli"]
description = "Apollo iOS Code Generation"
[tools.apollo-router]
backends = ["github:apollographql/router", "asdf:safx/asdf-apollo-router"]
description = "A configurable, high-performance routing runtime for Apollo Federation"
test = ["router --version", "{{version}}"]
[tools.apollo-rover]
backends = ["github:apollographql/rover"]
description = "The CLI for Apollo GraphOS"
test = ["rover --version", "Rover {{version}}"]
[tools.aqua]
backends = ["github:aquaproj/aqua"]
description = "Declarative CLI Version manager written in Go. Support Lazy Install, Registry, and continuous update with Renovate. CLI version is switched seamlessly"
test = ["aqua version", "{{version}}"]
[tools.arduino]
aliases = ["arduino-cli"]
backends = ["aqua:arduino/arduino-cli", "asdf:egnor/asdf-arduino-cli"]
description = "Arduino command line tool"
test = ["arduino-cli version", "arduino-cli Version: {{version}}"]
[tools.argc]
backends = ["github:sigoden/argc"]
description = "A Bash CLI framework, also a Bash command runner"
test = ["argc --argc-version", "argc {{version}}"]
[tools.argo]
backends = ["aqua:argoproj/argo-workflows", "asdf:sudermanjr/asdf-argo"]
description = "Argo Workflows CLI. Workflow engine for Kubernetes"
test = ["argo version", "argo: v{{version}}"]
[tools.argo-rollouts]
backends = ["aqua:argoproj/argo-rollouts", "asdf:abatilo/asdf-argo-rollouts"]
description = "Progressive Delivery for Kubernetes"
test = ["kubectl-argo-rollouts version", "kubectl-argo-rollouts: v{{version}}"]
[tools.argocd]
backends = [
"aqua:argoproj/argo-cd",
"ubi:argoproj/argo-cd[exe=argocd]",
"asdf:beardix/asdf-argocd",
]
description = "Declarative continuous deployment for Kubernetes"
test = ["argocd version --client", "argocd: v{{version}}"]
[tools.asciidoctorj]
backends = ["asdf:mise-plugins/mise-asciidoctorj"]
description = "AsciidoctorJ is the official library for running Asciidoctor on the JVM. Using AsciidoctorJ, you can convert AsciiDoc content or analyze the structure of a parsed AsciiDoc document from Java and other JVM languages"
test = ["asciidoctorj --version", "AsciidoctorJ {{version}}"]
[tools.assh]
backends = ["github:moul/assh", "asdf:mise-plugins/mise-assh"]
description = "make your ssh client smarter"
test = ["assh --version", "assh version "] # 2.16.0 reports version n/a
[tools.ast-grep]
backends = [
"aqua:ast-grep/ast-grep",
"cargo:ast-grep",
"npm:@ast-grep/cli",
"pipx:ast-grep-cli",
]
description = "A CLI tool for code structural search, lint and rewriting. Written in Rust"
test = ["sg --version", "ast-grep {{version}}"]
[tools.astro]
backends = ["github:astronomer/astro-cli[exe=astro]"]
description = "CLI that makes it easy to create, test and deploy Airflow DAGs to Astronomer"
test = ["astro version", "Astro CLI Version: {{version}}"]
[tools.atlas]
backends = ["aqua:ariga/atlas", "asdf:komi1230/asdf-atlas"]
description = "A modern tool for managing database schemas"
test = ["atlas version", "atlas version v{{version}}"]
[tools.atmos]
backends = ["aqua:cloudposse/atmos", "asdf:cloudposse/asdf-atmos"]
description = "Workflow automation tool for DevOps. Keep configuration DRY with hierarchical imports of configurations, inheritance, and WAY more. Native support for Terraform and Helmfile"
idiomatic_files = [".atmos-version"]
test = ["atmos version", "Atmos {{version}}"]
[tools.atuin]
backends = ["aqua:atuinsh/atuin", "ubi:atuinsh/atuin", "cargo:atuin"]
description = "✨ Magical shell history"
test = ["atuin --version", "atuin {{version}}"]
[tools.auto-doc]
backends = ["github:tj-actions/auto-doc", "asdf:mise-plugins/mise-auto-doc"]
description = "Github action that turns your reusable workflows and custom actions into easy to read markdown tables"
test = ["auto-doc --help", "auto-doc [flags]"]
[tools.aws-amplify]
aliases = ["amplify"]
backends = [
"ubi:aws-amplify/amplify-cli[exe=amplify-pkg,rename_exe=amplify]",
"asdf:LozanoMatheus/asdf-aws-amplify-cli",
]
description = "The AWS Amplify CLI is a toolchain for simplifying serverless web and mobile development"
test = ["amplify --version", "{{version}}"]
[tools.aws-cli]
aliases = ["aws", "awscli"]
backends = [
{ full = "aqua:aws/aws-cli", options = { symlink_bins = "true" } },
"asdf:MetricMike/asdf-awscli",
]
description = "The AWS Command Line Interface (AWS CLI v2) is a unified tool that provides a consistent interface for interacting with all parts of Amazon Web Services"
os = ["linux", "macos"]
test = ["aws --version", "aws-cli/{{version}}"]
[tools.aws-copilot]
backends = ["aqua:aws/copilot-cli", "asdf:NeoHsu/asdf-copilot"]
description = "The AWS Copilot CLI is a tool for developers to build, release and operate production ready containerized applications on AWS App Runner, Amazon ECS, and AWS Fargate"
test = ["copilot --version", "copilot version: v{{version}}"]
[tools.aws-iam-authenticator]
backends = [
"aqua:kubernetes-sigs/aws-iam-authenticator",
"asdf:zekker6/asdf-aws-iam-authenticator",
]
description = "A tool to use AWS IAM credentials to authenticate to a Kubernetes cluster"
test = ["aws-iam-authenticator version", '"Version":"{{version}}"']
[tools.aws-nuke]
backends = ["aqua:ekristen/aws-nuke", "asdf:bersalazar/asdf-aws-nuke"]
description = "Remove all the resources from an AWS account"
test = ["aws-nuke --version", "aws-nuke version v{{version}}"]
[tools.aws-sam]
aliases = ["aws-sam-cli"]
backends = [
{ full = "aqua:aws/aws-sam-cli", platforms = [
"linux",
"macos",
], options = { symlink_bins = "true" } },
"pipx:aws-sam-cli",
"asdf:mise-plugins/mise-pyapp",
]
description = "CLI tool to build, test, debug, and deploy Serverless applications using AWS SAM"
test = ["sam --version", "SAM CLI, version {{version}}"]
[tools.aws-sso]
backends = ["aqua:synfinatic/aws-sso-cli", "asdf:adamcrews/asdf-aws-sso-cli"]
description = "A powerful tool for using AWS Identity Center for the CLI and web console"
test = ["aws-sso version", "AWS SSO CLI Version {{version}}"]
[tools.aws-vault]
backends = ["aqua:99designs/aws-vault", "asdf:karancode/asdf-aws-vault"]
description = "A vault for securely storing and accessing AWS credentials in development environments"
test = ["aws-vault --version 2>&1", "v{{version}}"]
[tools.awscli-local]
backends = ["asdf:mise-plugins/mise-awscli-local"]
description = "This package provides the awslocal command, which is a thin wrapper around the aws command line interface for use with LocalStack"
[tools.awsebcli]
backends = ["pipx:awsebcli", "asdf:mise-plugins/mise-pyapp"]
description = "The AWS Elastic Beanstalk Command Line Interface (EB CLI) is a tool that helps you deploy and manage your Elastic Beanstalk applications and environments. It also provides integration with Git"
test = ["eb --version", "EB CLI {{version}}"]
[tools.awsls]
backends = ["github:jckuester/awsls", "asdf:chessmango/asdf-awsls"]
description = "A list command for AWS resources"
test = ["awsls --version", "version: {{version}}"]
[tools.awsrm]
backends = ["github:jckuester/awsrm", "asdf:chessmango/asdf-awsrm"]
description = "A remove command for AWS resources"
test = ["awsrm --version", "version: {{version}}"]
[tools.awsweeper]
backends = ["github:jckuester/awsweeper", "asdf:chessmango/asdf-awsweeper"]
description = "A tool for cleaning your AWS account"
test = ["awsweeper --version", "version: {{version}}"]
[tools.azure]
aliases = ["azure-cli"]
backends = ["asdf:mise-plugins/mise-azure-cli"]
description = "azure-cli (az)"
test = ["az --version", "azure-cli {{version}}"]
[tools.azure-functions-core-tools]
backends = ["asdf:mise-plugins/mise-azure-functions-core-tools"]
description = "Command line tools for Azure Functions"
[tools.azure-kubelogin]
backends = ["aqua:Azure/kubelogin", "asdf:sechmann/asdf-kubelogin"]
description = "A Kubernetes credential (exec) plugin implementing azure authentication"
test = ["kubelogin --version", "git hash: v{{version}}"]
[tools.babashka]
backends = ["github:babashka/babashka[exe=bb]", "asdf:pitch-io/asdf-babashka"]
description = "Native, fast starting Clojure interpreter for scripting"
test = ["bb --version", "babashka v{{version}}"]
[tools.balena]
aliases = ["balena-cli"]
backends = ["github:balena-io/balena-cli", "asdf:jaredallard/asdf-balena-cli"]
description = "The balena CLI is a Command Line Interface for balenaCloud or openBalena"
test = ["balena --version", "{{version}}"]
[tools.bashbot]
backends = ["aqua:mathew-fleisch/bashbot", "asdf:mathew-fleisch/asdf-bashbot"]
description = "A slack-bot written in golang for infrastructure/devops teams"
test = ["bashbot version", "v{{version}}"]
[tools.bashly]
backends = ["gem:bashly", "asdf:mise-plugins/mise-bashly"]
depends = ["ruby"]
description = "Bashly is a command line application (written in Ruby) that lets you generate feature-rich bash command line tools"
test = ["bashly version", "{{version}}"]
[tools.bat]
backends = [
"aqua:sharkdp/bat",
"ubi:sharkdp/bat",
"cargo:bat",
"asdf:https://gitlab.com/wt0f/asdf-bat",
]
description = "A cat(1) clone with wings"
test = ["bat --version", "bat {{version}}"]
[tools.bat-extras]
backends = ["aqua:eth-p/bat-extras", "asdf:mise-plugins/mise-bat-extras"]
description = "Bash scripts that integrate bat with various command line tools"
test = ["batman --version", "batman {{version}}"]
[tools.bats]
backends = ["aqua:bats-core/bats-core", "asdf:timgluz/asdf-bats"]
description = "Bash Automated Testing System"
os = ["linux", "macos"]
test = ["bats -v", "Bats"]
[tools.bazel]
backends = [
"aqua:bazelbuild/bazel",
"ubi:bazelbuild/bazel",
"asdf:rajatvig/asdf-bazel",
]
description = "a fast, scalable, multi-language and extensible build system"
test = ["bazel --version", "bazel {{version}}"]
[tools.bazel-watcher]
backends = ["aqua:bazelbuild/bazel-watcher"]
description = "Tools for building Bazel targets when source files change"
test = ["ibazel version 2>&1", "iBazel - Version v{{version}}"]
[tools.bazelisk]
backends = [
"aqua:bazelbuild/bazelisk",
"npm:@bazel/bazelisk",
"asdf:josephtate/asdf-bazelisk",
]
description = "A user-friendly launcher for Bazel"
test = [
"bazelisk --version",
"bazel",
] # shows bazel version, not bazelisk version
[tools.bbr-s3-config-validator]
backends = ["asdf:mise-plugins/tanzu-plug-in-for-asdf"]
description = "The BOSH Backup and Restore (BBR) S3 bucket configuration validator is a tool to validate and troubleshoot your Cloud Foundry and BBR external blobstore configuration"
os = ["linux"]
test = ["bbr-s3-config-validator --help", ""] # no version output
[tools.bfs]
backends = ["asdf:mise-plugins/mise-bfs"]
description = "Breadth-first search for your files"
test = ["bfs --version", "bfs {{version}}"]
[tools.binnacle]
backends = ["aqua:Traackr/binnacle", "asdf:Traackr/asdf-binnacle"]
description = "An opinionated tool to interact with Kubernetes' Helm"
test = ["binnacle --version", "binnacle version {{version}}"]
[tools.biome]
backends = ["aqua:biomejs/biome", "ubi:biomejs/biome", "npm:@biomejs/biome"]
description = "A toolchain for web projects, aimed to provide functionalities to maintain them. Biome offers formatter and linter, usable via CLI and LSP"
test = ["biome --version", "Version: {{version}}"]
[tools.bitwarden]
backends = ["aqua:bitwarden/clients", "asdf:vixus0/asdf-bitwarden"]
description = "Bitwarden CLI"
test = ["bw --version", "{{version}}"]
[tools.bitwarden-secrets-manager]
backends = [
"github:bitwarden/sdk[version_prefix=bws-v]",
"asdf:asdf-community/asdf-bitwarden-secrets-manager",
]
description = "CLI for interacting with the Bitwarden Secrets Manager"
test = ["bws --version", "bws {{version}}"]
[tools.blender]
backends = ["aqua:blender/blender"]
description = "Blender is a free and open-source 3D computer graphics software"
test = ["blender --version", "Blender {{version}}"]
[tools.black]
backends = ["aqua:psf/black"]
description = "The uncompromising Python code formatter"
test = ["black --version", "black, {{version}}"]
[tools.bob]
backends = [
"aqua:MordechaiHadad/bob",
'ubi:MordechaiHadad/bob[matching_regex=bob-(linux|macos|windows)-(arm|x86_64)\.zip$]',
"cargo:bob-nvim",
]
description = "A version manager for neovim"
test = ["bob --version", "bob-nvim {{version}}"]
[tools.boilerplate]
backends = ["aqua:gruntwork-io/boilerplate"]
description = 'A tool for generating files and folders ("boilerplate") from a set of templates'
test = ["boilerplate --version", "boilerplate version v{{version}}"]
[tools.bombardier]
backends = ["aqua:codesenberg/bombardier", "asdf:NeoHsu/asdf-bombardier"]
description = "Fast cross-platform HTTP benchmarking tool written in Go"
test = ["bombardier --version 2>&1", "bombardier version"] # shows "unspecified"
[tools.borg]
backends = ["aqua:borgbackup/borg", "asdf:lwiechec/asdf-borg"]
description = "Deduplicating archiver with compression and authenticated encryption"
test = ["borg --version", "borg {{version}}"]
[tools.bosh]
backends = [
"aqua:cloudfoundry/bosh-cli",
"asdf:mise-plugins/tanzu-plug-in-for-asdf",
]
description = "The bosh CLI is the command line tool used for interacting with all things BOSH, from deployment operations to software release management"
test = ["bosh --version", "version {{version}}"]
[tools.bosh-backup-and-restore]
aliases = ["bbr"]
backends = [
"ubi:cloudfoundry-incubator/bosh-backup-and-restore[matching=bbr-1]",
"asdf:mise-plugins/tanzu-plug-in-for-asdf",
]
description = "BOSH Backup and Restore is a CLI utility for orchestrating the backup and restore of BOSH deployments and BOSH directors"
os = ["linux", "macos"]
test = ["bosh-backup-and-restore version", "bbr version {{version}}"]
[tools.bottom]
backends = [
"aqua:ClementTsang/bottom",
"asdf:carbonteq/asdf-btm",
"cargo:bottom",
]
description = "Yet another cross-platform graphical process/system monitor"
test = ["btm --version", "bottom {{version}}"]
[tools.boundary]
backends = ["aqua:hashicorp/boundary", "asdf:mise-plugins/mise-hashicorp"]
description = "Boundary enables identity-based access management for dynamic infrastructure"
test = ["boundary version", "Version Number: {{version}}"]
[tools.bpkg]
backends = ["asdf:mise-plugins/mise-bpkg"]
description = "Lightweight bash package manager"
test = ["bpkg --version", "{{version}}"]
[tools.brig]
backends = ["aqua:brigadecore/brigade", "asdf:Ibotta/asdf-brig"]
description = "Brigade CLI. Event-driven scripting for Kubernetes"
test = ["brig version", "Brigade client: version v{{version}}"]
[tools.btop]
backends = ["aqua:aristocratos/btop", "ubi:aristocratos/btop"]
description = "A monitor of resources"
test = [
'''btop --version | sed -e 's/\x1b\[[0-9;]*m//g'''',
"btop version: {{version}}",
]
[tools.btrace]
backends = ["asdf:mise-plugins/mise-btrace"]
description = "BTrace - a safe, dynamic tracing tool for the Java platform"
test = ["btrace --version", "BTrace v.{{version}}"]
[tools.buck2]
backends = ["github:facebook/buck2[bin=buck2]"]
description = "A fast, hermetic, multi-language build system"
test = ["buck2 --version", "buck2"]
[tools.buf]
backends = ["aqua:bufbuild/buf", "ubi:bufbuild/buf", "asdf:truepay/asdf-buf"]
description = "The best way of working with Protocol Buffers"
test = ["buf --version", "{{version}}"]
[tools.buildifier]
backends = ["aqua:bazelbuild/buildtools/buildifier"]
description = "buildifier: For formatting BUILD, BUILD.bazel and BUCK files in a standard way"
test = ["buildifier --version", "buildifier version: {{version}}"]
[tools.buildpack]
aliases = ["pack", "buildpacks"]
backends = ["aqua:buildpacks/pack", "asdf:johnlayton/asdf-buildpack"]
description = "CLI for building apps using Cloud Native Buildpacks"
test = ["pack --version", "{{version}}"]
[tools.bun]
backends = ["core:bun"]
description = "Bun is a fast JavaScript all-in-one toolkit"
test = ["bun --version", "{{version}}"]
[tools.cabal]
backends = ["aqua:haskell/cabal/cabal-install"]
description = "Cabal(haskell): Common Architecture for Building Applications and Libraries"
test = ["cabal --version", "cabal-install version {{version}}"]
[tools.caddy]
backends = ["aqua:caddyserver/caddy", "asdf:salasrod/asdf-caddy"]
description = "Fast, multi-platform web server with automatic HTTPS"
test = ["caddy --version", "v{{version}}"]
[tools.calendarsync]
backends = [
"aqua:inovex/CalendarSync",
"ubi:inovex/CalendarSync",
"asdf:FeryET/asdf-calendarsync",
]
description = "Stateless CLI tool to sync calendars across different calendaring systems"
test = ["CalendarSync --version", "Version: {{version}}"]
[tools.calicoctl]
backends = [
"aqua:projectcalico/calico/calicoctl",
"asdf:TheCubicleJockey/asdf-calicoctl",
]
description = "Cloud native networking and network security"
test = ["calicoctl version", "Client Version: v{{version}}"]
[tools.carapace]
backends = ["aqua:carapace-sh/carapace-bin"]
description = "A multi-shell completion binary"
test = ["carapace --version 2>&1", "carapace-bin {{version}}"]
[tools.cargo-binstall]
backends = [
"aqua:cargo-bins/cargo-binstall",
'ubi:cargo-bins/cargo-binstall[tag_regex=^\\d\\.]',
"cargo:cargo-binstall",
]
description = "Binary installation for rust projects"
test = ["cargo binstall -V", "{{version}}"]
[tools.cargo-insta]
backends = ["aqua:mitsuhiko/insta", "ubi:mitsuhiko/insta", "cargo:insta"]
description = "A snapshot testing library for rust"
test = ["cargo insta --version", "cargo-insta {{version}}"]
[tools.cargo-make]
backends = [
"aqua:sagiegurari/cargo-make",
"ubi:sagiegurari/cargo-make",
"asdf:mise-plugins/asdf-cargo-make",
"cargo:cargo-make",
]
description = "Rust task runner and build tool"
test = ["makers --version", "cargo-make {{version}}"]
[tools.carp]
backends = ["github:carp-lang/Carp[exe=carp]", "asdf:susurri/asdf-carp"]
description = "Carp Language"
test = ["which carp", ""] # hangs in non-interactive shells
[tools.carthage]
backends = ["asdf:mise-plugins/mise-carthage"]
description = "A simple, decentralized dependency manager for Cocoa"
[tools.ccache]
backends = ["github:ccache/ccache", "asdf:asdf-community/asdf-ccache"]
description = "ccache – a fast compiler cache"
test = ["ccache --version", "ccache version {{version}}"]
[tools.certstrap]
backends = ["github:square/certstrap", "asdf:carnei-ro/asdf-certstrap"]
description = "Tools to bootstrap CAs, certificate requests, and signed certificates"
test = ["certstrap --version", "certstrap version {{version}}"]
[tools.cf]
backends = ["asdf:mise-plugins/mise-cf"]
description = "The official command line client for Cloud Foundry"
[tools.cfn-lint]
backends = ["pipx:cfn-lint"]
description = "Checks CloudFormation templates for practices and behaviour that could potentially be improved"
test = ["cfn-lint --version", "cfn-lint {{version}}"]
[tools.cfssl]
backends = ["aqua:cloudflare/cfssl/cfssl", "asdf:mathew-fleisch/asdf-cfssl"]
description = "CFSSL: Cloudflare's PKI and TLS toolkit"
[tools.cfssljson]
backends = ["aqua:cloudflare/cfssl/cfssljson"]
description = "cfssljson: Takes the JSON output from Cloudflare's cfssl and multirootca programs and writes certificates, keys, CSRs, and bundles to disk."
test = ["cfssljson -version", "Version: {{version}}"]
[tools.chamber]
backends = [
"aqua:segmentio/chamber",
"ubi:segmentio/chamber",
"asdf:mintel/asdf-chamber",
]
description = "CLI for managing secrets"
test = ["chamber version", "chamber v{{version}}"]
[tools.changie]
backends = [
"aqua:miniscruff/changie",
"ubi:miniscruff/changie",
"asdf:pdemagny/asdf-changie",
]
description = "Automated changelog tool for preparing releases with lots of customization options"
test = ["changie --version", "changie version v{{version}}"]
[tools.cheat]
backends = ["aqua:cheat/cheat", "asdf:jmoratilla/asdf-cheat-plugin"]
description = "cheat allows you to create and view interactive cheatsheets on the command-line. It was designed to help remind *nix system administrators of options for commands that they use frequently, but not frequently enough to remember"
[tools.checkmake]
backends = ["aqua:mrtazz/checkmake"]
description = "experimental linter/analyzer for Makefiles"
test = ["checkmake --version", "checkmake {{version}}"]
[tools.checkov]
backends = [
"aqua:bridgecrewio/checkov",
"ubi:bridgecrewio/checkov",
"asdf:bosmak/asdf-checkov",
]
description = "Prevent cloud misconfigurations and find vulnerabilities during build-time in infrastructure as code, container images and open source packages with Checkov by Bridgecrew"
test = ["checkov -v", "{{version}}"]
[tools.chezmoi]
backends = [
"aqua:twpayne/chezmoi",
"ubi:twpayne/chezmoi",
"asdf:joke/asdf-chezmoi",
]
description = "Manage your dotfiles across multiple diverse machines, securely"
test = ["chezmoi --version", "chezmoi version v{{version}}"]
[tools.chezscheme]
backends = ["asdf:mise-plugins/mise-chezscheme"]
description = "Chez Scheme is both a programming language and an implementation of that language, with supporting tools and documentation"
[tools.chicken]
backends = ["asdf:mise-plugins/mise-chicken"]
description = "CHICKEN is a compiler for the Scheme programming language"
[tools.chisel]
backends = [
"aqua:jpillora/chisel",
"ubi:jpillora/chisel",
"go:github.com/jpillora/chisel",
"asdf:lwiechec/asdf-chisel",
]
description = "A fast TCP/UDP tunnel over HTTP"
test = ["chisel --version", "{{version}}"]
[tools.choose]
backends = [
"aqua:theryangeary/choose",
"ubi:theryangeary/choose",
"cargo:choose",
"asdf:carbonteq/asdf-choose",
]
description = "A human-friendly and fast alternative to cut (and sometimes awk)"
test = ["choose --version", "{{version}}"]
[tools.chromedriver]
backends = ["asdf:mise-plugins/mise-chromedriver"]
description = "ChromeDriver is a standalone server that implements the W3C WebDriver and WebDriver BiDi standards"
[tools.cidr-merger]
backends = ["github:zhanhb/cidr-merger", "asdf:ORCID/asdf-cidr-merger"]
description = "A simple command line tool to merge ip/ip cidr/ip range, supports IPv4/IPv6"
test = ["cidr-merger --version 2>&1", "cidr merger {{version}}"]
[tools.cidrchk]
backends = ["github:mhausenblas/cidrchk", "asdf:ORCID/asdf-cidrchk"]
description = "CLI tool for CIDR range operations (check, generate)"
test = ["cidrchk --version", "{{version}},"]
[tools.cilium-cli]
backends = [
"aqua:cilium/cilium-cli",
"ubi:cilium/cilium-cli[exe=cilium]",
"asdf:carnei-ro/asdf-cilium-cli",
]
description = "CLI to install, manage & troubleshoot Kubernetes clusters running Cilium"
test = ["cilium version", "cilium-cli: v{{version}}"]
[tools.cilium-hubble]
backends = ["github:cilium/hubble", "asdf:NitriKx/asdf-cilium-hubble"]
description = "Hubble - Network, Service & Security Observability for Kubernetes using eBPF"
test = ["hubble --version", "{{version}}"]
[tools.circleci]
aliases = ["circleci-cli"]
backends = [
"aqua:CircleCI-Public/circleci-cli",
"ubi:CircleCI-Public/circleci-cli[exe=circleci]",
"asdf:ucpr/asdf-circleci-cli",
]
description = "Use CircleCI from the command line"
test = ["circleci version", "{{version}}"]
[tools.clang]
backends = ["asdf:mise-plugins/mise-llvm", "vfox:mise-plugins/vfox-clang"]
description = "Clang is an 'LLVM native' C/C++/Objective-C compiler, which aims to deliver amazingly fast compiles, extremely useful error and warning messages and to provide a platform for building great source level tools"
[tools.clang-format]
backends = ["asdf:mise-plugins/mise-llvm"]
description = "format C/C++/Java/JavaScript/JSON/Objective-C/Protobuf/C# code"
[tools.clangd]
backends = ["asdf:mise-plugins/mise-llvm"]
description = "clangd understands your C++ code and adds smart features to your editor: code completion, compile errors, go-to-definition and more"
[tools.clarinet]
backends = ["github:hirosystems/clarinet", "asdf:alexgo-io/asdf-clarinet"]
description = "Write, test and deploy high-quality smart contracts to the Stacks blockchain and Bitcoin"
os = ["linux", "macos"]
test = ["clarinet --version", "clarinet {{version}}"]
[tools.claude]
aliases = ["claude-code"]
description = "Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows -- all through natural language commands"
os = ["linux", "macos"]
test = ["claude --version", "{{version}} (Claude Code)"]
[[tools.claude.backends]]
full = "http:claude"
[tools.claude.backends.options]
bin = "claude"
version_list_url = "https://storage.googleapis.com/claude-code-dist-86c565f3-f756-42ad-8dfa-d59b1c096819/claude-code-releases/stable"
[tools.claude.backends.options.platforms.macos-arm64]
url = "https://storage.googleapis.com/claude-code-dist-86c565f3-f756-42ad-8dfa-d59b1c096819/claude-code-releases/{version}/darwin-arm64/claude"
[tools.claude.backends.options.platforms.macos-x64]
url = "https://storage.googleapis.com/claude-code-dist-86c565f3-f756-42ad-8dfa-d59b1c096819/claude-code-releases/{version}/darwin-x64/claude"
[tools.claude.backends.options.platforms.linux-arm64]
url = "https://storage.googleapis.com/claude-code-dist-86c565f3-f756-42ad-8dfa-d59b1c096819/claude-code-releases/{version}/linux-arm64/claude"
[tools.claude.backends.options.platforms.linux-x64]
url = "https://storage.googleapis.com/claude-code-dist-86c565f3-f756-42ad-8dfa-d59b1c096819/claude-code-releases/{version}/linux-x64/claude"
[[tools.claude.backends]]
full = "npm:@anthropic-ai/claude-code"
[tools.claude-squad]
backends = ["aqua:smtg-ai/claude-squad", "ubi:smtg-ai/claude-squad"]
description = "Manage multiple AI agents like Claude Code, Aider, Codex, and Amp. 10x your productivity"
test = ["claude-squad version", """
claude-squad version {{version}}
https://github.com/smtg-ai/claude-squad/releases/tag/v{{version}}"""]
[tools.cli53]
backends = ["aqua:barnybug/cli53"]
description = "Command line tool for Amazon Route 53"
test = ["cli53 --version", "cli53 version {{version}}"]
[tools.clickhouse]
backends = [
# "ubi:ClickHouse/ClickHouse", # ubi not working on linux
"asdf:mise-plugins/mise-clickhouse",
]
description = "ClickHouse® is a high-performance, column-oriented SQL database management system (DBMS) for online analytical processing (OLAP)"
test = [
"clickhouse --version",
"ClickHouse local version {{version | trim_end_matches(pat='-lts') | trim_end_matches(pat='-stable')}}",
]
[tools.clj-kondo]
backends = ["github:clj-kondo/clj-kondo", "asdf:rynkowsg/asdf-clj-kondo"]
description = "Static analyzer and linter for Clojure code that sparks joy"
test = ["clj-kondo --version", "{{version}}"]
[tools.cljstyle]
backends = ["github:greglook/cljstyle", "asdf:abogoyavlensky/asdf-cljstyle"]
description = "A tool for formatting Clojure code"
os = ["linux", "macos"]
test = ["cljstyle version", "mvxcvi/cljstyle {{version}}"]
[tools.clojure]
backends = ["asdf:mise-plugins/mise-clojure"]
description = "The Clojure Programming Language"
[tools.cloud-sql-proxy]
backends = [
"aqua:GoogleCloudPlatform/cloud-sql-proxy",
"asdf:pbr0ck3r/asdf-cloud-sql-proxy",
]
description = "A utility for connecting securely to your Cloud SQL instances"
[tools.cloudflared]
backends = ["aqua:cloudflare/cloudflared", "asdf:threkk/asdf-cloudflared"]
description = "cloudflared connects your machine or user identity to Cloudflare's global network"
test = ["cloudflared -v", "cloudflared version {{version}}"]
[tools.clusterawsadm]
backends = [
"ubi:kubernetes-sigs/cluster-api-provider-aws",
"asdf:kahun/asdf-clusterawsadm",
]
description = "clusterawsadm provides helpers for bootstrapping Kubernetes Cluster API Provider AWS"
test = ["cluster-api-provider-aws version", "clusterawsadm version:"]
[tools.clusterctl]
backends = [
"aqua:kubernetes-sigs/cluster-api",
"asdf:pfnet-research/asdf-clusterctl",
]
description = "Home for Cluster API, a subproject of sig-cluster-lifecycle"
test = ["clusterctl version", "{{version}}"]
[tools.cmake]
backends = ["asdf:mise-plugins/mise-cmake", "vfox:mise-plugins/vfox-cmake"]
description = "CMake is a tool to manage building of source code. Originally, CMake was designed as a generator for various dialects of Makefile, today CMake generates modern buildsystems such as Ninja as well as project files for IDEs such as Visual Studio and Xcode"
[tools.cmctl]
backends = ["aqua:cert-manager/cmctl", "asdf:asdf-community/asdf-cmctl"]
description = "the command line utility that makes cert-manager'ing easier"
[tools.cmdx]
backends = ["aqua:suzuki-shunsuke/cmdx", "ubi:suzuki-shunsuke/cmdx"]
description = "Task runner. It provides useful help messages and supports interactive prompts and validation of arguments"
test = ["cmdx version", "cmdx version {{version}}"]
[tools.cockroach]
backends = ["aqua:cockroachdb/cockroach", "asdf:salasrod/asdf-cockroach"]
description = "A distributed SQL database designed for speed, scale, and survival"
test = ["cockroach version", "v{{version}}"]
[tools.cocoapods]
backends = ["asdf:mise-plugins/mise-cocoapods"]
description = "CocoaPods is a dependency manager for Swift and Objective-C Cocoa projects"
[tools.cocogitto]
backends = ["aqua:cocogitto/cocogitto"]
description = "The Conventional Commits toolbox"
test = ["cog --version", "cog {{version}}"]
[tools.code]
backends = [
"aqua:just-every/code",
"ubi:just-every/code",
"npm:@just-every/code",
]
description = "Fast, effective, mind-blowing, coding CLI. Browser integration, multi-agents, theming, and reasoning control. Orchestrate agents from OpenAI, Claude, Gemini or any provider."
test = ["code --version", "code {{version}}"]
[tools.codebuff]
backends = ["npm:codebuff"]
description = "Codebuff is a CLI tool that writes code for you"
[tools.codefresh]
backends = [
"github:codefresh-io/cli[exe=codefresh]",
"asdf:gurukulkarni/asdf-codefresh",
]
description = "The Codefresh CLI provides a full and flexible interface to interact with Codefresh"
[tools.codeql]
backends = ["asdf:mise-plugins/mise-codeql"]
description = "CodeQL CLI"
[tools.coder]
backends = ["aqua:coder/coder", "asdf:mise-plugins/asdf-coder"]
description = "Provision remote development environments via Terraform"
[tools.codex]
backends = ["aqua:openai/codex", "npm:@openai/codex"]
description = "Lightweight coding agent that runs in your terminal"
test = ["codex --version", "codex-cli {{version}}"]
[tools.colima]
backends = [
"aqua:abiosoft/colima",
"ubi:abiosoft/colima",
"asdf:CrouchingMuppet/asdf-colima",
]
description = "Container runtimes on macOS (and Linux) with minimal setup"
test = ["colima --version", "colima version v{{version}}"]
[tools.committed]
backends = ["aqua:crate-ci/committed"]
description = "Nitpicking commit history since beabf39"
[tools.conan]
backends = ["pipx:conan", "asdf:mise-plugins/mise-pyapp"]
description = "Decentralized, open-source (MIT), C/C++ package manager"
test = ["conan --version", "Conan version {{version}}"]
[tools.concourse]
backends = [
"aqua:concourse/concourse/concourse",
"asdf:mattysweeps/asdf-concourse",
]
description = "Concourse is a container-based automation system written in Go"
[tools.conduit]
backends = ["github:ConduitIO/conduit", "asdf:gmcabrita/asdf-conduit"]
description = "Conduit streams data between data stores. Kafka Connect replacement. No JVM required"
test = ["conduit --version", "v{{version}}"]
[tools.conform]
backends = ["aqua:siderolabs/conform", "asdf:skyzyx/asdf-conform"]
description = "Policy enforcement for your pipelines"
os = ["linux", "macos"]
test = ["conform version", "conform version v{{version}}"]
[tools.conftest]
backends = ["aqua:open-policy-agent/conftest", "asdf:looztra/asdf-conftest"]
description = "Write tests against structured configuration data using the Open Policy Agent Rego query language"
[tools.consul]
backends = ["aqua:hashicorp/consul", "asdf:mise-plugins/mise-hashicorp"]
description = "Consul is a distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure"
[tools.container]
backends = ["aqua:apple/container", "ubi:apple/container"]
description = "A tool for creating and running Linux containers using lightweight virtual machines on a Mac."