What problem does it solve? Setting up a new re-frame2 ClojureScript project requires correctly wiring deps.edn coordinates, shadow-cljs builds, the Reagent adapter, and an entry namespace — a version-sensitive process where small mistakes surface only as confusing compile errors. This Skill automates the entire bootstrap from an empty directory to a mounted, clickable counter app. ## Core Features & Use Cases - Thirteen-file canonical scaffold: Writes the exact project files the official generator template emits — deps.edn, shadow-cljs.edn, entry namespace with rf/init!, split events/subs/views, a starter test, and Story on the :dev alias. - Skill-executed build verification: Runs npm install, a terminating shadow-cljs compile, and starts the dev watch itself, then reports the actual served URL. - Two bootstrap routes: A manual file-writing route (default) and a generator route that runs clojure -Tnew create with the deps-new template, both landing on the same project. - Use Case: Ask to start a new re-frame2 app in an empty directory; the Skill writes all files, resolves the pre-publication framework coordinates via :local/root, compiles, serves at localhost:8280, and hands off once the counter mounts. ## Quick Start Ask the AI to scaffold a new re-frame2 project in this directory and serve the counter app.