# AGENTS.md

Self-evolving Context Database for AI Agents. Unify Agent Memory, Knowledge RAG and Skills.

## Setup

```
uv sync
```

## Commands

```
make help
make check-pip
make check-deps
make build          # produce a build
make clean
make build-studio
```

## Layout

- `tests/`       724 source files
- `openviking/`  621 source files
- `examples/`    450 source files
- `third_party/` 324 source files
- `web-studio/`  282 source files
- `bot/`         181 source files

## Conventions

- Tests live alongside the code they cover, following `.github/workflows/api_test.yml`.
- CI defines what passing means. See `.github/workflows/_build.yml`, and keep it green.
- TODO: add the two or three conventions a newcomer always gets wrong here.

## Gotchas

- `third_party/croaring/roaring.c` is 797KB. It will not fit comfortably in context, so read it in parts.

---

Drafted by agentreadme.com from what is in this repository. Everything marked TODO
needs a human. Check it in as AGENTS.md at the root.
