Global Initiative · Open Source · AI-First

Where applications are
generated, not written

A developer toolkit for fast, modular, multi-platform apps — engineered for AI collaboration and scalable architecture from day one.

Start building → Read the manifesto

Three packages. One cohesive stack.

AppKit handles your backend. UIKit handles your frontend. Bloom CLI wires them together and scaffolds any platform in one command.

npm install -g @bloomneo/bloom

bloom create my-app                    # web app
bloom create my-app userapp            # auth + user management + admin
bloom create my-app desktop-basicapp   # Electron desktop
bloom create my-app mobile-basicapp    # iOS + Android via Capacitor

Drop a folder. Get a route.

No routing config. No manual registration. File-based auto-discovery on both frontend and backend.

src/api/features/invoice/
├── invoice.route.ts     # auto-mounts at /api/invoice
└── invoice.service.ts

src/web/features/invoice/pages/
├── index.tsx            # → /invoice
└── [id].tsx             # → /invoice/:id

Pick a template and go.

basicapp Web app React + Express, FBCA routing, ready to deploy
bloom create my-app
userapp Auth + users Full auth, roles, admin panel, Prisma + PostgreSQL
bloom create my-app userapp
desktop-basicapp Desktop Electron, FBCA, SQLite, packages to Windows / macOS / Linux
bloom create my-app desktop-basicapp
mobile-basicapp Mobile Capacitor 7 — native iOS + Android from one codebase
bloom create my-app mobile-basicapp

Built on four core values.

Simplicity

Clarity over complexity. Setup should take minutes, not days.

Autonomy

Use what you need. Nothing forces you to take everything.

AI Innovation

Every package ships llms.txt and AGENTS.md. We build so AI can build.

Progressive Scaling

Start with zero config. Add one env var and infra upgrades automatically.

Read the full founding manifesto →

Every package ships machine-readable docs.

LLMs hallucinate APIs for undocumented packages. Every Bloomneo package ships llms.txt and AGENTS.md inside the npm tarball — copied into your project's docs/ folder automatically on every npm install.

llms.txt

Complete API reference regenerated on every build. Every method, every signature — never drifts from source.

AGENTS.md

Rules for AI agents: always-do, never-do, canonical patterns. Avoid hallucinated method names on the first try.

Auto-synced docs/

Postinstall copies the latest docs from node_modules/ into your project on every install.