Build AI agents that actually do things. Synapse is an open-source platform for creating, connecting, and orchestrating AI agents powered by any LLM — local, cloud or CLIs.
# Add to your Claude Code skills
git clone https://github.com/synapseorch-ai/synapse-aiLast scanned: 5/30/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-30T15:57:16.197Z",
"npmAuditRan": true,
"pipAuditRan": true
}synapse-ai is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by synapseorch-ai. Build AI agents that actually do things. Synapse is an open-source platform for creating, connecting, and orchestrating AI agents powered by any LLM — local, cloud or CLIs. It has 313 GitHub stars.
Yes. synapse-ai passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/synapseorch-ai/synapse-ai" and add it to your Claude Code skills directory (see the Installation section above).
synapse-ai is primarily written in Python. It is open-source under synapseorch-ai on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh synapse-ai against similar tools.
No comments yet. Be the first to share your thoughts!
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
Build AI workflows that actually ship.
Wire agents, tools, and LLMs into deterministic pipelines — without the framework lock-in. Synapse is an open-source platform for creating, connecting, and orchestrating AI agents powered by any LLM — local or cloud. Agents use real tools: browsing the web, querying databases, executing code, reading files, managing emails, and anything else you can expose through an MCP server, a webhook, or a Python script.
macOS / Linux:
curl -sSL https://raw.githubusercontent.com/synapseorch-ai/synapse-ai/main/setup.sh | bash
Windows (PowerShell):
irm https://raw.githubusercontent.com/synapseorch-ai/synapse-ai/main/setup.ps1 | iex
npm install -g synapse-orch-ai
synapse
pip install synapse-orch-ai
synapse
docker run -d \
-p 3000:3000 \
-v synapse-data:/data \
-v /var/run/docker.sock:/var/run/docker.sock \
synapseorchai/synapse-ai:latest
Then open http://localhost:3000. See the Docker guide in the docs for custom ports and environment variable configuration.
Security: publish only the frontend port
3000— the backend (8765) serves an internal API and should not be exposed on0.0.0.0(docker-compose binds it to127.0.0.1). The container auto-generates a shared internal token so that surface is authenticated by default. For any network-reachable deployment, enable login (Settings → Security) and/or setallow_stdio_mcp=false, since registering a stdio MCP server launches local commands.
| Install method | Upgrade command |
|---|---|
| Bash / PowerShell installer (recommended) | synapse upgrade |
| pip | pip install --upgrade synapse-orch-ai |
| npm | npm update -g synapse-orch-ai |
| Docker | docker pull synapseorchai/synapse-ai:latest |
Upgrade note (security hardening): the backend now auto-generates a shared internal token and, under docker-compose, binds its port to
127.0.0.1by default. The UI and its API are unaffected (the frontend proxies the backend internally). If you previously called the backend directly on:8765(e.g. external API clients), either point them at the frontend instead —http://host:3000/api/v1|v2/...— or setSYNAPSE_BACKEND_BIND=0.0.0.0in.envto keep publishing:8765.
Run unlimited agents and orchestrations concurrently. When you need to go beyond a single process, the distributed scale layer handles the load:
Three Docker images — pull only what you need:
docker pull synapseorchai/synapse-ai:latest # full app (standalone mode)
docker pull synapseorchai/synapse-ai-api-server:latest # stateless API server (scale mode)
docker pull synapseorchai/synapse-ai-worker:latest # worker process (scale mode, run as many as needed)
The docker-compose.yml in the repo spins up the full stack. Production K8s manifests are in infra/k8s/.
https://github.com/user-attachments/assets/7a5ab42c-5fae-4f13-876c-13aa9b5a0366
Multi-agent pipeline that researches a topic, drafts content in a Google Doc, and returns the shared link. (Video is 2x speed)
https://github.com/user-attachments/assets/4eec5db8-70d0-47b6-8608-f52b1f7b7d68
Multi-agent system with human-in-the-loop that writes code and generates pull requests autonomously.
https://github.com/user-attachments/assets/95a511e1-e3e9-4812-b9ca-f7f4c28ef80f
Chat with the AI builder — describe what you want, and it creates the orchestration DAG for you.
https://github.com/user-attachments/assets/282cc99d-cdea-4ad0-b648-f22112c6e295
| Concept | Summary |
|---|---|
| Agents | Independent ReAct loops with their own system prompt, tools, model, and repos. Docs → |
| Orchestrations | DAGs of steps — wire agents together with routing, parallelism, loops, and human gates. Docs → |
| Tool Ecosystem | 10+ native tool servers, built-in MCP servers, remote MCP via OAuth/PAT, and custom HTTP/Python tools. Docs → |
| AI Builder | A meta-agent that designs and materializes orchestrations from natural language. Docs → |
| Schedules | Cron/interval automation with messaging notifications. Docs → |
| Messaging | Slack, Discord, Telegram, Teams, WhatsApp — with multi-agent mode. Docs → |
| Scale Mode | Distributed execution layer: Redis job queue, independent worker fleet, per-step Postgres checkpoints, S3 artifact storage, and multi-tenant quotas. Docs → |
| V2 API | Stable versioned REST API for building products on top of Synapse — enqueue, stream, cancel, webhooks. Docs → |
| Vault | Persistent file storage shared across agents and sessions. Docs → |
synapse start # start backend + frontend, open browser
synapse stop # stop background processes
synapse upgrade # upgrade to the latest version
synapse uninstall # remove Synapse, wipe ~/.synapse, and uninstall the package
[![Star History Chart](https://api.star-history.com/svg?repos=synapseorch-ai/synapse-ai&type