Commit c9769ec
authored
docs: fix go.work claim in AGENTS.md (#30)
* docs: remove stale cmd/eyrie/ doc references
The eyrie/docs/ARCHITECTURE.md Components diagram and the README.md
build instructions both referenced a cmd/eyrie/ directory that does
not exist — eyrie is a library, not a CLI. Reword the docs to
reflect the library-only reality:
- docs/ARCHITECTURE.md: drop the 'cmd/eyrie/' tree entry, keep the
api/openapi.yaml entry (the OpenAPI spec documents the embedded
HTTP server in internal/api, not a standalone binary).
- README.md: replace 'go build ./cmd/eyrie' with 'go build ./...'
to match Makefile:46 (the build target is just 'go build ./...'
to verify the library compiles).
* docs: fix go.work claim in AGENTS.md
The previous text said 'go.work points at hawk's external/ for local dev', but
eyrie/go.work only contains:
go 1.26.4
use .
replace github.com/GrayCodeAI/tok => ../tok
It does NOT have a hawk/external/eyrie replace. That replace lives in hawk/go.work
(see hawk-eco/hawk/.gitmodules and the checkout-eyrie composite action). Update the
comment to reflect reality and warn that adding other replaces here would conflict
with hawk's workspace.1 parent 3e832f4 commit c9769ec
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
46 | 46 | | |
47 | 47 | | |
48 | 48 | | |
49 | | - | |
| 49 | + | |
50 | 50 | | |
51 | 51 | | |
52 | 52 | | |
| |||
0 commit comments