Skip to content

Commit a8ac024

Browse files
author
Ismael Marchi
committed
docs: launch narrative - focus on demonstration over explanation
1 parent 152e79d commit a8ac024

2 files changed

Lines changed: 43 additions & 45 deletions

File tree

README.md

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
<div align="center">
22

3-
# Synapse Layer
3+
# Synapse Layer — Long-Term Memory for AI Agents
44

5-
### Autonomous Memory Engine for AI Agents
6-
7-
**Infinite Memory. Zero Context Loss. Built-in Security.**
8-
<br>
9-
*The open-core memory standard for the next generation of AI agency.*
5+
> **Plug once. Remember forever. Zero-Knowledge. Zero-Amnesia. 🧠**
106
117
<br>
128

@@ -20,14 +16,31 @@
2016
[![Documentation](https://img.shields.io/badge/Docs-Mintlify-0D9373)](https://docs.synapselayer.org)
2117
[![v1.0.7 Stable](https://img.shields.io/badge/v1.0.7-stable-informational)](CHANGELOG.md)
2218

23-
[Website](https://synapselayer.org) · [Forge](https://forge.synapselayer.org) · [Docs](https://forge.synapselayer.org/docs) · [PyPI](https://pypi.org/project/synapse-layer/) · [Smithery](https://smithery.ai/servers/synapselayer/synapse-protocol)
19+
[Website](https://synapselayer.org) · [Forge](https://forge.synapselayer.org) · [Docs](https://docs.synapselayer.org) · [PyPI](https://pypi.org/project/synapse-layer/) · [Smithery](https://smithery.ai/servers/synapselayer/synapse-protocol)
2420

2521
<!-- mcp-name: io.github.SynapseLayer/synapse-secure-memory -->
2622

2723
</div>
2824

2925
---
3026

27+
```python
28+
from synapse_layer import SynapseMemory
29+
30+
memory = SynapseMemory(agent_id="my-agent")
31+
32+
# 1. Agents save context automatically
33+
memory.save("User prefers absolute security and neural handover.")
34+
35+
# 2. Recall is deterministic and explainable
36+
info = memory.recall("user focus")
37+
# Result: "User prefers absolute security and neural handover."
38+
```
39+
40+
That's the entire API. **Encryption, PII redaction, differential privacy, intent validation, and trust scoring** — all happen under the hood. No configuration. No boilerplate. No amnesia.
41+
42+
---
43+
3144
## 🚀 Quick Install
3245

3346
**Via Smithery (recommended for MCP agents):**
@@ -331,7 +344,7 @@ Open-core model: the SDK, MCP server, and security pipeline are fully open sourc
331344
<div align="center">
332345
<strong>Giving Agents a Past. Giving Models a Soul. ⚗️</strong>
333346
<br><br>
334-
<a href="https://synapselayer.org">Website</a> · <a href="https://forge.synapselayer.org">Forge</a> · <a href="https://forge.synapselayer.org/docs">Docs</a> · <a href="https://github.com/SynapseLayer/synapse-layer">GitHub</a> · <a href="https://pypi.org/project/synapse-layer/">PyPI</a> · <a href="https://smithery.ai/servers/synapselayer/synapse-protocol">Smithery</a>
347+
<a href="https://synapselayer.org">Website</a> · <a href="https://forge.synapselayer.org">Forge</a> · <a href="https://docs.synapselayer.org">Docs</a> · <a href="https://github.com/SynapseLayer/synapse-layer">GitHub</a> · <a href="https://pypi.org/project/synapse-layer/">PyPI</a> · <a href="https://smithery.ai/servers/synapselayer/synapse-protocol">Smithery</a>
335348
<br><br>
336349
Built by <a href="https://forge.synapselayer.org">Ismael Marchi</a> · <a href="https://x.com/synapselayer">@synapselayer</a>
337350
</div>

docs/introduction.mdx

Lines changed: 22 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,40 @@
11
---
22
title: Introduction
3-
description: "Infinite Memory. Zero Context Loss. Built-in Security."
3+
description: "Plug once. Remember forever. Zero-Knowledge. Zero-Amnesia."
44
---
55

6-
# Synapse Layer
6+
# Synapse Layer — Long-Term Memory for AI Agents
77

8-
**The autonomous memory engine for AI agents.**
8+
> Plug once. Remember forever. Zero-Knowledge. Zero-Amnesia. 🧠
99
10-
Synapse Layer solves the fundamental problem of **agent amnesia** — AI agents forget everything between sessions, waste tokens re-asking questions, and lose critical context when switching models.
10+
```python
11+
from synapse_layer import SynapseMemory
1112

12-
With Synapse Layer, your agents get:
13+
memory = SynapseMemory(agent_id="my-agent")
1314

14-
- **Persistent memory** that survives across sessions
15-
- **Built-in security** — PII/secrets redacted before storage
16-
- **Autonomous detection** — milestones, decisions, and alerts saved automatically
17-
- **Cross-model transfer** — context moves between GPT-4, Claude, and others via Neural Handover™
18-
- **Deterministic recall** — every result is explainable, ranked by Trust Quotient™
15+
# 1. Agents save context automatically
16+
memory.save("User prefers absolute security and neural handover.")
17+
18+
# 2. Recall is deterministic and explainable
19+
info = memory.recall("user focus")
20+
# Result: "User prefers absolute security and neural handover."
21+
```
22+
23+
That's the entire API. **Encryption, PII redaction, differential privacy, intent validation, and trust scoring** — all happen under the hood. No configuration. No boilerplate. No amnesia.
24+
25+
Synapse Layer solves the fundamental problem of **agent amnesia** — AI agents forget everything between sessions, waste tokens re-asking questions, and lose critical context when switching models.
1926

2027
<CardGroup cols={2}>
21-
<Card title="Quick Start" icon="rocket" href="/docs/quickstart">
28+
<Card title="Quick Start" icon="rocket" href="https://docs.synapselayer.org/docs/quickstart">
2229
Install via Smithery, PyPI, or direct MCP connection in under 60 seconds.
2330
</Card>
24-
<Card title="Architecture" icon="brain" href="/docs/architecture">
31+
<Card title="Architecture" icon="brain" href="https://docs.synapselayer.org/docs/architecture">
2532
Understand the TQ Intelligence pipeline and how memory flows through the system.
2633
</Card>
27-
<Card title="Security" icon="shield-halved" href="/docs/security">
34+
<Card title="Security" icon="shield-halved" href="https://docs.synapselayer.org/docs/security">
2835
Zero-Leak Policy: 15+ patterns protect PII and secrets before any I/O.
2936
</Card>
30-
<Card title="MCP Server" icon="plug" href="/docs/mcp-server">
37+
<Card title="MCP Server" icon="plug" href="https://docs.synapselayer.org/docs/mcp-server">
3138
4 tools ready for Claude Desktop, LangChain, CrewAI, and custom agents.
3239
</Card>
3340
</CardGroup>
@@ -46,28 +53,6 @@ Synapse Layer is different:
4653
| Black-box recall ranking | Trust Quotient™ — deterministic, explainable scoring |
4754
| Manual tagging required | Auto-Save Engine detects what matters autonomously |
4855

49-
## The A-ha Moment
50-
51-
```python
52-
from synapse_layer import SynapseMemory
53-
import asyncio
54-
55-
async def main():
56-
mem = SynapseMemory(agent_id="my-agent")
57-
58-
# Store — PII redacted, encrypted, privacy-noised automatically
59-
await mem.store("User prefers dark mode", confidence=0.95)
60-
61-
# Recall — ranked by Trust Quotient™, self-healing on conflicts
62-
results = await mem.recall("user preferences")
63-
for r in results:
64-
print(f"{r.content} (TQ: {r.trust_quotient:.3f})")
65-
66-
asyncio.run(main())
67-
```
68-
69-
That’s it. Encryption, sanitization, differential privacy, intent validation, and trust scoring — all happen under the hood.
70-
7156
<Note>
7257
Synapse Layer follows an **open-core model**. The SDK, MCP server, and security pipeline are fully open source (Apache 2.0). Advanced scoring and intelligence are available via the PRO tier.
73-
</Note>
58+
</Note>

0 commit comments

Comments
 (0)