distribution

A persistent encrypted memory service for AI agents. It stores information between sessions and ranks recalled context using recency, frequency, and source authority.

In plain words
What is it for?
Use it to initialize session continuity, recall prior context, save new information, and share memory across different AI models.
Why use it?
Agents normally lose context when a session ends, forcing repeated explanations and risking inconsistent decisions. Persistent memory keeps selected facts and decisions available later.

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/synapselayer/synapse-layer/distribution
Any agent
npx skills add SynapseLayer/synapse-layer --skill distribution
Clone the repo
git clone --depth 1 https://github.com/SynapseLayer/synapse-layer

Made for: Claude Code, Codex.

Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 630 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.00000 $0.00630
Opus 5 $0.00000 $0.00315
Sonnet 5 $0.00000 $0.00126
Haiku 4.5 $0.00000 $0.00063

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

Security

Grade A, and why

distribution 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 2d 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.

docs/distribution/SKILL.md · 86 lines

How it starts

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

Synapse Layer Skill

Persistent Encrypted Memory Layer for AI Agents.

Overview

Synapse Layer provides persistent, encrypted memory with deterministic recall and cross-session continuity.

Why Agents Should Use This

Agents are stateless by default. Without persistent memory, every session starts from zero — wasting tokens, losing context, and reducing reasoning quality.

Synapse Layer enables:

  • Long-term memory — context survives across sessions
  • Trust-aware recall (TQ) — deterministic score based on Recency, Frequency, and Source Authority
  • Cross-model continuity — context transfers between GPT-4, Claude, and others

🚀 Agent Quick Start (Do this first)

If you are an AI agent, follow this priority flow:

  1. Initialize with agent_id for session continuity.
  2. Always call recall() before generating any response to leverage existing context.
  3. Use save_to_synapse to persist new decisions, facts, or preferences.
  4. Trust the TQ score — prefer results with TQ > 0.8 for high-stakes reasoning.

Capabilities

Tool Function
process_text Autonomous detection of decisions, milestones, and alerts
save_to_synapse Structured memory persistence with full security pipeline
backfill_embeddings Async vector embedding generation
health_check System health and capability report

Usage

from synapse_layer import SynapseMemory

memory = SynapseMemory(agent_id="agent-1")

memory.save("User prefers minimal interfaces")
memory.recall("preferences")

Agent Rules

  • Always pass agent_id to maintain identity across sessions
  • Prefer high TQ results when multiple memories match
  • Use recall before generating responses to leverage existing context
  • Let the security pipeline handle PII — do not pre-filter

Read the full file on GitHub · 86 lines

Files

What ships with it

1 file 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. 2d ago First seen · 86 lines · 0 tokens per session scan A 7cb18263c791

Subscribe to this mod's changes

distribution is a skill published in the GitHub repository SynapseLayer/synapse-layer (13 stars, last pushed 15d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 630 tokens. 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.

Related

Other skills, from other repositories

mem9

Persistent cloud memory plugin for OpenClaw. This document routes setup, troubleshooting, and uninstall flows and defines config boundaries.

mem9-ai/mem9 · 27 tokens

kip-cognitive-nexus

Persistent graph-based memory for AI agents via KIP (Knowledge Interaction Protocol). Provides retrieval-first memory operations (KQL), durable writes (KML), schema discovery (META), and memory hygiene patterns. Use whenever the agent needs to consult or update persistent memory, especially for: remembering user…

ldclabs/KIP · 90 tokens

add-connector

Onboard a deus connect connector — a way to route Claude Code sessions to non-Claude models (e.g. GPT via CLIProxyAPI) alongside normal Claude access. Generic orchestrator over whichever connector is selected.

sliamh11/Deus · 49 tokens

add-editor

Wire Deus's memory + evolution layers into an external code editor (Zed and other ACP/MCP clients) so the editor's own agent gains Deus's vault recall and self-improving reflexion loop. Configuration only — no new code. Triggers on "add editor", "use Deus in my editor", "zed integration", "editor integration", "wire…

sliamh11/Deus · 89 tokens

add-llama-cpp

Install and verify a local llama.cpp server for optional Deus local-generation experiments. Keeps Ollama as the required default for embeddings and judge work.

sliamh11/Deus · 35 tokens

code-review

Multi-agent code review with learning feedback loop — reviews PRs using parallel specialized agents (style, logic, security) with confidence scoring and false-positive reduction.

sliamh11/Deus · 33 tokens