Harness Bridge
SDK / ToolA local launcher that points Claude Code and seven other coding harnesses at any OpenAI-, Anthropic- or Responses-compatible endpoint — without editing a single config file.
- launcher
- local-models
- cli
- menu-bar
A long-term memory runtime for AI agents: a markdown store with local ranked retrieval, shared by Claude Code and Codex CLI, no API keys.
agent-memory keeps markdown files in one store as the single source of truth, with a local SQLite index beside them as a cache you can delete at any time. Recall answers with file paths ranked by BM25 rather than pasted text, the agent opens each hit only as deep as the task needs, and a sleep-time pass consolidates and forgets by value on its own clock. Claude Code, Codex CLI, and anything that can run a shell command share the same store.
For anyone whose coding agent forgets decisions between sessions: keep project decisions, preferences, and post-mortems in one store that Claude Code and Codex CLI both read and write, so the next session starts warm instead of from zero.
# Requires Python 3.12+ and uv; no PyPI release yet git clone https://github.com/tigerless-labs/agent-memory.git cd agent-memory uv sync --all-packages mem init # store defaults to ~/agent-memory-store; # export AGENT_MEMORY_STORE to relocate it — in every shell your agents run in
Version 0.1.0 and not on PyPI yet, so you are installing from a checkout — expect churn. The store path must be exported consistently in every environment your agents run in, or each one quietly gets its own store.
Repository
tigerless-labs/agent-memoryCharted
A local launcher that points Claude Code and seven other coding harnesses at any OpenAI-, Anthropic- or Responses-compatible endpoint — without editing a single config file.
Answers macOS Spotlight and Siri prompts with your signed-in Claude Code account — an experimental macOS 27 model-delegation provider.
Extract your own local chat history from ten AI coding assistants into one normalized JSONL — for fine-tuning, analytics, or backing up years of conversations. Standard library only.