This skill automates backing up DJI camera footage from an SD card (or USB share) to a NAS archive folder.
Description
Use when the user asks to "copy DJI videos", "backup camera", or similar requests involving DJI footage and the NAS. It detects the source SD card, finds the next available destination folder (incrementing from DJI_001, DJI_002...), and copies the files.
1---2name: dji-backup3description: SKILL: DJI Video Backup4---5# SKILL: DJI Video Backup67This skill automates backing up DJI camera footage from an SD card (or USB share) to a NAS archive folder.89## Description10Use when the user asks to "copy DJI videos", "backup camera", or similar requests involving DJI footage and the NAS. It detects the source SD card, finds the next available destination folder (incrementing from DJI_001, DJI_002...), and copies the files.1112## Usage131. **Check Source**: Verify `/Volumes/SD_Card/DCIM` (or similar) exists.142. **Check Destination**: Look at `/Volumes/File/DJI_Video/` to find the highest numbered folder (e.g., `DJI_005`).153. **Create New Folder**: Create the next number (e.g., `DJI_006`).164. **Copy**: Copy the contents of the source `DCIM` subfolder (e.g., `100MEDIA` or `DJI_001`) into the new destination folder.175. **Notify**: Tell the user when started and when finished.1819## Paths20- **Source**: `/Volumes/SD_Card/DCIM` (Look for subfolders like `DJI_xxx` or `100MEDIA`)21- **Destination**: `/Volumes/File/DJI_Video`2223## Example Logic24```bash25# Find next folder index26last_dir=$(ls -d /Volumes/File/DJI_Video/DJI_* | sort | tail -1)27# extract number, add 1, mkdir new_dir28# cp -R /source/* /new_dir/29```
Run npx skillmds@latest add javimosch/dji-backup in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
SKILL: DJI Video Backup It is listed under Coding & Dev Tools on SkillMD.
This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
javimosch (@javimosch) published this skill. Their other Agent Skills are listed on their SkillMD profile.