memory-stewardship

memory-stewardship is a skill for Codex from murray17/rovai-ai. It costs 87 tokens per session (560 once invoked), scanned A, original, MIT.

A guide for deciding what information belongs in shared long-term memory between agents. It covers when to add, revise or leave out a memory and how narrowly to scope it.

In plain words
What is it for?
Use it when evaluating a possible shared memory, checking existing memories, choosing its scope, or making one small, evidence-based update.
Why use it?
It reduces clutter and prevents temporary facts, guesses or information better kept in code and project records from becoming lasting memory.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it when evaluating a possible shared memory, checking existing memories, choosing its scope, or making one small, evidence-based update.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/murray17/rovai-ai/memory-stewardship
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 murray17/rovai-ai --skill memory-stewardship
Clone the repo
git clone --depth 1 https://github.com/murray17/rovai-ai

Made for: 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 memory-stewardship

README.md
[![agentmods](https://agentmods.dev/badge/skills/murray17/rovai-ai/memory-stewardship/github.svg)](https://agentmods.dev/skills/murray17/rovai-ai/memory-stewardship)
Your own site
<a href="https://agentmods.dev/skills/murray17/rovai-ai/memory-stewardship"><img src="https://agentmods.dev/badge/skills/murray17/rovai-ai/memory-stewardship/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for memory-stewardship

Your own site · 80×15
<a href="https://agentmods.dev/skills/murray17/rovai-ai/memory-stewardship"><img src="https://agentmods.dev/badge/skills/murray17/rovai-ai/memory-stewardship.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 87 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 560 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00087 $0.00560
Opus 5 $0.00044 $0.00280
Sonnet 5 $0.00017 $0.00112
Haiku 4.5 $0.00009 $0.00056

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

Security

Grade A, and why

memory-stewardship 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 10d 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.

skills/memory-stewardship/SKILL.md · 42 lines

What it actually says

共同记忆维护

只保留会影响未来协作的稳定信息。当前事实、用户最新指令和项目权威来源始终高于 Memory。

判断标准

候选内容应当同时满足:

  • 当前任务结束后仍有价值;
  • 来自用户明确表达或真实经历支持的经验;
  • 会改变未来协作行为,而不只是复述发生过的事情;
  • 能写成一条独立、原子的偏好、约定或经验;
  • 不应由 Task、项目文档、代码、历史记录或权限系统承担;
  • 不包含敏感信息或无依据的人格判断。

不满足这些条件时不写入。

流程

  1. 读取 Authority 与安全,确认候选内容适合长期保留。
  2. 把候选压缩成一条原子的未来协作路标。
  3. 读取 Scopes、Kind 与方向,选择最小适用范围。
  4. 读取 View、广泛回忆与最小写入,检查相关现有 Memory。
  5. 只选择一个结果:已有等价内容则停止;已有内容需要纠正则修订;确有新价值则新增;无法确定则停止。
  6. 写入前读取 正文与 Retrieval Keys,完成一次最小更新。
  7. 根据实际结果准确说明已经生效、等待用户决定或未写入。

用户要求删除、停用、恢复或修改不属于当前队员权限的 Memory 时,不用相反正文模拟操作;说明需要由用户在记忆管理中完成。

边界

  • 一次只处理一条原子信息,不连续写多条“以防万一”。
  • 不在会话结束时进行全面记忆扫描。
  • 不把临时日期、路径、分支、进度和一次性阻塞写成长期记忆。
  • 不把搜索摘要、缓存或旧版本当作当前权威正文。
  • 写入失败或结果不确定时,不声称已经保存。
Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 10d ago First seen · 42 lines · 87 tokens per session scan A 89917e8b9ad9

Subscribe to this mod's changes

memory-stewardship is a skill published in the GitHub repository murray17/rovai-ai (60 stars, last pushed today), licensed MIT. It adds 87 tokens to every session and 560 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-30.