From video-editing
Register a NAS (or any remote/mounted) location for video raw ingest and finished-render archive. Use when the user says "set up my NAS", "register my video archive", "configure NAS for video", or similar. Persists path(s) to nas.json so pull-from-nas and push-to-nas can find them.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin video-editingThis skill is limited to using the following tools:
Register the location(s) where raw footage lives and finished renders should be archived. Works for any rsync-reachable path: a locally-mounted NAS share, an SSHFS mount, or an `ssh` host alias (`user@host:/path`).
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
Register the location(s) where raw footage lives and finished renders should be archived. Works for any rsync-reachable path: a locally-mounted NAS share, an SSHFS mount, or an ssh host alias (user@host:/path).
DATA_DIR="${CLAUDE_USER_DATA:-${XDG_DATA_HOME:-$HOME/.local/share}/claude-plugins}/video-editing"
NAS_FILE="$DATA_DIR/nas.json"
mkdir -p "$DATA_DIR"
test -f "$NAS_FILE" && cat "$NAS_FILE"
If one exists, show the user the current config and ask whether to update or replace.
mount — locally-mounted path (NFS / SMB / SSHFS already mounted).ssh — remote host via rsync-over-ssh (e.g. daniel@nas.local:/volume1/video).pull-from-nas.push-to-nas. Can be the same root as raw or different.ssh and non-default.For mount transport:
test -d "<path>" && ls "<path>" >/dev/null 2>&1
If the directory doesn't exist or isn't readable, warn the user (they may need to mount it first) but allow saving anyway — they may be configuring ahead of time.
For ssh transport, do a non-interactive probe:
ssh -o BatchMode=yes -o ConnectTimeout=5 <host> "test -d '<path>' && echo OK"
Report the result. Don't block on failure.
Write nas.json:
{
"transport": "mount" | "ssh",
"raw": {
"path": "/absolute/or/remote:/path",
"host": "<only for ssh>",
"ssh_opts": "<optional, e.g. '-p 2222 -i ~/.ssh/nas_id'>"
},
"archive": {
"path": "/absolute/or/remote:/path",
"host": "<only for ssh>",
"ssh_opts": "<optional>"
},
"updated": "<ISO-8601>"
}
Either raw or archive may be omitted if the user only wants one side.
Echo the saved config. Mention next-step skills:
pull-from-nas — sync raw clips into the active project's raw/.push-to-nas — sync finished renders up to the archive.