Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By tiktzuki
Scaffold new projects from curated boilerplate templates using the vibe-generate CLI
npx claudepluginhub tiktzuki/project-templates --plugin vibe-generateRun Codex CLI, Claude Code, OpenCode, or Pi Coding Agent via background process for programmatic control.
Sync Docusaurus markdown docs to Confluence, Google Docs, or Notion using docflu CLI. Use when syncing documentation, setting up docflu config, converting diagrams (Mermaid/PlantUML/D2/Graphviz) for Confluence, or managing doc sync workflows. Triggers on 'sync docs', 'push to confluence', 'docflu', 'confluence sync', or when .env contains CONFLUENCE_BASE_URL/DOCFLU_ variables.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.
Scaffold a new project from a template using vibe-generate. Use when the user wants to create a new project.
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Scaffold new projects and add features with best-practice templates
Claude Code plugin that uses skill architecture to intercept vague prompts, ask clarifying questions, and return structured framework-aware prompts that has credit saving patterns built in.
Universal templating and Harness expert plugin for Claude Code - enables fully autonomous project generation, pipeline creation, and deployment automation through a unified template interface. Supports Handlebars, Cookiecutter, Copier, Maven archetypes, and Harness pipelines. 5 commands, 6 agents, 3 skills.
Complete fullstack development toolkit: React, Express/FastAPI, PostgreSQL scaffolding with AI agents
Engineering discipline layer for Claude Code — 5 workflows, 69 commands, 21 rules, 29 skills, 9 agents organized in 12 packs
Full-cycle project development - brainstorm ideas, create specifications, plan architecture, initialize projects, and execute implementation with integrated workflows from superpowers and spec-kit
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.