npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

re-walkthrough-pro

v0.1.0

Published

Claude Code skill that turns a Zillow listing into a cinematic, room-by-room property walkthrough video — Apify scrapes the photos, Higgsfield animates each room, ffmpeg stitches the final cut. Built to sell to real estate agents.

Readme

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

Option 1 — npx (recommended)

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.


Related projects

  • 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.