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.
npx agentmods add skills/giulioder/re-call/keep-memory-currentnpx skills add GiulioDER/RE-call --skill keep-memory-currentgit clone --depth 1 https://github.com/GiulioDER/RE-callWrote 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.
[](https://agentmods.dev/skills/giulioder/re-call/keep-memory-current)<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>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.
| Model | Per session | Once 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 |
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.
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
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.
- 3d ago First seen · 103 lines · 77 tokens per session scan A dfa17edc37d1
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.
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.
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.
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.
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-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…
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.