push-to-nas
Installation
SKILL.md
Push To NAS
Sync a project's deliverables up to the registered NAS archive path. Pushes from exports/ by default (final outputs); renders/ is also an option for intermediates.
Procedure
1. Resolve config
DATA_DIR="${CLAUDE_USER_DATA:-${XDG_DATA_HOME:-$HOME/.local/share}/claude-plugins}/video-editing"
NAS_FILE="$DATA_DIR/nas.json"
INDEX_FILE="$DATA_DIR/index.json"
test -f "$NAS_FILE" || { echo "No NAS config — run setup-nas first."; exit 1; }
test -f "$INDEX_FILE" || { echo "No video index — run setup-index first."; exit 1; }