This repository is the local AICQ-Mem fork for Aic_forQ memory-system adaptation.
The upstream monorepo surfaces have been removed. The remaining repository is focused on the Python SDK under aicq_mem/ and its tests.
| Path | Purpose |
|---|---|
aicq_mem/ |
Python memory SDK source. |
tests/ |
Python tests for retained SDK behavior. |
pyproject.toml |
Hatch, dependencies, pytest, Ruff, isort. |
Makefile |
Local command shortcuts. |
AGENTS.md |
Working instructions for coding agents in this trimmed repo. |
Install the SDK into the current Python environment:
pip install -e .
python -c "from aicq_mem import AsyncMemory, Memory; print('aicq_mem ok')"Build a wheel for distribution inside the main project release flow:
python -m pip install build
python -m buildhatch env create
hatch run lint
hatch run format
hatch run test
python -m hatchling buildfrom aicq_mem import Memory, AsyncMemoryMemory and AsyncMemory are the retained local implementation. Hosted upstream API clients, telemetry, and reranker adapters have been removed from this fork.