Auto-discovered marketplace from tiktzuki/project-templates
npx claudepluginhub tiktzuki/project-templatesScaffold new projects from curated boilerplate templates using the vibe-generate CLI
Stop setting up projects. Start building them.
A single binary that scaffolds production-ready projects from opinionated, best-practice templates — with built-in AI-assisted development support.
Install • Templates • Usage • Add Your Own • Claude Code Plugin
Every new project starts the same way: copy an old project, rip out the business logic, fix the config, update dependencies, wonder why the build is broken. Repeat.
vibe-generate fixes this. One command gives you a fully configured, production-grade project with:
CLAUDE.md files so AI coding assistants understand your stack conventions from the startvibe-generate --template nextjs --name my-app
# Done. Start coding.
| Template | Stack | What you get |
|---|---|---|
nextjs | Next.js 16 • tRPC v11 • Tailwind CSS 4 • Drizzle ORM | Full-stack TypeScript app with type-safe API layer, App Router, Turbopack, and Zod validation |
rust-1.9 | Rust 2024 • clap 4 • tracing • tokio • axum | Multi-crate workspace with centralized deps, workspace lints, and optional web/crypto/CLI features |
java-25 | Spring Boot 4.0 • Gradle 9.3 • Java 25 | Multi-module project with version catalog, Spotless formatting, and dynamic module discovery |
Each template is opinionated and battle-tested — not a minimal hello-world, but a real project structure you'd actually use in production.
Grab the latest binary from GitHub Releases:
# Apple Silicon (M1/M2/M3/M4)
curl -fsSL https://github.com/TikTzuki/project-templates/releases/latest/download/vibe-generate-aarch64-apple-darwin.tar.gz | tar xz
sudo mv vibe-generate /usr/local/bin/
# Intel
curl -fsSL https://github.com/TikTzuki/project-templates/releases/latest/download/vibe-generate-x86_64-apple-darwin.tar.gz | tar xz
sudo mv vibe-generate /usr/local/bin/
# x86_64
curl -fsSL https://github.com/TikTzuki/project-templates/releases/latest/download/vibe-generate-x86_64-unknown-linux-gnu.tar.gz | tar xz
sudo mv vibe-generate /usr/local/bin/
# aarch64
curl -fsSL https://github.com/TikTzuki/project-templates/releases/latest/download/vibe-generate-aarch64-unknown-linux-gnu.tar.gz | tar xz
sudo mv vibe-generate /usr/local/bin/
Download vibe-generate-x86_64-pc-windows-msvc.zip from
the releases page, extract it, and add the directory to
your PATH.
git clone https://github.com/TikTzuki/project-templates.git
cd project-templates
cargo install --path vibe-generate
Requires Rust 1.70+.
# Interactive — pick a template from a menu
vibe-generate --name my-project
# Direct — skip the menu
vibe-generate --template nextjs --name my-app
# Custom output directory
vibe-generate --template rust-1.9 --name my-cli --output-dir ~/projects
vibe-generate ships as a Claude Code plugin, so you can scaffold projects directly from your AI coding session:
/plugin marketplace add TikTzuki/project-templates
/plugin install vibe-generate@TikTzuki/project-templates
Then use the /new command:
/new nextjs my-app
/new rust-1.9 my-cli
/new java-25 my-service ~/projects
Every generated project includes a CLAUDE.md file tailored to its stack, so Claude Code immediately understands the
project conventions, architecture, and tooling.