Developer CLI toolkit — project scaffolding, code generation, and git workflow helpers.
- Scaffold projects from 3 built-in templates (Node/TS, React/Vite, CLI tool)
- Generate boilerplate — components, hooks, utilities, API routes
- Git helpers — stats overview and merged branch cleanup
npm install -g dev-cli-kit# List templates
dev-cli-kit init --list
# Create a Node.js + TypeScript project
dev-cli-kit init --template node-ts --name my-lib
# Create a React + Vite app
dev-cli-kit init --template react-vite --name my-app
# Create a CLI tool
dev-cli-kit init --template cli-tool --name my-cli# React component
dev-cli-kit generate component UserProfile
# React hook
dev-cli-kit generate hook useAuth
# Utility file
dev-cli-kit generate util formatDate
# Next.js API route
dev-cli-kit generate api users# Repository stats (branch, changed files, recent commits)
dev-cli-kit git stats
# List merged branches ready for cleanup
dev-cli-kit git clean| Template | Description |
|---|---|
node-ts |
Node.js library with TypeScript, Vitest, tsx |
react-vite |
React SPA with Vite, TypeScript |
cli-tool |
CLI tool with Commander, Chalk |
- Node.js >= 18
- Git (for
gitcommands)
MIT
Built with Commander, Chalk, and Ora.
| Project | Description |
|---|---|
| ai-agent-starter | Multi-provider AI agent framework |
| nextjs-saas-starter | Next.js 14 SaaS starter |
| ai-chat-saas | AI chat app template ($19) |