DEV Community

Cover image for Stop letting your AI agent meet you from scratch on every prompt
Manucho IA
Manucho IA

Posted on

Stop letting your AI agent meet you from scratch on every prompt

Context reset is the most annoying part of using CLI coding agents. The moment a new session starts, your model acts like it has never met you before.

I built Wife to fix this β€” an open-source, zero-dependency memory layer for Claude Code & OpenAI Codex that remembers who you are and what your project does.

Key Features:
Local & Plaintext: Keeps memory in plain Markdown files you control.

Token Budgeting: Prevents context bloat by automatically removing low-scoring facts when hitting limits (1200 tokens for user, 800 for project).

Contradiction Resolution: Updates outdated context instead of stacking contradictory statements.

Traceability: Know exactly where every stored fact originated from.

Quick Start:
Bash
curl -fsSL https://raw.githubusercontent.com/ma-nucho-pro/wife/main/install.sh | bash
Check out the repo on GitHub.

Top comments (0)