Install
openclaw skills install reddit-quote-topazCreate an Instagram carousel from a popular-picks list with Reddit quotes + Topaz 2x upscaling. Cover = "clean" style ("Top CATEGORY in Destination"), attrac...
openclaw skills install reddit-quote-topazSame as reddit-quote-carousel but adds Topaz Labs 2x AI upscale after photo finding, before text overlays.
Bernard says "reddit-quote-topaz" → use this skill.
Bernard says "reddit-quote" → use reddit-quote-carousel (no Topaz).
Working directory: /tmp/ig-reddit-quote/
Fetch the popular-picks page via web_fetch to get:
Find photos using instagram-photo-find workflow:
web_search → download candidates → vision-score → keep bestTopaz 2x Enhance each best photo:
TOPAZ_API_KEY=$(security find-generic-password -s "topaz-api-key" -w)
curl --request POST \
--url https://api.topazlabs.com/image/v1/enhance \
--header "X-API-Key: ${TOPAZ_API_KEY}" \
--header 'accept: image/jpeg' \
--header 'content-type: multipart/form-data' \
--form 'model=Low Resolution V2' \
--form 'output_scale_factor=2' \
--form 'output_format=jpeg' \
--form "image=@/tmp/ig-reddit-quote/${slug}-best.jpg" \
--output "/tmp/ig-reddit-quote/${slug}-enhanced.jpg"
If sync returns JSON with process_id instead of image bytes, use async flow:
# Submit async
RESPONSE=$(curl -s --request POST \
--url https://api.topazlabs.com/image/v1/enhance/async \
--header "X-API-Key: ${TOPAZ_API_KEY}" \
--header 'content-type: multipart/form-data' \
--form 'model=Low Resolution V2' \
--form 'output_scale_factor=2' \
--form 'output_format=jpeg' \
--form "image=@/tmp/ig-reddit-quote/${slug}-best.jpg")
PROCESS_ID=$(echo "$RESPONSE" | jq -r '.process_id')
# Poll until Completed
while true; do
STATUS=$(curl -s --header "X-API-Key: ${TOPAZ_API_KEY}" \
"https://api.topazlabs.com/image/v1/status/${PROCESS_ID}" | jq -r '.status')
[ "$STATUS" = "Completed" ] && break
sleep 3
done
# Download
curl -s --header "X-API-Key: ${TOPAZ_API_KEY}" \
"https://api.topazlabs.com/image/v1/download/${PROCESS_ID}" \
--output "/tmp/ig-reddit-quote/${slug}-enhanced.jpg"
/tmp/ig-reddit-quote/manifest.json:{
"destination": "Barcelona",
"category": "Cheap Eats",
"reddit_post_count": 150,
"cover_photo": "/tmp/ig-reddit-quote/cover-enhanced.jpg",
"slides": [
{
"name": "Bar Cañete",
"quote": "Went here on a random Tuesday and had the best patatas bravas of my life.",
"subreddit": "r/barcelona",
"photo": "/tmp/ig-reddit-quote/bar-canete-enhanced.jpg",
"original": "/tmp/ig-reddit-quote/bar-canete-best.jpg",
"source_url": "instagram.com/p/XXX/",
"topaz_enhanced": true
}
]
}
Read manifest. Create overlays using instagram-photo-text-overlay skill on enhanced images.
Slide 1 (Cover) — clean style:
python3 /Users/psy/.openclaw/workspace/skills/instagram-photo-text-overlay/scripts/overlay.py \
--input /tmp/ig-reddit-quote/cover-enhanced.jpg \
--output /tmp/ig-reddit-quote/slide-1.jpg \
--title "Top {COUNT} {CATEGORY} in {DESTINATION}" \
--subtitle "Insider Takes from Reddit ({N}+ posts)" \
--style clean --watermark "tabiji.ai"
Slides 2+ — quote style, one per attraction:
python3 /Users/psy/.openclaw/workspace/skills/instagram-photo-text-overlay/scripts/overlay.py \
--input /tmp/ig-reddit-quote/{slug}-enhanced.jpg \
--output /tmp/ig-reddit-quote/slide-{N}.jpg \
--title "{ATTRACTION_NAME}" \
--quote "{REDDIT_QUOTE}" \
--author "{SUBREDDIT}" \
--style quote --watermark "tabiji.ai"
Output: slides at /tmp/ig-reddit-quote/slide-{1-N}.jpg
img/instagram/), git push, use raw GitHub URLsKeys from macOS Keychain:
instagram-access-token — Graph API tokeninstagram-account-id — IG user ID (17841449394591017)topaz-api-key — Topaz Labs API key (macOS Keychain){flag_emoji} Top {COUNT} {CATEGORY} in {DESTINATION}
Real recommendations from {N}+ Reddit posts 🧵
📍 Swipe for the spots + what Redditors actually said:
1. {Attraction 1}
2. {Attraction 2}
...
Full list with maps, prices & more Reddit recs 👉 {POPULAR_PICKS_URL}
💬 {PROVOCATIVE_QUESTION — e.g. "What's the most overrated restaurant you've been to abroad?" or "Would you trust a stranger's Reddit rec over a Michelin star?"}
#{destination} #{category_tag} #redditfinds #traveltips #foodietravel #localfavorites #tabiji
Low Resolution V2 — designed for web-sourced images (our exact use case)