Synapse — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Synapse (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Synapse is a lightweight memory engine designed to give agents and LLMs a permanent "brain." It solves the "goldfish memory" problem by storing important facts, decisions, and preferences in an organized way, retrieving only what is relevant to the current conversation.
Instead of stuffing your entire chat history into a prompt, Synapse uses a smart search system to find exactly what matters. This keeps your context window clean and your token costs low.
Synapse is designed to be flexible and works in two main ways:
# Clone the repository
git clone https://github.com/your-username/synapse.git
cd synapse
# Create and activate virtual environment
python3 -m venv venv
source venv/bin/activate
# Install dependencies (only required for the MCP server)
pip install -r requirements.txtYou can manage your memory manually via the terminal:
# Initialize the database
python3 -m synapse init
# Add a memory
python3 -m synapse add --path "project/stack" --title "Database" --content "Using SQLite and RAM Index."
# Search
python3 -m synapse search --prompt "what database are we using?"To use Synapse with tools like Claude Desktop or Cursor, add it to your configuration file:
Example (`claude_desktop_config.json`):
{
"mcpServers": {
"synapse_memory": {
"command": "/absolute/path/to/venv/bin/python",
"args": ["-m", "synapse.mcp_server"],
"env": {
"PYTHONPATH": "/absolute/path/to/synapse_directory"
}
}
}
}Keep your memory engine healthy with built-in maintenance tools:
# Run Garbage Collector (clean up obsolete data)
python3 -m synapse gc
# Database and Index optimization
python3 -m synapse optimizepython3 -m unittest discover -s tests -p 'test_*.py'MIT. See LICENSE for details.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.