#!/usr/bin/env bash set -euo pipefail # Entertainment plugin: gold spot price (XAU/USD) via goldprice.dev (no API key). # Headline price is USD per gram; the ounce quote is shown as reference. # POS_PLUGIN: gold # Contract: stdout is the message sent by 'pos entertainment send gold'. source "$(dirname "${BASH_SOURCE[0]}")/../lib/entertainment-plugin-lib.sh" 2>/dev/null \ || source "$(dirname "${BASH_SOURCE[0]}")/entertainment-plugin-lib.sh" 2>/dev/null \ || source "$(dirname "$0")/../lib/entertainment-plugin-lib.sh" 2>/dev/null \ || source "$(dirname "$0")/entertainment-plugin-lib.sh" case "${1:-}" in -h|--help) cat <