From Easy-Effects-Manager
List Easy Effects presets — what's loaded right now, what's in the live data dir (installed but not active), and what's in the user's library. Use to figure out what's available before loading, installing, or exporting.
How this skill is triggered — by the user, by Claude, or both
Slash command
/Easy-Effects-Manager:list-presetsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```bash
if command -v easyeffects >/dev/null 2>&1; then
EE_RUN="easyeffects"
EE_DATA="${XDG_CONFIG_HOME:-$HOME/.config}/easyeffects"
elif flatpak info com.github.wwmm.easyeffects >/dev/null 2>&1; then
EE_RUN="flatpak run com.github.wwmm.easyeffects"
EE_DATA="$HOME/.var/app/com.github.wwmm.easyeffects/data/easyeffects"
else
echo "Easy Effects not installed."
exit 1
fi
LIB="$(cc-uvar get EE_LIBRARY_PATH)" || {
echo "Library not configured. Run the setup-library skill first."
exit 1
}
$EE_RUN -s 2>/dev/null || $EE_RUN -a input; $EE_RUN -a output
(-s prints both last-loaded; -a input|output prints individually.
Some builds support one but not the other.)
echo "=== Installed input ==="
ls -1 "$EE_DATA/input/" 2>/dev/null
echo "=== Installed output ==="
ls -1 "$EE_DATA/output/" 2>/dev/null
echo "=== Installed autoload (input) ==="
ls -1 "$EE_DATA/autoload/input/" 2>/dev/null
echo "=== Installed autoload (output) ==="
ls -1 "$EE_DATA/autoload/output/" 2>/dev/null
echo "=== Library input ==="
ls -1 "$LIB/input/" 2>/dev/null
echo "=== Library output ==="
ls -1 "$LIB/output/" 2>/dev/null
echo "=== Library autoload ==="
ls -1 "$LIB/autoload/input/" "$LIB/autoload/output/" 2>/dev/null
Summarize as a table for the user: preset name, where it lives (installed / library / both), and which one is currently active.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin Easy-Effects-ManagerProvides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.