> For the complete documentation index, see [llms.txt](https://evo-5.gitbook.io/evo/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://evo-5.gitbook.io/evo/getting-started/requirements.md).

# Requirements

## Runtime

* **Node.js 22.19 or newer** — evo uses the built-in `node:sqlite` module for local storage

## Host Requirements

Depending on which host you use, you'll need:

### DeepSeek Harness

* DeepSeek Harness `0.1.x`
* A configured Harness LLM provider and model for reflection and consolidation

The Cordis plugin and core library work without Harness; the Harness-specific pieces are optional peer dependencies.

### Claude Code

* Claude Code CLI or desktop app
* No additional API keys required — evo uses the CLI's own credentials for reflection

### Codex

* Codex CLI
* No additional API keys required — evo uses `codex exec` with your existing configuration

## Package Manager

The project uses pnpm, but evo can be installed with any package manager:

```bash
pnpm add @tiz36/evo
# or
npm install @tiz36/evo
# or
yarn add @tiz36/evo
```

## Platform Support

evo runs on macOS, Linux, and Windows. The SQLite database location follows platform conventions:

| Platform | Default Path                                     |
| -------- | ------------------------------------------------ |
| macOS    | `~/Library/Application Support/evo/memory.db`    |
| Linux    | `${XDG_DATA_HOME:-~/.local/share}/evo/memory.db` |
| Windows  | `%APPDATA%\evo\memory.db`                        |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://evo-5.gitbook.io/evo/getting-started/requirements.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
