Skip to content

Releases: ramonlimaramos/synapto

v0.4.0

14 Jun 19:20
a5f8368

Choose a tag to compare

what's changed

see CHANGELOG.md for details.

install / upgrade

pip install synapto==0.4.0

or with auto-updates (recommended):

{ "command": "uvx", "args": ["--refresh", "synapto", "serve"] }

v0.3.0 — Cross-agent handoffs

11 May 11:32

Choose a tag to compare

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_handoff and handoff_inbox.
  • Claude Code-compatible template tools: agent_handoff_template and handoff_inbox_template.
  • Natural-language handoff workflow documented in README and docs.
  • Two-stage retrieval flow: recall for candidates, get_memory / get_memories for 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.0

Recommended 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

06 May 14:47
ed33bd5

Choose a tag to compare

what's changed

see CHANGELOG.md for details.

install / upgrade

pip install synapto==0.2.1

or with auto-updates (recommended):

{ "command": "uvx", "args": ["--refresh", "synapto", "serve"] }

v0.2.0

22 Apr 19:29
79222e0

Choose a tag to compare

what's changed

see CHANGELOG.md for details.

install / upgrade

pip install synapto==0.2.0

or with auto-updates (recommended):

{ "command": "uvx", "args": ["synapto", "serve"] }

v0.1.0

13 Apr 14:22

Choose a tag to compare

what's changed

see CHANGELOG.md for details.

install / upgrade

pip install synapto==0.1.0

or with auto-updates (recommended):

{ "command": "uvx", "args": ["synapto", "serve"] }