From 96201a623a62b4434ff434a0a4a6b5b247fce481 Mon Sep 17 00:00:00 2001 From: Jeffrey Morgan Date: Sun, 7 Jun 2026 10:57:59 -0700 Subject: [PATCH] Add AGENTS.md and CLAUDE.md to root repository (#16604) --- AGENTS.md | 21 +++++++++++++++++++++ CLAUDE.md | 3 +++ 2 files changed, 24 insertions(+) create mode 100644 AGENTS.md create mode 100644 CLAUDE.md diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 00000000..0656d6aa --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,21 @@ +# AGENTS.md + +## Building + +For a full build from the repository root: + +```sh +cmake -B build . +cmake --build build --parallel 8 +./ollama serve +``` + +For quick Go-only iteration against an existing native payload: + +```sh +go build . +go run . serve +``` + +See `docs/development.md` for prerequisites, platform notes, GPU backends, and +the full development workflow. diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 00000000..d6a1d4b6 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,3 @@ +# CLAUDE.md + +See `AGENTS.md` for the shared agent instructions for this repository.