Skip to main content

A stateful personal agent with episodic memory for Claude Code.

Project description

vinod

Persistent memory for Claude Code. Every session picks up where the last one left off.

No context pasting. No handoff docs. Vinod stores what you built, what you decided, and what's next — and surfaces it automatically at the start of every Claude Code session.

GitHub: motornomad/agent_vinod


Install

pip install vinod
vinod init

Install globally, not inside a venv. Vinod runs as a background hook every time Claude Code starts — it needs to be on your system PATH, not scoped to a project environment.

Windows: If vinod is not found after install, your Python Scripts folder may not be in PATH. Fix it in PowerShell:

$p = python -c "import sys; print(sys.prefix + '\Scripts')"
[Environment]::SetEnvironmentVariable("PATH", $env:PATH + ";$p", "User")

Then open a new terminal and run vinod init again. Git Bash users: add export PATH="$PATH:/c/Users/<your-username>/AppData/Roaming/Python/Python3XX/Scripts" to ~/.bashrc and run source ~/.bashrc.

Restart Claude Code. That's it.


What happens after vinod init

vinod init does four things:

  1. Scaffolds ~/.vinod/ — episodic log, beliefs file, agent identity files
  2. Writes ~/.claude/CLAUDE.md — tells Claude how to use the memory
  3. Registers a UserPromptSubmit hook (vinod session-start) — injects your recent memory into every new session automatically
  4. Registers a Stop hook (vinod session-end) — summarises and saves the session when Claude Code closes

Both hooks are wired into ~/.claude/settings.json. Claude Code runs them for you — no manual steps.


How it works

Session start (automatic)

When you open Claude Code and send your first message, the vinod session-start hook fires before Claude responds. It reads your last 15 episodic entries and any active beliefs, then injects a briefing into the conversation context. Claude sees this and does two things:

  1. Summarises what was last worked on in 2–3 sentences
  2. Asks: "Want to continue there, or work on something else?"

You didn't paste anything. Claude already knows.

Session end (automatic)

When Claude Code stops (or you close the session), the vinod session-end hook fires. It parses the session transcript, summarises what was built or decided, and appends an episodic entry to ~/.vinod/memory/episodic.jsonl.

If you have an Anthropic API key configured (vinod config set-api-key <key>), summaries are generated by Claude Haiku with a cached system prompt. Otherwise, a rule-based summariser runs as a fallback.


Memory layout

~/.vinod/
├── CONTEXT.md                  # fallback: paste into any session without hook support
├── agent/
│   ├── system_prompt.md        # Claude's identity and role (edit to personalise)
│   └── guardrails.md           # hard limits (edit to add constraints)
└── memory/
    ├── episodic.jsonl          # append-only log of sessions and decisions
    ├── consolidation_state.json # last consolidation run metadata
    └── semantic/
        └── beliefs.json        # stable invariants that override episodic memory

Episodic vs semantic

Episodic memory is the rolling log. Every session writes an entry: what project, what was built, which files were touched. The last 15 entries are injected at session start.

Semantic memory (beliefs.json) is for stable facts that should always hold — architectural constraints, research invariants, hard decisions. Beliefs override episodic when they conflict. You can edit this file directly, or let vinod consolidate promote patterns automatically.


Consolidation: episodic → semantic

After you have a few weeks of sessions, run:

vinod consolidate

Vinod reads your recent episodic log, calls Claude Haiku, and promotes recurring patterns into beliefs.json automatically. Beliefs are deduplicated and confidence-scored.

vinod consolidate --dry-run        # preview without writing
vinod consolidate --days 60        # read 60 days instead of 30

Requires an API key (vinod config set-api-key sk-ant-...). You can also schedule this via cron — e.g., weekly.


MCP tools (available inside sessions)

Claude Code connects to Vinod via MCP (stdio transport, registered by vinod init):

Tool What it does
read_memory Returns the last N episodic entries
write_episode Writes a richer episodic entry than the hook would produce
get_beliefs Returns beliefs.json
search_episodes Filters episodic entries by project name and/or tags
consolidate Triggers episodic → semantic promotion (requires API key)
update_belief Adjusts a belief's confidence or retires it

In practice the basic tools are called automatically by the hooks, but you can invoke any of them explicitly — e.g., say "close session" to trigger a detailed write_episode call, or "consolidate my memory" to promote today's patterns into beliefs.


CLI reference

vinod init [--no-mcp]              scaffold ~/.vinod/, register MCP and both hooks
vinod status                       episode count, recent entries, belief summary, consolidation state
vinod log -p <proj> -s <msg>       write a manual episodic entry
vinod consolidate [--days N]       promote episodic patterns into beliefs via Claude API
  [--dry-run]
vinod config set-api-key <key>     store an Anthropic key for LLM-based summaries and consolidation
vinod config show                  show current config
vinod uninstall                    remove ~/.vinod/, deregister hooks and MCP from settings.json
vinod mcp                          start the MCP server (Claude Code calls this; you don't need to)

Day-by-day experience

Day 1: pip install vinod && vinod init, restart Claude Code. First session starts cold (empty log). Work normally. At end, say "close session" — Claude writes a detailed first entry.

Day 2+: Open Claude Code, send any message. Vinod injects your memory. Claude briefs you on yesterday's work and asks what's next. You answer. No context pasting required.

After a few weeks: Run vinod consolidate. Stable patterns from your session history become beliefs that persist across all future sessions.

Checking state:

vinod status
Episodic entries : 31
Last 3 entries:
  [2026-04-27T21:59] my-project -- Added auth middleware; deployed to staging
  [2026-04-27T21:38] my-project -- Wired logging pipeline; fixed retry logic
  [2026-04-27T04:29] code-server -- Google OAuth + HTTPS proxy live
Beliefs          : 5 total, 5 active
  [92%] User works primarily on my-project and code-server in parallel
  [85%] Auth middleware is the current critical path
  [78%] Deployments go to staging first, then prod after review
Last consolidate : 2026-04-28T02:00  (+3 beliefs from 28 episodes)
MCP registered   : yes

Optional: LLM-based session summaries

By default, session summaries are generated by a rule-based parser (fast, no API key needed). For richer summaries and consolidation support:

vinod config set-api-key sk-ant-...

Vinod will use Claude Haiku (cached system prompt) to summarise each session and to run consolidation. Falls back to rule-based if the API call fails.


Status

0.5.0 — Consolidation: vinod consolidate promotes episodic patterns into semantic beliefs via Claude API. New MCP tools: search_episodes, consolidate, update_belief. Richer vinod status with belief confidence summary and last consolidation state. Fixed beliefs display bug (beliefs were silently dropped if schema used fact field instead of summary).

0.4.11 — Hook-based session start and end. vinod init registers both hooks automatically. No context pasting required. LLM summarisation with Haiku (optional). vinod config for API key management. vinod uninstall to cleanly remove. Windows fixes.


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vinod-0.5.0.tar.gz (20.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vinod-0.5.0-py3-none-any.whl (20.1 kB view details)

Uploaded Python 3

File details

Details for the file vinod-0.5.0.tar.gz.

File metadata

  • Download URL: vinod-0.5.0.tar.gz
  • Upload date:
  • Size: 20.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for vinod-0.5.0.tar.gz
Algorithm Hash digest
SHA256 f11a7759514463100bfbda3c6481c49f794b9c7c394cf126bcf6c9d85b499915
MD5 3040baeedb4efd8d477eee6256648536
BLAKE2b-256 b2b93435550388d51d26da7aabfe23178390cce1a751b0c6b73e239b141b9a8a

See more details on using hashes here.

File details

Details for the file vinod-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: vinod-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 20.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for vinod-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 41d9d2587e2239e313fc78d55dad428c4b4c3e7d2dbf9d3079da3399b413598c
MD5 256a0ae60640172c7953266eb97a42f1
BLAKE2b-256 06bff8f7980a099d52b3f23a9c9600e9765fdc3e6b80456ab5b497601713ef39

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page