Open Source CLI

Scaffold any project.
In one command.

Tempora is a fast, language-agnostic CLI that bootstraps your project from a curated vault of community templates โ€” no setup, no guesswork.

npm install -g tempora-cli
tempora init
Get Started โ†’Browse Templates

Why Tempora?

โšก

Instant

Registry is bundled with the CLI. No API calls, no waiting โ€” pick and scaffold in seconds.

๐ŸŒ

Language agnostic

TypeScript, Python, Go and more. One tool, every stack.

๐ŸŽฏ

Focused

One-shot scaffolding. Pick a template, get a project, done.

๐Ÿ“ฆ

Tiny download

Only the template folder you pick is cloned via git sparse checkout.

๐Ÿ›ก๏ธ

Safe by default

Never overwrites files without asking. Non-empty directories trigger a confirmation.

๐Ÿ“–

Self-documenting

Docs are auto-synced from template READMEs on every build.

How it works

1

Install the CLI

Install Tempora globally via npm. Requires Node.js 18+ and git.

npm install -g tempora-cli
2

Pick a template

Run tempora init for guided mode or go direct if you know the template id.

tempora init next-tailwind my-app
3

Start building

Tempora prints exactly what to run next based on the template.

cd my-app && pnpm install && pnpm dev