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 skills add maximem-ai/maximem_synap_sdk --skill synap-codexgit clone --depth 1 https://github.com/maximem-ai/maximem_synap_sdkWrote 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.
[](https://agentmods.dev/skills/maximem-ai/maximem_synap_sdk/synap-codex)<a href="https://agentmods.dev/skills/maximem-ai/maximem_synap_sdk/synap-codex"><img src="https://agentmods.dev/badge/skills/maximem-ai/maximem_synap_sdk/synap-codex/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.
<a href="https://agentmods.dev/skills/maximem-ai/maximem_synap_sdk/synap-codex"><img src="https://agentmods.dev/badge/skills/maximem-ai/maximem_synap_sdk/synap-codex.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.01694 |
| Opus 5 | $0.00000 | $0.00847 |
| Sonnet 5 | $0.00000 | $0.00339 |
| Haiku 4.5 | $0.00000 | $0.00169 |
Grade A, and why
synap scanned grade A with 1 finding 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 9d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- **Four fetch interfaces: match retrieval to the scope you ingested at:** `sdk.user.context.fetch(user_id=...)`, `sdk.customer.context.fetch(customer_id=...)` (B2B only, rejected on B2C), `sdk.client.context.fetch()`, ` Copies of this mod
1 near-identical copy found in the catalogue:
- synap-codex — 91% identical, 12 lines differ
How it starts
The opening of the file, as written. The whole thing — 64 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Maximem Synap — Agent Memory Skill (Codex)
Synap is a managed memory layer for AI agents: it ingests conversations/documents, extracts structured knowledge (facts, preferences, episodes, entities), and serves ranked, scope-aware context back at retrieval time. No vector DB to run, no retrieval pipeline to build.
This is the Codex edition. The integration knowledge — reference/, scripts/, examples/ — is byte-for-byte identical to the Claude Code skill; only this manifest and AGENTS.md differ. Read only the reference files you actually need.
Sandbox & approvals (read first)
This skill does real work in the user's repo, so the procedure needs capabilities Codex gates behind approval. State what you need before you start; don't assume silent execution:
- Network access — to
pip install maximem-synap/npm install @maximem/synap-js-sdkand the framework package, and for the SDK to reach Synap Cloud at runtime. - File writes — to add integration code and (if missing) a git-ignored
.env. - A secret — the
synap_...API key. Ask the user to provide it; never print it back or commit it.
If running with restricted network/filesystem, tell the user which commands to run themselves.
Procedure — the order to do this in
There is no CLI. Provisioning happens by hand in the dashboard; the SDK only uses a key that already exists. Do not skip the PAUSE.
- Detect the stack. Identify the user's framework (or "custom"). This selects which
reference/frameworks/<name>.mdto follow — seereference/frameworks/_index.md. - Provision in the dashboard (manual). Walk the user through
reference/dashboard-setup.md: sign up → create Client → create Instance (+ upload a use-case.md, seereference/use-case-markdown.md) → set B2C/B2B → generate an API key. - ⏸ PAUSE. Ask the user to paste their
synap_...key (or set it themselves), thenexport SYNAP_API_KEY=synap_...andexport SYNAP_INSTANCE_ID=inst_...(the dashboard shows both together). Do not write integration code before the key is set. - Install. The SDK + the framework package (needs network + approval — see "Sandbox & approvals"). Details in
reference/sdk-setup.md. - Integrate. Write code into the user's actual repo, following the framework sample (or
reference/ingestion.md+reference/context-fetch.mdfor a custom stack). - Verify. Run
python scripts/verify_synap.py. Never report done without a green run.
What ships with it
34 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.
- AGENTS.md 2.6 KB
- examples/multi-tenant-scoping.md 5.5 KB
- examples/python-minimal.py 2.7 KB runs code
- examples/typescript-minimal.ts 3.7 KB runs code
- README.md 2.4 KB
- reference/context-fetch.md 6.4 KB
- reference/core-concepts.md 8.3 KB
- reference/dashboard-setup.md 3.2 KB
- reference/discovery.md 4.8 KB
- reference/frameworks/_index.md 3.1 KB
- reference/frameworks/agno.md 2.0 KB
- reference/frameworks/autogen.md 1.9 KB
- reference/frameworks/claude-agent.md 4.5 KB
- reference/frameworks/crewai.md 1.8 KB
- reference/frameworks/google-adk.md 1.9 KB
- reference/frameworks/haystack.md 3.2 KB
- reference/frameworks/langchain.md 3.8 KB
- reference/frameworks/langgraph.md 2.9 KB
- reference/frameworks/livekit-agents.md 3.7 KB
- reference/frameworks/llamaindex.md 2.1 KB
- reference/frameworks/mastra.md 4.0 KB
- reference/frameworks/mcp.md 3.2 KB
- reference/frameworks/microsoft-agent.md 2.5 KB
- reference/frameworks/nemo-agent-toolkit.md 2.7 KB
- reference/frameworks/openai-agents.md 2.4 KB
- reference/frameworks/pipecat.md 3.0 KB
- reference/frameworks/pydantic-ai.md 2.1 KB
- reference/frameworks/semantic-kernel.md 2.3 KB
- reference/frameworks/vercel-adk.md 3.8 KB
- reference/ingestion.md 6.1 KB
- reference/production.md 6.1 KB
- reference/sdk-setup.md 8.9 KB
- reference/use-case-markdown.md 2.4 KB
- scripts/verify_synap.py 3.3 KB runs code
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.
- 9d ago First seen · 64 lines · 0 tokens per session scan A 57b569290248
synap is a skill published in the GitHub repository maximem-ai/maximem_synap_sdk (64 stars, last pushed 8d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,694 tokens. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
deja-search
Search deja before re-deriving past work: when the user refers to earlier sessions or decisions, before debugging an error, and before implementing something that may already exist. It searches this machine's own history across every AI coding tool used on it, going back further than deja itself was installed.
deja-history
Search the user's past AI coding sessions. Use when they say things like 'didn't we fix this before', 'what did we decide about X', or before re-debugging an error that may already be solved.
plur-memory
Persistent learning for AI agents. Open engram format. Your agent learns from corrections, remembers across sessions, and transfers knowledge across domains.
dashboard
Open OwnMem Console, the local dashboard for this repository's memory. Use when the user asks to open the dashboard, see memory metrics, check adoption or recall quality, or set up the optional embedding lane. Requires a repository initialized with the dashboard layer.
Effective Memory
The essential habits for an AI agent with memory — session bookends, learning triggers, verification, safety, and the operational discipline that turns raw recall into compounding intelligence. Pinned, always-injected.
plur-session-end
Extract durable learnings at the end of a session. Saves corrections, preferences, and codebase patterns as engrams — nothing ephemeral, nothing sensitive.