#!/usr/bin/env bash
# Read a specific Hey thread by ID
# Usage: hey-thread <posting_id>
set -euo pipefail
if [[ -z "${1:-}" ]]; then
    echo "Usage: hey-thread <posting_id>" >&2
    exit 1
fi
hey threads "$1" --json
