| name | scaffold |
| description | Copy platform-modules template and rebrand all files for the venture |
| agent | _builder |
| argument-hint | <venture-name> |
/scaffold — Copy & Rebrand Template
What It Does
- Copy
../platform-modules/ → ../<venture-name>/ (excluding node_modules, .git)
- Rebrand ALL identity files:
- Root
package.json — name, description
- Root
reineira.json — name, description, type: "venture"
packages/backend/package.json — name to @<venture-name>/backend
packages/app/package.json — name to @<venture-name>/app
CLAUDE.md — update title, description, venture name throughout
README.md — update title, description
- Update
packages/app/index.html — <title> tag with venture display name
- Update
packages/app/src/App.tsx — add defaultPreload: 'intent' to createRouter() config
(prevents screen flicker on tab navigation)
- Run
pnpm install in the new directory
How
rsync -a --exclude='node_modules' --exclude='.git' ../platform-modules/ ../<venture-name>/
Then use Edit tool to find-and-replace all branding references.
Acceptance Criteria