LaunchKit · 2026
Back to Skills

nas-agent-sync

Synology NAS integration for OpenClaw — centralized file storage for multi-agent teams via SSH.

0
503 downloads
by @neal-collab

Setup & Installation

openclaw skills install @neal-collab/nas-agent-sync

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install nas-agent-sync

Version History

v1.1.0Feb 14, 2026 - Version note by skill developer:

SECURITY FIX: Removed all specific agent names and setup details. Fully generalized examples.

What This Skill Does

Connects OpenClaw multi-agent setups to a Synology NAS or any SSH-accessible storage. One agent acts as File Master, handling all SSH operations while other agents route file requests through it. Keeps files persistent, backed up, and accessible across agent sessions.

The File Master pattern means only one agent holds SSH credentials, avoiding the security and coordination problems of giving every agent direct NAS access.

When to use it

  • Storing invoices and contracts generated by a Finance agent
  • Sharing sales proposals between Sales and Coordinator agents
  • Running nightly backups of all agent workspace memory folders
  • Retrieving config templates shared across an entire agent team
  • Centralizing logs and scripts produced by a TechOps agent

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Store the invoice.pdf I just generated to the Finance agent's folder on NAS

AGENT
  1. 1Finance agent calls sessions_send to File Master with store request and file content
  2. 2File Master receives the message and opens SSH connection to NAS
  3. 3File Master runs mkdir -p to ensure the target folder exists
  4. 4File Master writes the file to ~/_agents/finance/invoices/invoice.pdf
  5. 5File Master calls sessions_send back to Finance agent confirming the path
OUTPUT

File stored at ~/_agents/finance/invoices/invoice.pdf on NAS, confirmation sent to Finance agent

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

Synology NAS or Linux server with SSH access enabledSSH key pair configured for key-based authenticationVPN or Tailscale/ZeroTier account for secure remote access (recommended)