What problem does it solve? Deploying a Next.js static site involves multiple ordered steps—fetching GitHub and NPM data, generating RSS feeds, building, and creating sitemaps—and running them incorrectly (like the double-build caused by the yarn deploy hooks) wastes time and risks broken output. ## Core Features & Use Cases - Optimized Build Pipeline: Runs data synchronization and build in the correct order, avoiding the redundant double-build caused by prebuild/postbuild hooks. - Pre-Deployment Validation: Checks JSON data integrity, duplicate slugs, build success, and output size before deploying. - Error Handling & Rollback: Provides fallback to cached data when API syncs fail and documents a git-based rollback process. - Use Case: Before pushing a new blog post live, run the pipeline to sync project data, build the static export to dist/, verify RSS feeds and sitemaps, and deploy to GitHub Pages. ## Quick Start Ask the AI to run the full deployment pipeline for the website and verify the build output in the dist directory.