# Fish Completion The `ask` task-management CLI embeds its Fish completion script in the binary and prints it with `ask fish`. It completes the top-level `ask` subcommands and the nested `ask dep` operations. It also completes task UUIDs for UUID-taking commands by reading the current project from `ask all --json` and filtering out completed and deleted tasks. The script preserves the global `--json` flag. Load it into the current Fish session: ```sh ask fish | source ``` If you installed with `mage install` and `~/go/bin` is not on your `PATH` yet, use: ```sh ~/go/bin/ask fish | source ``` To enable it automatically for new Fish sessions, add this to your Fish config or a file in `~/.config/fish/conf.d/`: ```fish set -l ask_bin ~/go/bin/ask if test -x $ask_bin $ask_bin fish | source end ``` No external `ask.fish` file is required.