delete-render-profile

Installation
SKILL.md

Delete Render Profile

Remove a profile from render-profiles.json. Confirms before deleting.

Procedure

DATA_DIR="${CLAUDE_USER_DATA:-${XDG_DATA_HOME:-$HOME/.local/share}/claude-plugins}/video-editing"
PROFILES_FILE="$DATA_DIR/render-profiles.json"
test -f "$PROFILES_FILE" || { echo "No profiles file."; exit 0; }
  1. If a name wasn't given, list profiles (use the same jq from list-render-profiles) and ask which to delete.
  2. Show the full profile JSON for the chosen name and ask for confirmation.
  3. Delete atomically:
jq --arg n "$NAME" 'del(.profiles[$n])' "$PROFILES_FILE" > "$PROFILES_FILE.tmp" && mv "$PROFILES_FILE.tmp" "$PROFILES_FILE"
Installs
4
GitHub Stars
4
First Seen
Jun 5, 2026
delete-render-profile — danielrosehill/claude-video-editor-plugin