From video-editing
Open the user's registered video index — the base directory holding all video projects. Use when the user says "open my video index", "open my video workspace", "show me my video projects", or similar. Reads the path from index.json and opens a terminal there.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin video-editingThis skill is limited to using the following tools:
Open the registered video index in a terminal (or file manager fallback) and list the existing projects.
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.
Open the registered video index in a terminal (or file manager fallback) and list the existing projects.
INDEX_FILE="${CLAUDE_USER_DATA:-${XDG_DATA_HOME:-$HOME/.local/share}/claude-plugins}/video-editing/index.json"
test -f "$INDEX_FILE" || { echo "No video index registered. Run setup-index first."; exit 1; }
PATH_=$(jq -r .path "$INDEX_FILE" 2>/dev/null || grep -oP '"path":\s*"\K[^"]+' "$INDEX_FILE")
test -d "$PATH_" || { echo "Index path missing: $PATH_"; exit 1; }
if command -v konsole >/dev/null; then
konsole --workdir "$PATH_" &
elif command -v gnome-terminal >/dev/null; then
gnome-terminal --working-directory="$PATH_" &
elif command -v xdg-open >/dev/null; then
xdg-open "$PATH_" &
fi
echo "Index: $PATH_"
ls -la "$PATH_"
If the config is missing or stale, redirect the user to the setup-index skill.