Quick Start Guide
ShippedIntroduced in beta
Owner
@product
Last verified
2025-10-13
Sources of truth
- code: app/(chat)/chat/page.tsx
- test: tests/integration/chat.test.mjs
- test: tests/cli/weldr-cli-smoke.test.ts
Kick off a new Weldr workspace in under an hour. This walkthrough assumes you are using the hosted Free Cloud experience; self-hosting tips live in the installation appendix.
0. Get Access
app.weldr.dev
resolves to the same deployment as weldr.dev
. The separate host will roll out as we split the marketing and app surfaces.
1. Start a Conversation
I need a subscription analytics dashboard for B2B SaaS.
- Organizations own multiple products.
- Products stream usage events (MAU, API calls, seats).
- Finance wants monthly revenue rollups and churn flags.
2. Refine the Model Together
3. Choose Ownership Modes
@custom
block and checking ejected contracts for type compatibility.4. Preview, Test, and Iterate
5. Export to Code
When you are ready to merge into your own repository:
# Authenticate once in the hosted workspace (Settings → API Tokens)
weldr login
# Sync code locally
git clone git@github.com:your-org/your-app.git
yarn install # or pnpm install
weldr sync <chat-id> --out ./generated
# Inspect contracts & run tests
weldr contracts check
pnpm test
Commit the generated changes alongside your custom code. From here the app behaves like any other Next.js project.
Troubleshooting
weldr contracts check
to see which export drifted; update your ejected module or adjust the manifest.Ready for deeper configuration? Head to the installation guide for self-hosting instructions or explore progressive ownership for advanced manifest patterns.