- A personal budget tracker
- A dashboard for weekly sales
- A support ticket review tool
- A customer portal
- A form for collecting structured input
- A webhook receiver
- A custom skill the AI can call in a thread
Creating an app
Two ways:- Ask the AI - describe what you want in a thread and the AI builds it
- New app button - click + in the Drive sidebar and choose New app
Landing pages are UI-only apps: no backend, no database. Describe the page and the AI builds it, publishes it, and gives you a live URL.
The build cycle
- The AI writes code directly on
main - The AI starts the dev server. You see a live preview.
- You iterate by chat: “move the chart to the sidebar”, “add a dark theme”
- The dev server hot-reloads after each edit
- When ready, publish
One app, one branch
Each app is a single git checkout onmain. There are no separate drafts, no branch switching, no merge step. Every edit lands on main as a commit; publishing is just “deploy the current main”.
What an app can include
- UI - pages, dashboards, forms, and tools people use
- Process - backend services, APIs, scheduled jobs, and webhooks
- Skill - a tool the AI can call from a thread
- Database - created when the app needs persistent data
- Secrets - credentials and API keys stored in Vault
Apps live in the same window
Apps sit next to your browser, files, code, terminals, and AI threads. You can use them, edit them, inspect their code, and publish them without leaving Kazzle.Next steps
- Your first app - the whole loop, start to finish
- App patterns - pick the smallest shape that matches the job
- Publish your app - take the current version live