graphmind-memory

graphmind-memory is a skill for Claude Code, Codex from kostya-pakhomov/graphmind. It costs 93 tokens per session (607 once invoked), scanned A, original, MIT.

A skill connects an agent to GraphMind, a shared memory system for retaining project knowledge across sessions and people. It restores context, records work and decisions, and consolidates the session afterward.

In plain words
What is it for?
Use it to bootstrap relevant memory, search stored project knowledge, record significant actions or decisions, and flush a summary when the session ends.
Why use it?
It reduces repeated questions and lost context by making earlier project knowledge available to later agents and sessions.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions AGENTS.md.

Good fit Use it to bootstrap relevant memory, search stored project knowledge, record significant…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kostya-pakhomov/graphmind/graphmind-memory
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add kostya-pakhomov/graphmind --skill graphmind-memory
Clone the repo
git clone --depth 1 https://github.com/kostya-pakhomov/graphmind

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for graphmind-memory

README.md
[![agentmods](https://agentmods.dev/badge/skills/kostya-pakhomov/graphmind/graphmind-memory.svg)](https://agentmods.dev/skills/kostya-pakhomov/graphmind/graphmind-memory)
Your own site
<a href="https://agentmods.dev/skills/kostya-pakhomov/graphmind/graphmind-memory"><img src="https://agentmods.dev/badge/skills/kostya-pakhomov/graphmind/graphmind-memory.svg" alt="Measured on agentmods" height="20"></a>
Per session 93 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 607 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00093 $0.00607
Opus 5 $0.00046 $0.00303
Sonnet 5 $0.00019 $0.00121
Haiku 4.5 $0.00009 $0.00061

Measured 6d ago against content hash 6ae22b894ef2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

graphmind-memory scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

kodik-plugin/skills/graphmind-memory/SKILL.md · 46 lines

What it actually says

GraphMind — постоянная память по MCP

Навык подключает агента к общей памяти проекта. Требуется подключённый MCP-сервер graphmind (см. README плагина, раздел «Подключение»). Память живёт между сессиями и общая для нескольких агентов и людей: один накопил — остальные пользуются.

1. В начале работы — восстановить контекст

bootstrap_memory({ cwd: "<абсолютный путь проекта>", query: "<суть запроса пользователя>", depth: 1 })

Один вызов определяет рабочее пространство (workspace) по пути и делает семантический recall накопленного знания. Используй полученный контекст, не переспрашивай то, на что память уже ответила.

2. По ходу работы — сохранять

Что Вызов
Завершён значимый шаг record_action({ summary })
Факт/решение этого проекта propose_new_memory({ level: "L2", node_type: "atom", content })
Кросс-проектное решение propose_new_memory({ level: "L2", node_type: "atom", scope: "global", content })

scope: "global" — только для общих паттернов (MCP, Docker, CI, конвенции языка/IDE, настройка хуков). Бизнес-логика конкретного приложения и статусы задач одного репозитория — без global.

3. Поиск по памяти

memory_query({ query: "<вопрос>" })   # гибридный: семантика (эмбеддинги) + ключевые слова

Дополнительно: get_chain — причинная цепочка от узла; find_contradictions — смысловые противоречия; list_memory — последние карточки.

4. В конце сессии — сохранить итог

flush_session_memory({ summary: "итог: что сделано, ключевые решения" })

Запреты

  • Не полагаться на историю чата как на память — только через MCP graphmind.
  • Не дублировать то, что уже есть в AGENTS.md / KODIK.md — в память идут решения и статусы, которых нет в файлах.
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 46 lines · 93 tokens per session scan A 6ae22b894ef2

Subscribe to this mod's changes

graphmind-memory is a skill published in the GitHub repository kostya-pakhomov/graphmind (2 stars, last pushed 1mo ago), licensed MIT. It adds 93 tokens to every session and 607 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

using-cortex-memory

Use when connected to a Cortex memory MCP server (tools named memorize, recall, recallabout, recalltimeline, listmemories, forget) — at session start, before asking the user for facts they may have shared before, after learning durable facts/preferences/decisions, when the user says "remember/recall/forget", or when…

fernsdavid25/cortex-protocol · 82 tokens

mnema

Use the Mnema MCP server to give the AI long-term, searchable memory. Use it whenever the user shares durable facts, preferences, decisions, or context worth recalling in future sessions. Mnema stores memories in a vector database and recalls them with semantic + hybrid search, with decay scoring and summarization so…

mienetic/mnema · 130 tokens

plur-memory

Persistent learning for AI agents. Open engram format. Your agent learns from corrections, remembers across sessions, and transfers knowledge across domains.

plur-ai/plur · 31 tokens

plur-session-end

Extract durable learnings at the end of a session. Saves corrections, preferences, and codebase patterns as engrams — nothing ephemeral, nothing sensitive.

plur-ai/plur · 35 tokens

plur-memory

Your memory stays on your machine. No cloud, no tracking, no API key. PLUR makes your OpenClaw remember — and shares that memory with every other tool you use.

plur-ai/plur · 41 tokens

mnemo-cortex

Installs and wires Mnemo Cortex (local-first persistent memory) into OpenClaw and other MCP-capable agents. Use for cross-session recall, decision history, or multi-agent shared memory.

GuyMannDude/mnemo-cortex · 44 tokens