contexto
Context Engine for your long-running AI agents
File Explorer
Download Latest Version (.zip)- node.js.yml
- before-after-contexto.png
- 2026-05-22-contexto-hermes-plugin-design.md
- 2026-05-23-contexto-hermes-local-backend-design.md
- architecture-overview.md
- contexto-hermes-quickstart.md
- contexto.md
- getting-started.md
- intro.md
- memory-plugin.md
- openrouter-quickstart.md
- providers-and-models.md
- SUMMARY.md
- USAGE_WITH_CLAUDE_CODE.md
- USAGE_WITH_CODEX.md
- base.ts
- default.ts
- index.ts
- sliding-window.ts
- types.ts
- utils.ts
- backend.ts
- index.ts
- summarizer.ts
- types.ts
- client.ts
- helpers.ts
- index.ts
- types.ts
- openclaw.plugin.json
- package.json
- README.md
- tsconfig.json
- docker-compose.hermes-local.yml
- Dockerfile
- README.md
- run_local_e2e.py
- __init__.py
- backend.py
- clustering.py
- embedder.py
- extractor.py
- labeler.py
- mindmap_types.py
- retrieval.py
- store.py
- summarizer.py
- __init__.py
- __main__.py
- client.py
- engine.py
- helpers.py
- install.py
- plugin.yaml
- py.typed
- tools.py
- types.py
- episode_payload.json
- generate_episode_fixture.mjs
- __init__.py
- conftest.py
- test_backend.py
- test_clustering.py
- test_config.py
- test_embedder.py
- test_extractor.py
- test_labeler.py
- test_register.py
- test_retrieval.py
- test_round_trip.py
- test_store.py
- test_summarizer.py
- __init__.py
- conftest.py
- test_client.py
- test_engine.py
- test_helpers.py
- test_install.py
- test_plugin_yaml.py
- test_register.py
- test_smoke.py
- test_tools.py
- test_types.py
- CHANGELOG.md
- Makefile
- pyproject.toml
- README.md
- embed.ts
- extract.ts
- prompt.ts
- registry.ts
- relevance.ts
- consolidation.ts
- index.ts
- memory.ts
- router.ts
- scoring.ts
- semantic-graph.ts
- server.ts
- sqlite-store.ts
- types.ts
- utils.ts
- wm.ts
- store.test.ts
- AGENT.md
- package.json
- README.md
- tsconfig.json
- clustering.ts
- embed.ts
- extractor.ts
- index.ts
- labeler.ts
- mindmap.ts
- retrieval.ts
- similarity.ts
- storage.ts
- tree.ts
- types.ts
- package.json
- README.md
- tsconfig.json
- config.ts
- memory-client.ts
- memory.test.ts
- memory.ts
- proxy.ts
- server.ts
- .env.example
- package.json
- tsconfig.json
- favicon.ico
- page.tsx
- page.tsx
- globals.css
- layout.tsx
- page.tsx
- ActivityDistribution.tsx
- BrainComposition.tsx
- GraphDetailsPanel.tsx
- MemoryModals.tsx
- MemoryStrength.tsx
- ProceduralCard.tsx
- ProfileBadge.tsx
- ProfileManagement.tsx
- ProfileSelector.tsx
- ProfileStats.tsx
- SectorTooltip.tsx
- SemanticGraph.tsx
- UserFilter.tsx
- ErrorState.tsx
- LoadingSkeleton.tsx
- api.ts
- constants.ts
- .gitignore
- eslint.config.mjs
- next.config.mjs
- package.json
- postcss.config.mjs
- README.md
- tsconfig.json
- launcher.js
- start-docker-fullstack.sh
- .dockerignore
- .env.example
- .gitignore
- .nvmrc
- CONTRIBUTING.md
- Dockerfile
- Dockerfile.selfhost
- LICENSE
- package.json
- pnpm-lock.yaml
- pnpm-workspace.yaml
- README.md
- release.config.cjs
π Installation Guide
git clone https://github.com/ekailabs/contexto
Downloads the entire project code from GitHub to your computer.
cd contexto
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Python 3 Python is required to use pip.
pip install contexto-hermes
Installs the package published on PyPI directly β no need to clone the source.
Pulled directly from this repo's README.
3. Docker
Easy- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -t contexto .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 contexto
Runs the built image as an actual container.
4. Node.js
Easynpm install
Downloads and installs the libraries listed in package.json.
npm start
Starts the development/run server.
5. Python
Easypip install contexto-hermes
Installs the package published on PyPI directly β no need to clone the source.
Pulled directly from this repo's README.
6. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
cd packages/contexto-py
This project's files live in a subfolder, so move into it first.
make
Compiles the code based on the generated build configuration to produce an executable.
