What problem does it solve?
Teams building quick fullstack demos on CloudBase often over-engineer with cloud functions and middleware when a simple web app talking directly to the database would suffice, wasting setup time and adding unnecessary complexity.
Core Features & Use Cases
- BaaS-first data path: Uses @cloudbase/js-sdk in the browser for CRUD against NoSQL (app.database) or PostgreSQL (app.rdb), with schema and permissions managed through MCP tools.
- Cloud function guardrails: Forbids cloud functions by default for Todo, Notes, Kanban, and message board demos, allowing them only for server secrets, scheduled jobs, or logic that security rules cannot express.
- Preview-first workflow: Warms the React or Vue template, locks one database plane, wires list-plus-create CRUD, and delivers a local preview before any deploy step.
- Use Case: A user asks for a minimal message board with cloud database support; the skill scaffolds the template, creates the collection via MCP, signs in anonymously, and ships a working preview with zero cloud functions.
Quick Start
Ask the AI to build a minimal CloudBase web demo such as a Todo app with database CRUD and a local preview, without any cloud functions.