From obs-mgmt
Detect how OBS Studio is installed on a Linux system — native package (apt/dnf/pacman), Flatpak (com.obsproject.Studio), Snap, or AppImage — and return the install type, version, binary path, and config directory. Used by other obs-mgmt skills that need to know where OBS reads config and stores plugins.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin obs-mgmtThis skill uses the workspace's default tool permissions.
Returns a structured report so other skills can locate the config dir and plugin dir correctly. Each install type uses a different layout.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Returns a structured report so other skills can locate the config dir and plugin dir correctly. Each install type uses a different layout.
Check in this order and stop at the first match. A user can technically have more than one — if so, report all and ask which one to operate on.
flatpak info com.obsproject.Studio 2>/dev/null
If present:
flatpak run com.obsproject.Studio~/.var/app/com.obsproject.Studio/config/obs-studio/~/.var/app/com.obsproject.Studio/config/obs-studio/plugins/flatpak override --filesystem=....snap list obs-studio 2>/dev/null
If present:
/snap/bin/obs-studio (or just obs)~/snap/obs-studio/current/.config/obs-studio/command -v obs && obs --version 2>&1 | head -1
Detect package manager backing it:
# Debian/Ubuntu
dpkg -S "$(command -v obs)" 2>/dev/null
# Fedora/RHEL
rpm -qf "$(command -v obs)" 2>/dev/null
# Arch
pacman -Qo "$(command -v obs)" 2>/dev/null
If present:
/usr/bin/obs~/.config/obs-studio/~/.config/obs-studio/plugins/ (per-user) and /usr/lib/x86_64-linux-gnu/obs-plugins/ or /usr/lib64/obs-plugins/ (system).Look for OBS AppImages in common locations:
find ~/Applications ~/AppImages ~/Downloads -maxdepth 2 -iname '*obs*.AppImage' 2>/dev/null
Treat as native for config purposes (~/.config/obs-studio/) but flag that plugins must match the AppImage's bundled OBS version.
If none of the above match, report missing and suggest distro-appropriate install:
sudo apt install obs-studiosudo dnf install obs-studiosudo pacman -S obs-studioReturn a summary like:
OBS install detected:
Type: native (apt)
Version: 30.2.3
Binary: /usr/bin/obs
Config dir: /home/<user>/.config/obs-studio/
Plugin dir: /home/<user>/.config/obs-studio/plugins/
Other skills (backup-config, install-plugin) consume these paths.