TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/Seaus-tech/Aurora-Shell/llms.txt
Use this file to discover all available pages before exploring further.
CLI command is Aurora Shell’s dedicated installer for developer CLI tools. Once installed, it provides one-command access to 38+ popular tools spanning cloud platforms, containers, databases, deployment services, AI APIs, and more. Every invocation fetches the latest package list from GitHub, so the catalog stays current without requiring a full Aurora Shell update.
Installation
Install theCLI command through the Aurora Shell package manager:
CLI script to ~/.aurora-shell_files/bin/CLI and marks it executable. Because ~/.aurora-shell_files/bin is on $PATH, the CLI command is immediately available in any new shell session.
CLI install <package>
Installs a CLI tool using Homebrew (macOS) or winget (Windows) under the hood. Accepts both full package IDs and aliases.
Syntax
- The package list is fetched from GitHub and saved to
~/.aurora-shell_files/cli-packages.json. - The alias is resolved to a full package ID.
- The
installcommand from the registry is executed (e.g.,brew install gh). - A spinner runs while the install completes.
- On success, the installed command name is confirmed.
CLI list
Prints all packages available in the registry, showing each package’s full ID, command name, and description.
Syntax
CLI search <query>
Performs a case-insensitive search of package IDs and aliases in the registry and prints matching results in a formatted table.
Syntax
Package Sources
Each registry entry declares asource field that tells the CLI installer which tool to use:
| Source | Install mechanism |
|---|---|
brew | brew install <formula> (macOS) |
npm | npm install -g <package> |
pip | pip3 install <package> |
pipx | pipx install <package> |
kiro.dev | Custom URL — curl -fsSL https://cli.kiro.dev/install | bash |
aurora | Custom install script embedded in the registry |
Keeping Packages Updated
The CLI package list is always fetched fresh from the Aurora Shell GitHub repository on eachCLI install or CLI list invocation:
~/.aurora-shell_files/cli-packages.json. If the fetch fails (e.g., no network), the locally cached copy is used as a fallback.