Releases: ramonlimaramos/synapto
v0.4.0
what's changed
see CHANGELOG.md for details.
install / upgrade
pip install synapto==0.4.0or with auto-updates (recommended):
{ "command": "uvx", "args": ["--refresh", "synapto", "serve"] }v0.3.0 — Cross-agent handoffs
Cross-agent handoffs
Synapto 0.3.0 turns the project from a memory server into a shared handoff layer for AI coding agents.
You can now ask in natural language:
Codex, plan this feature and leave a handoff for Claude.
Claude, continue from Synapto handoff <memory-id>.
Under the hood, Synapto stores a structured project memory with handoff metadata, lets the receiving agent fetch the complete packet with get_memory, and keeps follow-ups linked through the same task_id.
What's new
- MCP prompts:
agent_handoffandhandoff_inbox. - Claude Code-compatible template tools:
agent_handoff_templateandhandoff_inbox_template. - Natural-language handoff workflow documented in README and docs.
- Two-stage retrieval flow:
recallfor candidates,get_memory/get_memoriesfor complete context. - Prompt/input guards for newline and backtick injection in handoff routing fields.
- Security dependency constraint for
python-multipart>=0.0.27.
Install / upgrade
pip install synapto==0.3.0Recommended for MCP clients that should auto-pick up new releases:
{ "command": "uvx", "args": ["--refresh", "synapto", "serve"] }Notes
The handoff inbox currently uses ranked recall candidates rather than deterministic metadata filtering. Agents verify metadata.kind, task_id, to_agent, and status after fetching the full memory. A deterministic JSONB inbox is a good next improvement.
See CHANGELOG.md for the full entry.
v0.2.1
what's changed
see CHANGELOG.md for details.
install / upgrade
pip install synapto==0.2.1or with auto-updates (recommended):
{ "command": "uvx", "args": ["--refresh", "synapto", "serve"] }v0.2.0
what's changed
see CHANGELOG.md for details.
install / upgrade
pip install synapto==0.2.0or with auto-updates (recommended):
{ "command": "uvx", "args": ["synapto", "serve"] }v0.1.0
what's changed
see CHANGELOG.md for details.
install / upgrade
pip install synapto==0.1.0or with auto-updates (recommended):
{ "command": "uvx", "args": ["synapto", "serve"] }