docs/commands/install.md
Install a CLI/tool binary into your PATH.
Default backend behavior (--backend auto):
myflow.sh or --registry)parmf install <name>
--registry <URL>: registry base URL (defaults to FLOW_REGISTRY_URL).--backend <auto|registry|parm|flox>: choose install backend explicitly.--version <VERSION>: install a specific version (defaults to latest).--bin <NAME>: binary name to install (defaults to manifest default or package name).--bin-dir <PATH>: install directory (defaults to ~/bin).--force: overwrite an existing binary.--no-verify: skip checksum verification.f install rise can resolve through parm using built-in owner/repo mapping.f install seqd resolves registry package seq with binary seqd.f install lin resolves registry package flow with binary lin.parm, set FLOW_INSTALL_OWNER (env or Flow personal env store) or pass owner/repo directly.The hosted installer can bootstrap core tools after installing flow:
FLOW_BOOTSTRAP_TOOLS="rise seq seqd" (default) installs those with f install ... --backend auto.FLOW_BOOTSTRAP_TOOLS=0 disables this.FLOW_BOOTSTRAP_INSTALL_PARM=1 (default) attempts to install parm for robust GitHub fallback.The registry must expose:
GET /packages/<name>/latest.jsonGET /packages/<name>/<version>/manifest.jsonGET /packages/<name>/<version>/<target>/<bin>FLOW_REGISTRY_URL=https://myflow.sh f install flow
f install rise