remember

remember is a skill for Claude Code, Codex from xpajonx/openempiric. It costs 59 tokens per session (1,183 once invoked), scanned A, original, MIT.

A routing guide for project-memory requests such as remembering decisions, restoring checkpoints, reading notes, and tracking todos.

In plain words
What is it for?
It supports starting or ending sessions, searching and reading stored knowledge, creating or restoring checkpoints, checking memory health, and managing todos.
Why use it?
It helps a coding agent choose the appropriate memory operation instead of treating every request as a new task.

Skill for Claude CodeCodex

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/xpajonx/openempiric/remember
Any agent
npx skills add xpajonx/openempiric --skill remember
Clone the repo
git clone --depth 1 https://github.com/xpajonx/openempiric

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 remember

README.md
[![agentmods](https://agentmods.dev/badge/skills/xpajonx/openempiric/remember.svg)](https://agentmods.dev/skills/xpajonx/openempiric/remember)
Your own site
<a href="https://agentmods.dev/skills/xpajonx/openempiric/remember"><img src="https://agentmods.dev/badge/skills/xpajonx/openempiric/remember.svg" alt="Measured on agentmods" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,183 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.00059 $0.01183
Opus 5 $0.00030 $0.00592
Sonnet 5 $0.00012 $0.00237
Haiku 4.5 $0.00006 $0.00118

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

Security

Grade A, and why

remember 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 4d 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.

packages/oem-knowledge/src/oem_knowledge/skills/remember/SKILL.md · 85 lines

How it starts

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

Remember

This skill maps natural-language "remember" requests to the correct OpenEmpiric OEM MCP tool call.

OEM tools: knowledge_preflight, knowledge_session_start, knowledge_read, knowledge_search, knowledge_source_search, knowledge_source_read, knowledge_reflect, knowledge_session_end, knowledge_health_check, oem_checkpoint_create, oem_checkpoint_list, oem_checkpoint_restore, oem_todo_read, oem_todo_write, oem_todo_advance, knowledge_get_events.

Routing Table

Match the user's phrasing to the action below.

When user says... Do this
"remember" (start of session / standalone) knowledge_session_start + knowledge_read(scope="recent") + knowledge_read(scope="project") + oem_checkpoint_list — surface the latest checkpoint, active work item, recent successes and failures.
"remember where we left off" oem_checkpoint_list (latest checkpoint + active_work_item) + knowledge_read(scope="recent") + knowledge_read(scope="project")
"remember what we tried" / "remember failures" knowledge_search("failure") + knowledge_read(scope="recent") — filter to failures.
"remember decisions about X" knowledge_search("<X>") + oem_todo_read — search both concept memory and open tasks.
"remember the workflow for X" knowledge_search("<X>") scoped to workflow/convention/decision memory. Also check directives/ if it exists.
"remember this" + fact knowledge_reflect with structured events `[{event_type:"decision"
"remember this for next time" + observation knowledge_reflect with events + oem_checkpoint_create to snapshot the current working set.
"restore checkpoint " oem_checkpoint_restore(target="<id>") where <id> is the name_id from checkpoint list.
"list checkpoints" oem_checkpoint_list
"what's my todo" / "what's next" oem_todo_read
"add todo" + item oem_todo_write to append the item.
"mark todo done" / "advance" oem_todo_advance(item_id="<uuid>")
"remember" (end of session / finishing) knowledge_reflect (summarize decisions+outcomes) + oem_checkpoint_create + knowledge_session_end

Read the full file on GitHub · 85 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. 4d ago First seen · 85 lines · 59 tokens per session scan A 40a432ec89ea

Subscribe to this mod's changes

remember is a skill published in the GitHub repository xpajonx/openempiric (10 stars, last pushed 22d ago), licensed MIT. It adds 59 tokens to every session and 1,183 once invoked, about $0.0003 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

kayba-ace

This skill ships learnfromtraces.py, a script that reads OpenClaw session transcripts, feeds them through the ACE learning pipeline, and writes an updated skillbook to disk.

kayba-ai/agentic-context-engine · 0 tokens

setup-open-index

Install and configure Open Index as the read/write context layer for a domain-specialized agent. Use when setting up a legal, marketing, customer support, sales, infrastructure, or other domain agent with Open Index over MCP.

DrDroidLab/open-index · 48 tokens

edit-brain

How to add or edit knowledge in this brain — define doctypes, add or update entities, and correlate them with relationships. Use whenever the user asks to add/update knowledge, define a concept, record a learning, or link two things in the brain.

DrDroidLab/open-index · 55 tokens

codex-memory-guard

Guard task boundaries and preserve confirmed critical project state across Codex compaction. Use when a user wants topic-switch guidance, write-through critical memory, compact HANDOFF checkpoints, PreCompact and compact-resume hooks, four-layer Markdown memory initialization, or memory workflow auditing.

wl1650918245/codex-memory-guard · 59 tokens

build-personal-brain

Create, resume, validate, connect, or maintain a private cross-project memory for AI assistants. Use when a person asks to build a personal memory from local work folders and past assistant conversations, continue an interrupted memory audit, connect an existing memory to another local assistant, verify that the…

mikeshu2001/personal-brain-builder · 81 tokens

acontext-installer

Install Acontext, Login & Init Acontext Project, Add Skill Memory to Agent.

memodb-io/Acontext · 22 tokens