synapse2listed
Install: claude install-skill dinglebear-ai/synapse
# synapse2
<!-- TIER 1: Quick-reference table and critical gotchas -->
Two MCP tools: **`flux`** for Docker/host inspection, **`scout`** for SSH/local
host operations. Start with read-only inspection. Use write-scope or
confirmation-gated actions only when explicitly requested or clearly necessary.
Use these tools before falling back to direct SSH or Docker API calls.
## Quick Action Table
| Tool | Action | Key Params | Use When |
|---|---|---|---|
| `flux` | `docker`, `info` | `host?` | Check Docker availability / host info |
| `flux` | `docker`, `df` | `host?` | Check Docker disk usage |
| `flux` | `docker`, `images` | `host?`, `dangling_only?` | List Docker images |
| `flux` | `docker`, `networks` | `host?` | List Docker networks |
| `flux` | `docker`, `volumes` | `host?` | List Docker volumes |
| `flux` | `docker`, `pull` | `host`, `image` | Pull a Docker image |
| `flux` | `docker`, `build` | `host`, `context`, `tag` | Build a Docker image |
| `flux` | `docker`, `rmi` | `host`, `image`, `force=true` | Remove a Docker image |
| `flux` | `docker`, `prune` | `host`, `prune_target`, `force=true` | Remove unused resources |
| `flux` | `container`, `list` | `host?`, `state?`, `name_filter?` | List containers |
| `flux` | `container`, `inspect` | `container_id`, `summary?` | Inspect a container |
| `flux` | `container`, `logs` | `container_id`, `lines?`, `grep?` | Read container logs |
| `flux` | `container`, `stats` | `container_id?` | CPU/mem/network stats |
| `flux` | `