claudeers.

🔓 unclaimed — this page was auto-generated from GitHub. Are you the creator?

Claim this page →
// MCP Servers

re-walkthrough-pro

Claude Code skill: turn a Zillow listing into a cinematic room-by-room walkthrough video (Apify → Higgsfield → ffmpeg). Built to sell to real estate agents.

// MCP Servers[ cli ][ api ][ claude ]#claude#mcp-serversMIT$open-sourceupdated 9 days ago
Actively maintained
98/100
last commit 10 days ago
last release none
releases 0
open issues 0
// install
{
  "mcpServers": {
    "re-walkthrough-pro": {
      "command": "npx",
      "args": ["-y", "https://github.com/charlesdove977/re-walkthrough-pro"]
    }
  }
}

RE Walkthrough Pro — cinematic Zillow-to-video property walkthroughs for Claude Code

RE Walkthrough Pro

Turn a Zillow listing into a cinematic, room-by-room walkthrough video — right inside Claude Code. Apify pulls the photos, Higgsfield animates each room, ffmpeg stitches the final cut. Built to sell to real estate agents.

RE Walkthrough Pro ships the re-walkthrough-pro skill: a single command that takes a Zillow listing (or finds you some), pulls every photo, animates each room into a short cinematic camera-move clip, and stitches them into one finished walkthrough video you can hand an agent.

A finished tour that looks like a $1,000–3,000 production, made from listing photos in minutes, for sub-cents of scraping plus a handful of Higgsfield credits.

Honest framing: This produces a cinematic walkthrough (per-room camera-move clips stitched together), not a true 3D / Matterport reconstruction. It looks premium, and it's impossible without an AI video engine — but don't promise a walkable dollhouse.


Why

Agents pay for media. The bottleneck is production time. RE Walkthrough Pro removes it: one command, listing in → sellable walkthrough out. Drop it into a real estate marketing service as a video line item, or batch tours across a whole farm area and pitch the listing agents.

The architecture is the unlock. Higgsfield video models work clip-by-clip (~5s image-to-video), so a whole-house walkthrough must be per-room clips stitched on your side. This skill does exactly that, with a camera move matched to each room type so the stitched result reads like walking through the home.


Install

npx re-walkthrough-pro install

Installs the skill to ~/.claude/skills/re-walkthrough-pro/. Refresh after a package upgrade:

npm view re-walkthrough-pro version       # check latest
npx re-walkthrough-pro@latest update      # refresh in place

Option 2 — Global install

npm install -g re-walkthrough-pro
re-walkthrough-pro install

Option 3 — Directly from GitHub

npx github:charlesdove977/re-walkthrough-pro install

Project-scoped install (per repo)

cd ~/path/to/project
npx re-walkthrough-pro install --project

Uninstall / where

npx re-walkthrough-pro uninstall
npx re-walkthrough-pro where            # ~/.claude/skills/re-walkthrough-pro

Restart Claude Code after installing, then run /re-walkthrough-pro.


What you need

Two MCP servers connected in Claude Code, plus ffmpeg:

  • Higgsfield MCP — required. Animates each room (Seedance 2.0 / Kling 3.0 image-to-video) and reframes for social. Every image + video model in one credit pool. (My affiliate link.)
  • Apify account — required for the listing scrape. The Zillow detail scraper pulls photos + address + specs in one call. (My referral link.) Grab the Apify MCP server (@apify/actors-mcp-server) and your token at console.apify.com.
  • ffmpeg — required for stitching (brew install ffmpeg).

How it works

1. RESOLVE   Zillow link → Apify detail scraper (photos + address + specs)
             "find 5 in NJ" → search actor → detail scraper (chained dataset)
2. PERSIST   write PROPERTY.md, download all photos to source-images/
3. CURATE    vision pass: best photo per room, drop floorplans/dupes, tag room type
4. ANIMATE   per room → Higgsfield image-to-video with a room-matched camera move
5. STITCH    ffmpeg concat in walkthrough order → 16:9 master (+ optional 9:16)
6. DELIVER   final video + per-room scenes + PROPERTY.md, in one folder

Two ways in

  • Single property: paste a Zillow listing URL (or an address).
  • Discovery: "find 5 single-family homes in Montclair NJ" → it searches, shows you the listings, you pick.

Room → camera move

Each room type gets a cinematic move (drone approach for the exterior, steadicam walkthrough for halls, orbit for great rooms, window-approach reveals for views, rising reveal for the backyard). The moves are model-agnostic — they apply to whatever Higgsfield video model you pick.


Output

listing-walkthroughs/<property-slug>/
├── PROPERTY.md          address · Zillow link · price · beds/baths/sqft · agent · shot list
├── source-images/       every photo pulled from Zillow
├── scenes/              per-room cinematic clips (room-01-exterior.mp4, room-02-living.mp4 …)
└── final/               walkthrough-16x9.mp4 (+ walkthrough-9x16.mp4 if requested)

What gets installed

~/.claude/skills/re-walkthrough-pro/
├── SKILL.md
├── tasks/
│   └── build-walkthrough.md          ← interview + 7-step pipeline
├── frameworks/
│   ├── apify-zillow-actors.md         ← the Zillow actor stack + how to call it
│   ├── higgsfield-camera-moves.md     ← room→camera-move mapping (self-sufficient)
│   └── stitch-pipeline.md             ← ffmpeg normalize/concat + 9:16 reframe
├── templates/
│   └── property-md.md
└── checklists/
    └── walkthrough-quality.md

Walkthroughs are written to your project (listing-walkthroughs/), never into the skill folder.


Optional: richer prompt craft

The built-in camera-move mapping is self-sufficient. If you also have the seedance-real-estate and seedance-cinematic skills installed (both ship inside UGC Factory), the skill invokes them for richer per-room motion prompts and a film-look color grade. Purely additive — nothing breaks without them.


FAQ

Is this true 3D? No. It's per-room cinematic camera-move clips stitched into a tour. Premium-looking, honest to describe as a "cinematic walkthrough," not a Matterport dollhouse.

Does it touch my repo when I install? No. Default install writes to ~/.claude/skills/re-walkthrough-pro/. Only --project writes into the current directory.

Does Zillow block scraping? Zillow blocks naive fetch/headless, which is exactly why the skill routes images through the Apify actor — the reliable source for both the link and discovery paths.

What does a run cost? The Apify scrape is sub-cent per property. The real cost is Higgsfield credits, scaled by room count — which is why the skill auto-curates to ~6–10 hero rooms by default.


  • Charlie OS — one-click Claude Code setup bundling BASE, CARL, PAUL, SEED, Skillsmith, and dozens of curated skills.
  • UGC Factory — AI UGC ad studio; bundles the 15 Seedance genre skills (including the two this skill optionally uses).
  • Advertising Ops — CMO-in-a-box media buyer for Claude Code.
  • Work with Charlie — done-for-you installs, custom skill builds, 1:1 Claude Code engineering.

License

MIT — see LICENSE. Built by Charles J Dove.

// compatibility

Platformscli, api
Operating systems
AI compatibilityclaude
LicenseMIT
Pricingopen-source
LanguageJavaScript

// faq

What is re-walkthrough-pro?

Claude Code skill: turn a Zillow listing into a cinematic room-by-room walkthrough video (Apify → Higgsfield → ffmpeg). Built to sell to real estate agents.. It is open-source on GitHub.

Is re-walkthrough-pro free to use?

re-walkthrough-pro is open-source under the MIT license, so it is free to use.

What category does re-walkthrough-pro belong to?

re-walkthrough-pro is listed under mcp-servers in the Claudeers registry of Claude-compatible tools.

0 views
58 stars
unclaimed
updated 9 days ago

// embed badge

re-walkthrough-pro on Claudeers
[![Claudeers](https://claudeers.com/api/badge/re-walkthrough-pro.svg)](https://claudeers.com/re-walkthrough-pro)

// retro hit counter

re-walkthrough-pro hit counter
[![Hits](https://claudeers.com/api/counter/re-walkthrough-pro.svg)](https://claudeers.com/re-walkthrough-pro)

// reviews

// guestbook

0/500

// related in MCP Servers

🔓

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete…

// mcp-serversf/HTML164,687NOASSERTION[ claude ]
🔓

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent. Only official website: ccswitch.io

// mcp-serversfarion1231/Rust112,854MIT[ claude ]
🔓

An open-source AI agent that brings the power of Gemini directly into your terminal.

// mcp-serversgoogle-gemini/TypeScript105,729Apache-2.0[ claude ]
🔓

A collection of MCP servers.

// mcp-serverspunkpeye/90,251MIT[ claude ]
→ see how re-walkthrough-pro connects across the ecosystem