Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Binaries
/eyrie
/basic
bin/
*.exe

Expand Down
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ Format: [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) · Versioning:
- `CODE_OF_CONDUCT.md` — Contributor Covenant 2.1.
- `.gitattributes` — LF line-ending normalization, binary detection,
GitHub linguist hints.
- `.github/dependabot.yml` — weekly `gomod` + `github-actions` updates.
- `.github/PULL_REQUEST_TEMPLATE.md` — Summary / Changes / Testing /
Checklist.
- `.github/ISSUE_TEMPLATE/bug_report.yml` — structured bug report.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ When your app calls a model, eyrie figures out which provider to use, how to tal
go get github.com/GrayCodeAI/eyrie
```

Requires Go 1.26+. Zero external dependencies.
Requires Go 1.26+. Minimal dependencies (UUID, OpenTelemetry, SQLite, keyring).

```go
import "github.com/GrayCodeAI/eyrie/client"
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ We follow [coordinated vulnerability disclosure](https://en.wikipedia.org/wiki/C

## Security practices in this repo

- **Dependency monitoring:** automated via Dependabot (see
`.github/dependabot.yml`).
- **Dependency monitoring:** vulnerable dependencies are detected by
`govulncheck`, which runs on every CI build (see "Vulnerability scanning").
- **Static analysis:** `golangci-lint` / `ruff` / `mypy` enforced in CI.
- **Vulnerability scanning:** `govulncheck` (Go) / `pip-audit` (Python) run
on every CI build.
Expand Down
Loading