← All skills
Tencent SkillHub Β· AI

NAS Agent Sync

Centralizes multi-agent file storage by routing all file operations through a designated File Master agent using SSH to a Synology NAS or any SSH-accessible...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Centralizes multi-agent file storage by routing all file operations through a designated File Master agent using SSH to a Synology NAS or any SSH-accessible...

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 18 sections Open source page

NAS Agent Sync β€” Synology File Storage for OpenClaw Agents

Centralize file storage across your multi-agent team using a Synology NAS (or any SSH-accessible storage). One agent acts as File Master β€” all others route file requests through it.

The Problem

Multi-agent setups generate files across multiple workspaces. Without centralized storage: Files get lost between agent sessions No backup strategy Agents duplicate work No single source of truth

The Solution

Designate one agent as File Master. All file operations go through this agent via sessions_send. The File Master manages: SSH connection to NAS Folder structure per agent File storage and retrieval Cross-agent file sharing

Architecture

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” sessions_send β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” SSH β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ Agent A β”‚ ──────────────────► β”‚ FILE MASTER β”‚ ──────────► β”‚ NAS β”‚ β”‚ (Finance)β”‚ "store invoice.pdf" β”‚ (Tech Lead) β”‚ β”‚ β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚ β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” sessions_send β”‚ SSH β”‚ Agent B β”‚ ──────────────────► β”‚ β”‚ (Sales) β”‚ "get sales report" β–Ό β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ _agents/ β”‚ β”‚ β”œβ”€β”€ agent-a/ β”‚ β”‚ β”œβ”€β”€ agent-b/ β”‚ β”‚ β”œβ”€β”€ agent-c/ β”‚ β”‚ └── _shared/ β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

1. NAS Prerequisites

Synology NAS (any model) or any Linux server with SSH SSH access with key-based auth VPN or Tailnet (recommended) for secure remote access

2. Create Folder Structure

SSH_HOST="user@your-nas-ip" # Create agent folders (customize agent names to match your team) ssh $SSH_HOST "mkdir -p ~/_agents/{coordinator,techops,finance,sales,marketing}" # Create shared folders ssh $SSH_HOST "mkdir -p ~/_shared/{config,templates}" # Create agent directory file ssh $SSH_HOST 'cat > ~/_shared/config/agent-directory.json << EOF { "agents": { "coordinator": { "role": "Coordinator", "path": "~/_agents/coordinator/" }, "techops": { "role": "File Master", "path": "~/_agents/techops/" }, "finance": { "role": "Finance", "path": "~/_agents/finance/" } }, "shared": "~/_shared/", "basePath": "~/" } EOF'

3. Configure File Master Agent

Add to your File Master agent's AGENTS.md: ## FILE MASTER β€” Incoming Requests When another agent sends a file request via sessions_send: ### Store a file: ssh USER@NAS-IP "mkdir -p ~/_agents/[agent]/[subfolder]/" # Copy/create file there ### Retrieve a file: ssh USER@NAS-IP "cat ~/_agents/[agent]/[file]" # Send content back to requesting agent ### Confirm back: sessions_send(sessionKey="agent:[requester]:main", message="Done! File at [path]")

4. Configure Other Agents

Add to each agent's AGENTS.md: ## File Operations β†’ File Master I do NOT access files directly. ALL file ops go through the File Master: sessions_send(sessionKey="agent:techops:main", message="Store: [details]") sessions_send(sessionKey="agent:techops:main", message="Retrieve: [path]")

NAS Folder Structure (Recommended)

~/ β”œβ”€β”€ _agents/ β”‚ β”œβ”€β”€ coordinator/ # Coordinator files β”‚ β”‚ β”œβ”€β”€ journal/ # Daily journals β”‚ β”‚ └── tracking/ # Task tracking β”‚ β”œβ”€β”€ techops/ # Tech docs, scripts β”‚ β”‚ β”œβ”€β”€ scripts/ β”‚ β”‚ └── configs/ β”‚ β”œβ”€β”€ finance/ # Finance β”‚ β”‚ β”œβ”€β”€ invoices/ β”‚ β”‚ β”œβ”€β”€ contracts/ β”‚ β”‚ └── reports/ β”‚ β”œβ”€β”€ sales/ # Sales β”‚ β”‚ β”œβ”€β”€ leads/ β”‚ β”‚ └── proposals/ β”‚ └── [your-agent]/ # Per-agent storage β”œβ”€β”€ _shared/ β”‚ β”œβ”€β”€ config/ # Shared configs β”‚ β”‚ └── agent-directory.json β”‚ └── templates/ # Shared templates └── _backups/ └── memory/ # Memory file backups

SSH via VPN/Tailnet (Recommended)

# Connect via secure tunnel IP (e.g. WireGuard, ZeroTier, or similar) SSH_HOST="user@10.x.x.x" # Your VPN/Tailnet IP # Test connection ssh $SSH_HOST "echo 'NAS connected!'"

Security

βœ… SSH key-based auth (no passwords in configs) βœ… VPN/Tailnet for encrypted tunnel (no port forwarding needed) βœ… File Master pattern limits SSH access to one agent βœ… Other agents never get SSH credentials ❌ Never store SSH keys in agent SOUL.md or memory files

Why File Master Pattern?

Security: Only one agent has NAS credentials Consistency: Single point of truth for file locations Audit trail: All file ops logged through one agent Simplicity: Other agents don't need to know SSH commands

Daily Backup Cron (via OpenClaw)

Set up a cron job that backs up agent workspaces to NAS: // Cron job config { "schedule": { "kind": "cron", "expr": "0 3 * * *", "tz": "UTC" }, "payload": { "kind": "agentTurn", "message": "Backup all agent workspaces to NAS. For each agent: rsync workspace memory/ folder to NAS _agents/{agent}/memory-backup/. Report any failures." }, "sessionTarget": "isolated" }

Manual Backup Command

# Backup specific agent rsync -avz ~/.openclaw/workspace-finance/memory/ user@nas-ip:~/_agents/finance/memory-backup/ # Backup all agents (customize list to your team) for agent in coordinator techops finance sales marketing; do rsync -avz ~/.openclaw/workspace-$agent/memory/ user@nas-ip:~/_agents/$agent/memory-backup/ done

Troubleshooting

SSH connection refused: β†’ Check VPN/Tailnet status β€” is NAS online and connected? β†’ Verify SSH service running on NAS (Synology: DSM β†’ Control Panel β†’ Terminal & SNMP) Permission denied: β†’ SSH key not added: ssh-copy-id user@nas-ip β†’ NAS home folder not enabled (Synology: DSM β†’ User β†’ Advanced β†’ Enable home service) Slow transfers: β†’ Use direct VPN connection (not relayed) β†’ Consider compression: rsync -avz --compress

Compatible NAS Models

βœ… Synology (any model with DSM 7+) βœ… QNAP (QTS 5+) βœ… TrueNAS / FreeNAS βœ… Any Linux server with SSH access βœ… Raspberry Pi with external storage

v1.1.0

Removed all specific agent/setup references Generalized folder structure and examples Added backup strategy with cron

v1.0.0

Initial release

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc