summaryrefslogtreecommitdiff
path: root/docs/buildandinstall.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/buildandinstall.md')
-rw-r--r--docs/buildandinstall.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/buildandinstall.md b/docs/buildandinstall.md
index 74562f0..8e7a4f8 100644
--- a/docs/buildandinstall.md
+++ b/docs/buildandinstall.md
@@ -10,8 +10,8 @@ Hexai uses Mage for developer tasks. Install Mage, then run targets like build,
- Full cross-package coverage and HTML report: `mage coverage` (writes `docs/coverage.html`)
- In restricted sandboxes/CI (no sockets), skip network-based tests:
- `HEXAI_TEST_SKIP_NET=1 go test ./... -cover`
-- Install binaries to `GOPATH/bin`: `mage install`
-- Load Fish completions in the current shell after install: `~/go/bin/ask fish | source` (or add a `conf.d` snippet; see `docs/fish-completion.md`)
+- Install binaries to `GOPATH/bin`: `mage install` (does not install Fish completion files; configure Fish yourself—see below)
+- Fish (`ask`): after install, run `ask fish | source` or set up `conf.d` as in [Fish shell completion](fish-completion.md)
Note: `mage lint` uses `golangci-lint`. Install via `mage devinstall` if needed.
@@ -19,7 +19,7 @@ Note: `mage lint` uses `golangci-lint`. Install via `mage devinstall` if needed.
Either use the Mage method as mentioned above, or install directly with:
-- Task CLI (`ask`, agent-scoped Taskwarrior wrapper): `go install codeberg.org/snonux/hexai/cmd/ask@latest`
+- Task CLI (`ask`, agent-scoped Taskwarrior wrapper): `go install codeberg.org/snonux/hexai/cmd/ask@latest` (Fish completions: same as above—[Fish shell completion](fish-completion.md))
- CLI: `go install codeberg.org/snonux/hexai/cmd/hexai@latest`
- LSP: `go install codeberg.org/snonux/hexai/cmd/hexai-lsp-server@latest`
- Action runner: `go install codeberg.org/snonux/hexai/cmd/hexai-tmux-action@latest`