shipany-quick-start
SKILL.md
ShipAny Quick Start (Project Bootstrap)
This skill is intentionally split into small reference modules. Load only the module(s) you need.
v1 edit scope (hard limit)
For the first pass, only modify the files listed in references/09-checklist.md.
- Do not change any other files (no routing, no components, no templates, no extra locale message files).
- Do not introduce login/auth/payment features unless explicitly requested.
Dev workflow (required)
- Before starting edits: run
pnpm install(once) to ensure dependencies are installed. - After finishing all edits: clear Next.js cache before validation, otherwise you may see stale assets (e.g. old
logo.png):- macOS/Linux:
rm -rf .next - Windows (PowerShell):
Remove-Item -Recurse -Force .next - Windows (cmd):
rmdir /s /q .next
- macOS/Linux:
- Then run
pnpm buildto validate the project (build + lint checks). If it fails, fix issues only within the v1 allowlist unless the user expands scope.