keep-memory-current

keep-memory-current is a skill for Claude Code, Codex from GiulioDER/RE-call. It costs 77 tokens per session (1,171 once invoked), scanned A, original, Apache-2.0.

A session-memory practice for coding projects that loads relevant notes when work starts and records useful discoveries before work ends. It treats a project memory file as an index pointing to more detailed notes.

In plain words
What is it for?
Use it when starting or ending work, after solving a non-obvious bug, and after making a decision that future work should remember.
Why use it?
It prevents hard-won context and explanations from being lost between coding sessions.

Skill for Claude CodeCodex

Part of the recall plugin — 2 skills, 4 hooks shipped together

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.

agentmods
npx agentmods add skills/giulioder/re-call/keep-memory-current
Any agent
npx skills add GiulioDER/RE-call --skill keep-memory-current
Clone the repo
git clone --depth 1 https://github.com/GiulioDER/RE-call

Made for: Claude Code, Codex.

Or install recall, the plugin that ships this one along with the rest of its 2 skills, 4 hooks.

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 keep-memory-current

README.md
[![agentmods](https://agentmods.dev/badge/skills/giulioder/re-call/keep-memory-current.svg)](https://agentmods.dev/skills/giulioder/re-call/keep-memory-current)
Your own site
<a href="https://agentmods.dev/skills/giulioder/re-call/keep-memory-current"><img src="https://agentmods.dev/badge/skills/giulioder/re-call/keep-memory-current.svg" alt="Measured on agentmods" height="20"></a>
Per session 77 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,171 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00077 $0.01171
Opus 5 $0.00039 $0.00585
Sonnet 5 $0.00015 $0.00234
Haiku 4.5 $0.00008 $0.00117

Measured 3d ago against content hash dfa17edc37d1, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

keep-memory-current 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 3d 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.

plugin/skills/keep-memory-current/SKILL.md · 103 lines

How it starts

The opening of the file, as written. The whole thing — 103 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Keep memory current

A memory store is only worth what the next session can find in it. Two moments decide that, and they are the two this skill is about: what you load when you start, and what you write when you stop.

The second one decays first and costs the most. A session that solves something hard and ends without recording it has not saved anyone the hour; it has spent the hour on that project's behalf and thrown away the receipt.

When you start

Read the hub, then search before you act. The hub is the index file the project loads into context (commonly MEMORY.md); it carries current state and pointers, not the content. Reading it tells you what exists. It does not tell you what applies.

An index line is a pointer, not the memo. Being able to quote the one-line hook is not having read the entry, and compression drops SCOPE first — which is the part that decides whether the memo applies to what you are about to do.

Before acting on anything the project may already have an opinion about, search. The companion skill check-memory-before-acting covers how to phrase that search, and the short version is: search for the hazard, not the task.

When you stop

One fact per memo, with the cost that bought it

A memo that records only the conclusion cannot be retired later, because nobody can tell whether the reason still holds. Write:

  • the fact, stated so it can be checked
  • why it is true, in enough detail to argue with
  • how to apply it, concretely
  • what it cost to learn — the hour, the outage, the wrong release

The cost is not decoration. It is what lets a future reader judge how hard to defend the memo when new evidence arrives, and it is what makes a stale memo removable instead of load-bearing.

Link liberally, including to things that do not exist

A [[name]] pointing at an unwritten memo is not a broken link. It marks a gap worth filling, and it is the cheapest form of a to-do the store supports.

Delete what turns out to be wrong

Read the full file on GitHub · 103 lines

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. 3d ago First seen · 103 lines · 77 tokens per session scan A dfa17edc37d1

Subscribe to this mod's changes

keep-memory-current is a skill published in the GitHub repository GiulioDER/RE-call (3 stars, last pushed 3d ago), licensed Apache-2.0. It adds 77 tokens to every session and 1,171 once invoked, about $0.0004 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

extract-entities

Extract people, organizations, dates, amounts, or custom labels from a document through the connected Superlinked MCP edge, returning a compact table instead of reading the full document into context. Use when the user asks to list, extract, or tabulate entities from a file.

superlinked/sie · 58 tokens

parse-document

Convert a PDF, scan, image of a page, or office file to clean markdown through the connected Superlinked MCP edge, so the source document is not read into model context directly. Use when the user asks to read, parse, OCR, extract from, summarize, or answer questions about a document.

superlinked/sie · 64 tokens

redact-pii

Redact personal data from a document through the connected Superlinked MCP edge before working with the content. Use when the user asks to redact, anonymize, scrub, de-identify, or remove PII/sensitive data from a document.

superlinked/sie · 53 tokens

summarize-document

Summarize a long PDF, scan, office file, text file, or markdown file through the connected Superlinked MCP edge instead of reading the whole source into model context. Use when the user asks for a summary, overview, digest, or "what does this document say" about a large file.

superlinked/sie · 66 tokens

superlinked-docs

Offload document, image, and structured-output work to the Superlinked inference cluster: convert PDF/DOCX/PPTX/XLSX/HTML/scans to clean markdown, describe an image (caption + tags), or produce schema/grammar-constrained JSON off the cluster — instead of ingesting the file directly, which can reduce the tokens billed…

superlinked/sie · 125 tokens

cocosearch-review-pr

Use when reviewing a GitHub PR or GitLab MR by URL. Fetches diff and metadata via API, then uses CocoSearch for blast radius analysis, dependency impact, pattern consistency, and test coverage assessment. Read-only by default; optionally pushes findings back as inline PR/MR comments after your confirmation.

VioletCranberry/coco-search · 68 tokens