Easily turn Nushell modules into cross-shell CLI tools
library nu nushell
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add readme

+16
+16
README.md
··· 1 + <!-- SPDX-License-Identifier: CC-BY-SA-4.0 --> 2 + <!-- Copyright (c) 2026 MatrixFurry <matrix@matrixfurry.com> --> 3 + 4 + # ModCLI # 5 + 6 + ModCLI allows you to easily turn Nushell modules into cross-shell CLI tools. This makes it much easier to write complex 7 + CLI tools with many subcommands using Nushell. 8 + 9 + ## Usage ## 10 + 11 + Load this module, and call `modcli install <module-source> [install-prefix]` to install your module as a CLI tool. 12 + If you're developing a CLI tool, I recommend adding this to your installation script with a prefix option for package managers. 13 + 14 + See `modcli install --help` for more options. 15 + 16 + Use `modcli uninstall <name> [prefix]` to uninstall the tool.