Automates DataHive sign-in using a magic link workflow: requests the link, retrieves it from Gmail via gog, and opens it in a Chrome DevTools tab.
Automates installation of DataHive node.
DataHive is a platform for high-quality AI training datasets and analytics use cases across domains such as e-commerce, reviews, audio, image, and video, with an emphasis on decentralized and passive data collection workflows. This skill is limited to dashboard authentication automation, specifically requesting a magic link, retrieving it, and opening the login tab, and does not cover dataset management.
Use this skill when the user says things like:
Always execute this skill in the exact sequence defined in strict order, exactly as written in this SKILL.md.
Do not skip, reorder, or parallelize steps unless the user explicitly asks to change the sequence.
Run:
./scripts/0_detect_platform.sh
Expected output:
ubuntu for Ubuntu hostsmacos for macOS hostsAny other value or non-zero exit means unsupported platform.
Run:
PLATFORM="$(./scripts/0_detect_platform.sh)" ./scripts/1_install_prerequisites.sh
Behavior by platform:
ubuntu: installs Chrome + xvfb via apt, applies managed extension policy, installs websocat.macos: installs Chrome via Homebrew cask (if missing), applies managed extension policy in /Library/Managed Preferences/com.google.Chrome.plist, installs websocat.Run:
PLATFORM="$(./scripts/0_detect_platform.sh)" ./scripts/2_launch_chrome_supervisor.sh
Behavior by platform:
ubuntu: launches google-chrome under xvfb-run.macos: launches /Applications/Google Chrome.app/Contents/MacOS/Google Chrome directly.Optional checks:
curl -sf http://localhost:9222/json/version
tail -f "$HOME/.chrome-datahive/chrome.log"
gog auth list --json
Use the default account email from output (example: peter@gmail.com).
Use the helper script with your gog email:
./scripts/4_request_magic_link.sh <EMAIL>
(or EMAIL=<EMAIL> ./scripts/4_request_magic_link.sh)
Expected response:
{"message":"If this email exists, a login link has been sent"}
gog gmail messages search 'from:datahive newer_than:7d' --max 10 --account <EMAIL>
Take the top/latest message ID and fetch it:
gog gmail get <MESSAGE_ID> --account <EMAIL> --json
Extract the URL from the HTML body:
https://dashboard.datahive.ai/auth?token=...
Run:
TARGET_URL='https://dashboard.datahive.ai/auth?token=<TOKEN>' ./scripts/6_open_magic_link.sh
ZIP package — ready to use