memory-consistency-model-selector

memory-consistency-model-selector is a skill for Claude Code, Codex from AnthonyAlcaraz/agentic-graph-rag-skills. It costs 194 tokens per session (2,329 once invoked), scanned A, original, MIT.

A decision guide for choosing how quickly different agents must see shared-memory updates. The choices range from strong consistency, where everyone sees the latest write, to eventual consistency, where updates may take time to arrive.

In plain words
What is it for?
Use it to select consistency rules for shared facts, locks, budgets, inventory, collaboration, and other agent-coordination operations.
Why use it?
It prevents agents from contradicting one another, overwriting conclusions, or acting on outdated information. It chooses the consistency level separately for each operation, since safety-critical work needs stricter coordination than tolerant background work.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to select consistency rules for shared facts, locks, budgets, inventory, collaboration, and other agent-coordination operations.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/anthonyalcaraz/agentic-graph-rag-skills/memory-consistency-model-selector
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 AnthonyAlcaraz/agentic-graph-rag-skills --skill memory-consistency-model-selector
Clone the repo
git clone --depth 1 https://github.com/AnthonyAlcaraz/agentic-graph-rag-skills

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 memory-consistency-model-selector

README.md
[![agentmods](https://agentmods.dev/badge/skills/anthonyalcaraz/agentic-graph-rag-skills/memory-consistency-model-selector/github.svg)](https://agentmods.dev/skills/anthonyalcaraz/agentic-graph-rag-skills/memory-consistency-model-selector)
Your own site
<a href="https://agentmods.dev/skills/anthonyalcaraz/agentic-graph-rag-skills/memory-consistency-model-selector"><img src="https://agentmods.dev/badge/skills/anthonyalcaraz/agentic-graph-rag-skills/memory-consistency-model-selector/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-consistency-model-selector

Your own site · 80×15
<a href="https://agentmods.dev/skills/anthonyalcaraz/agentic-graph-rag-skills/memory-consistency-model-selector"><img src="https://agentmods.dev/badge/skills/anthonyalcaraz/agentic-graph-rag-skills/memory-consistency-model-selector.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 194 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,329 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.00194 $0.02329
Opus 5 $0.00097 $0.01164
Sonnet 5 $0.00039 $0.00466
Haiku 4.5 $0.00019 $0.00233

Measured 12d ago against content hash 2c2afafc6325, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

memory-consistency-model-selector 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 12d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (cli.py, lib.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/memory-consistency-model-selector/SKILL.md · 164 lines

How it starts

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

Memory Consistency Model Selector

Overview

When Agent A writes a fact to shared memory, when does Agent B see it? Ch4 names this the memory consistency problem, and getting it wrong produces agents that contradict each other, overwrite each other's conclusions, or act on stale information. This is CAP — the classic consistency/availability trade-off — applied per coordination operation to shared agent memory, not decided once globally. Consistency is chosen per operation because most workflows mix safety-critical decision points with tolerant background work.

Four consistency models, each with a characteristic profile:

  • strong (linearizable): every agent sees the latest write before any proceeds. A synchronization barrier after every write — expensive, but required when agents act on shared authoritative state (locks, budgets, inventory) or make safety-critical irreversible decisions. The chapter's example: a drug-interaction finding every agent must see before recommending treatment.
  • causal: causally-related writes are ordered; unrelated updates may lag. If A's conclusion depends on B's finding, any reader of A also sees B. The practical default for collaborating agents.
  • read_your_writes: an agent always sees its own writes; other agents' writes may arrive later. Session memory for a single agent's continuity.
  • eventual: cheapest; all agents converge eventually, but not when. Fine when no single fact is safety-critical and a final synthesis reconciles disagreement (background enrichment, literature accumulation).

The selector scores each model across the operation's requirement axes and recommends one, surfacing escalate_to_strong when the default is not strong but the operation touches authoritative state — the chapter's rule: default to causal, escalate the irreversible decision points to strong.

The cache-divergence helper makes the failure concrete. Ch4's cache-sharing section warns that without a protocol, Agent B acts on a cached read that a newer committed write already superseded. detect_cache_divergence flags exactly that: any cached snapshot older than the latest committed write on the same key.

Read the full file on GitHub · 164 lines

Files

What ships with it

2 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. 12d ago First seen · 164 lines · 194 tokens per session scan A 2c2afafc6325

Subscribe to this mod's changes

memory-consistency-model-selector is a skill published in the GitHub repository AnthonyAlcaraz/agentic-graph-rag-skills (10 stars, last pushed 2mo ago), licensed MIT. It adds 194 tokens to every session and 2,329 once invoked, about $0.0010 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

lemmalog

Externalize working memory and logical state into the lemmalog Datalog engine (MCP). Use for ANY multi-step task where state should outlive one context window or span agents: long investigations, debugging sessions, audits, multi-agent searches, systematic explorations, planning with many interdependent constraints…

JordyZomer/lemmalog · 105 tokens

library

Sync agent memory files to a Cortex knowledge graph for enhanced retrieval, hybrid search (vector + keyword + graph), AI-powered Q&A with agentic deep research, and knowledge graph exploration.

mocaOS/cortex-app · 39 tokens

openclaw

Persistent memory for agents. Stores preferences, decisions, facts, and events as a connected knowledge graph. Recalled by who, what, when, or why.

hypabase/hypabase · 32 tokens

graph-ask

Ask any natural language question about the memory graph. You generate Cypher directly and execute it. Use when the user has a complex or ad-hoc question that the standard graph tools don't cover.

stevepridemore/graph-memory · 43 tokens

ingest-audio

Transcribe a local audio or video file using Whisper and ingest it into the memory graph. Use when the user has a local MP3, WAV, M4A, MP4, or similar audio/video file they want to add to their knowledge graph.

stevepridemore/graph-memory · 56 tokens

ingest

Ingest a file or URL into the memory graph. Handles local files (text, PDF, DOCX, XLSX, images, etc.) and URLs (web pages, YouTube, Wikipedia, RSS). Use when the user wants to add any document or web content to their knowledge graph.

stevepridemore/graph-memory · 62 tokens