TOOLS / T.02
OPEN SOURCE TOOL
Agentkeep
Agentkeep is self-hosted plain-file memory for agents. It stores durable memory as Markdown, captures raw thoughts in an inbox, renders Memory and Graph views, and commits governed edits to git. Connected agents write through MCP; you keep readable files and their history.
VIEW REPOSITORYINSTALL / VERIFIED
Start from source.
git clone https://github.com/victorv2i/agentkeep
cd agentkeep
pnpm install
pnpm -w build $ node dist/bin/agentkeep.js init /tmp/first-run/MyVault
Created inbox/, memory/ in /tmp/first-run/MyVault
MCP > remember {
"topic": "Review cadence",
"content": "Run the accessibility review before each release.",
"type": "preference",
"source": "project kickoff"
}
← {
"path": "memory/review-cadence.md",
"hash": "0f47252b…",
"commit": "bbccae13…"
}
$ sed -n '1,12p' /tmp/first-run/MyVault/memory/review-cadence.md
---
title: Review cadence
type: preference
source: project kickoff
updated: "2026-07-31"
---
Run the accessibility review before each release. SOURCE / PUBLIC README + TOOL REFERENCE CLI AND MCP INTERFACES VERIFIED