Setup & Installation
Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:
Version History
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.
User asks: Store the invoice.pdf I just generated to the Finance agent's folder on NAS
- 1Finance agent calls sessions_send to File Master with store request and file content
- 2File Master receives the message and opens SSH connection to NAS
- 3File Master runs mkdir -p to ensure the target folder exists
- 4File Master writes the file to ~/_agents/finance/invoices/invoice.pdf
- 5File Master calls sessions_send back to Finance agent confirming the path
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.