From video-editing
List the user's saved render profiles with their codec, resolution, and rate-control summary. Use when the user says "list my render profiles", "what presets do I have", "show me my render profiles", or similar.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin video-editingThis skill is limited to using the following tools:
Print the names and key settings of every saved render profile.
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.
Print the names and key settings of every saved render profile.
PROFILES_FILE="${CLAUDE_USER_DATA:-${XDG_DATA_HOME:-$HOME/.local/share}/claude-plugins}/video-editing/render-profiles.json"
test -f "$PROFILES_FILE" || { echo "No render profiles saved yet. Run create-render-profile."; exit 0; }
jq -r '
.profiles
| to_entries[]
| "\(.key)\t\(.value.codec)/\(.value.encoder)\t\(.value.resolution)\t\(.value.rate_control.mode)=\(.value.rate_control.value)\t\(.value.container)"
' "$PROFILES_FILE" | column -t -s $'\t' -N "NAME,CODEC,RES,RATE,CONT"
If the user wants more detail on one profile, jq '.profiles["<name>"]' "$PROFILES_FILE".