2026-03-11 16:44:55 +07:00
|
|
|
# Task Completion Checklist
|
|
|
|
|
|
|
|
|
|
Given current project setup:
|
|
|
|
|
|
|
|
|
|
1. Run relevant build verification:
|
|
|
|
|
- `pnpm run build`
|
|
|
|
|
2. If runtime behavior changed, also sanity check with:
|
|
|
|
|
- `pnpm run dev` (manual smoke test)
|
|
|
|
|
- optionally `pnpm run preview` for production-like validation
|
|
|
|
|
3. Since lint/format/test scripts are not configured, mention this explicitly in handoff.
|
|
|
|
|
4. Ensure code follows `AGENTS.md` conventions:
|
|
|
|
|
- semicolons, single quotes, import order, Svelte 5 rune patterns, naming.
|
|
|
|
|
5. For API/auth/localStorage changes:
|
|
|
|
|
- verify browser-only access guards (`browser`) and auth redirect behavior are preserved.
|
|
|
|
|
6. In final handoff, include changed file paths and any manual verification steps performed.
|