routeup completion
routeup completion generates a completion script for your shell. Install it
once and tab-complete subcommands, flags, and live data from the agent.
What completes
Section titled “What completes”- Subcommands and flags — always available, generated statically.
routeup logs [route]— completes active route names when the local agent is running.routeup stop [route]— completes active route names; unsupported owner kinds still fail closed when invoked.routeup inspect <request-id>— completes captured request IDs when the local agent is running.
If the agent is not running, positional completions return empty silently.
Install
Section titled “Install”routeup completion zsh > "${fpath[1]}/_routeup"Add the following to your ~/.zshrc if completions are not already enabled:
autoload -U compinit && compinit# Per-user (most common):routeup completion bash > ~/.local/share/bash-completion/completions/routeup
# System-wide:routeup completion bash | sudo tee /etc/bash_completion.d/routeup >/dev/nullRequires bash-completion v2. On macOS: brew install bash-completion@2.
routeup completion fish > ~/.config/fish/completions/routeup.fishPowerShell
Section titled “PowerShell”This applies to PowerShell on supported macOS or Linux systems. routeup v1 does not support Windows.
routeup completion powershell | Out-String | Invoke-ExpressionTo persist, add the above line to your PowerShell profile ($PROFILE).