Scaffold a Better Fullstack Project
Use the Better Fullstack MCP server as the source of truth. Do not hand-write package files, framework folders, auth wiring, database wiring, or generated project structure.
Workflow
- Resolve intent. If major choices are unclear, ask briefly or pick conservative defaults and state them.
- Call
bfs_get_guidance. - Call
bfs_get_schemafor the current allowed values. Do not rely on a stale option list. - Build a full explicit config. Use
"none", empty arrays, and booleans rather than omitting important fields. - Call
bfs_check_compatibility. - Call
bfs_plan_project. Review the dry-run output and compatibility adjustments. - Call
bfs_create_projectonly after the plan matches the user request. - Report the selected stack, project directory, and exact install/test/dev commands.
Rules
- Set
install: falsefor agent scaffolding unless the user explicitly asks to install dependencies. - Use
packageManager: "bun"when the user or current repo expects Bun. - Use
aiDocs: ["agents-md"]for reusable projects andaiDocs: ["none"]for benchmarks or throwaway scaffolds. - Prefer stack graph parts for explicit multi-ecosystem stacks, but use MCP schema fields when they communicate the request more clearly.
- Treat compatibility adjustments as user-visible decisions.
- Do not start a dev server.
Common Stack Hints
- React + Vite:
frontend: ["react-vite"] - Next.js fullstack:
frontend: ["next"],backend: "self" - Hono API:
backend: "hono",runtime: "bun"or"node" - SQLite + Drizzle:
database: "sqlite",orm: "drizzle" - Python API:
ecosystem: "python", then choosepythonWebFrameworkand related Python fields - Rust API:
ecosystem: "rust", then chooserustWebFrameworkand related Rust fields
CLI-only fallback
If the Better Fullstack MCP tools are unavailable, inspect the current flags with
npx -y create-better-fullstack@latest create --help, then run the explicit scaffold command with
--dry-run --no-install --no-git. Review that preview before rerunning without --dry-run. Do not
guess option names or hand-write the scaffold.
Final Response
Say what command/tool path was used, what compatibility adjustments were made, where the project was
created, and what the next commands are. Never claim dependencies were installed when install: false was used.