Documentation Index
Fetch the complete documentation index at: https://mintlify.com/SGizek/Raiku/llms.txt
Use this file to discover all available pages before exploring further.
raiku completion generates shell integration scripts that enable tab-completion for Raiku commands, subcommands, and flags. Once installed, pressing Tab while typing a raiku command will suggest matching command names and options. The --install flag handles appending the script to your shell configuration file automatically — or you can capture the output and manage it manually.
Usage
Arguments
| Argument | Required | Values |
|---|---|---|
SHELL | Yes | bash, zsh, fish, powershell |
Flags
| Flag | Description |
|---|---|
--install | Automatically write or append the completion script to the appropriate shell config file. |
Install paths
| Shell | Auto-install destination |
|---|---|
bash | ~/.bashrc |
zsh | ~/.zshrc |
fish | ~/.config/fish/completions/raiku.fish (file is created/replaced) |
powershell | $PROFILE (your PowerShell profile script) |
bash and zsh, Raiku appends a marked block to the config file and skips the append if the marker is already present (idempotent). For fish, it writes a dedicated completion file. For PowerShell, it appends to $PROFILE.
Generated snippets
The completion scripts use Click’s built-in completion mechanism:- bash
- zsh
- fish
- PowerShell
Examples
The
--install flag is idempotent for bash and zsh: if the completion block is already present in your config file, running raiku completion bash --install again will print a notice and skip the append rather than duplicating the entry.