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/synapselayer/synapse-layer/distributionnpx skills add SynapseLayer/synapse-layer --skill distributiongit clone --depth 1 https://github.com/SynapseLayer/synapse-layerWhat 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.00000 | $0.00630 |
| Opus 5 | $0.00000 | $0.00315 |
| Sonnet 5 | $0.00000 | $0.00126 |
| Haiku 4.5 | $0.00000 | $0.00063 |
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.
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.
- MCP Endpoint:
https://forge.synapselayer.org/api/mcp - SDK: github.com/SynapseLayer/synapse-layer
- PyPI: synapse-layer
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:
- Initialize with
agent_idfor session continuity. - Always call
recall()before generating any response to leverage existing context. - Use
save_to_synapseto persist new decisions, facts, or preferences. - 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_idto maintain identity across sessions - Prefer high TQ results when multiple memories match
- Use
recallbefore generating responses to leverage existing context - Let the security pipeline handle PII — do not pre-filter
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.
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.
- 2d ago First seen · 86 lines · 0 tokens per session scan A 7cb18263c791
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.
Other skills, from other repositories
mem9
Persistent cloud memory plugin for OpenClaw. This document routes setup, troubleshooting, and uninstall flows and defines config boundaries.
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…
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.
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…
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.
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.