Skip to content

Commit f90f1b7

Browse files
authored
docs: fix agy-reader install command path (#566)
Fix the `go install` command for [agy-reader](https://github.com/mjacobs/agy-reader) shown in the README. The main package for the CLI binary is located under `cmd/agy-reader`, so the install path must include that segment. **Before:** ```bash go install github.com/mjacobs/agy-reader@latest ``` **After:** ```bash go install github.com/mjacobs/agy-reader/cmd/agy-reader@latest ``` This is a documentation-only change; no code or tests affected. Co-authored-by: Charley Wu <akunzai@users.noreply.github.com>
1 parent ab3d5c4 commit f90f1b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ agentsview's file watcher detects the sidecar automatically and parses it in
256256
place of summary mode -- no agentsview restart needed.
257257

258258
```bash
259-
go install github.com/mjacobs/agy-reader@latest
259+
go install github.com/mjacobs/agy-reader/cmd/agy-reader@latest
260260

261261
# Generate sidecars for existing sessions...
262262
agy-reader --sync

0 commit comments

Comments
 (0)