ship-create 1.7.1 → 1.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -44,7 +44,7 @@ Rules for the diagram:
|
|
|
44
44
|
- Keep node labels short (3–5 words max)
|
|
45
45
|
|
|
46
46
|
### Step 3 — Build prototype
|
|
47
|
-
|
|
47
|
+
Generate a fresh theme from scratch based on the product type — **never reuse the default colors already in `app/globals.css`**. Overwrite the entire `:root` and `.dark` blocks with new values derived from `theme-guide.md` and the product context. Apply to `app/globals.css` and `app/layout.tsx`. Replace `app/page.tsx` with the real home screen based on `HUMAN_FLOW.md`. Build the first 1–2 screens that matter most for this product type. Record the theme choice in `docs/DESIGN_SYSTEM.md`.
|
|
48
48
|
|
|
49
49
|
### Step 4 — Run
|
|
50
50
|
Run `npm run dev` (or `pnpm dev` if pnpm is available). Confirm the app compiles and is accessible at localhost:3000.
|
|
@@ -78,6 +78,7 @@ Run through `docs/QA_CHECKLIST.md` silently. Report only what's missing or broke
|
|
|
78
78
|
- **No task list, ever.** Build directly — tasks are invisible internal steps, not output.
|
|
79
79
|
- **No questions before the prototype exists.** The only interaction before Step 5 is code being written.
|
|
80
80
|
- **Theme is chosen by the agent, not the user** — pick the best fit from `theme-guide.md` and explain briefly after.
|
|
81
|
+
- **Never reuse starter kit colors.** Always overwrite `app/globals.css` `:root` and `.dark` completely. The default palette in the template is a placeholder — treat it as if it does not exist.
|
|
81
82
|
- **Run the app before showing results.** Never say "done" without confirming it compiles.
|
|
82
83
|
- **One question at a time.** Never give a list of options or ask multiple things at once.
|
|
83
84
|
|