From 2663fe7f7b7eb438dc295fe9dea221aa8b8b8f81 Mon Sep 17 00:00:00 2001 From: Adam Malczewski Date: Sun, 7 Jun 2026 14:07:12 +0900 Subject: docs(harness): add frontend-styling rule + parallel-build verify caveat - add .dispatch/rules/frontend-styling.md (DaisyUI v5 + dracula; thin components) - package-agent: verify section explains whole-project svelte-check under parallel builds (judge only YOUR files) --- .dispatch/rules/frontend-styling.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .dispatch/rules/frontend-styling.md (limited to '.dispatch/rules') diff --git a/.dispatch/rules/frontend-styling.md b/.dispatch/rules/frontend-styling.md new file mode 100644 index 0000000..e123619 --- /dev/null +++ b/.dispatch/rules/frontend-styling.md @@ -0,0 +1,12 @@ +# Rule: styling is DaisyUI v5 + the dracula theme (UI units only) + +The global stylesheet already enables **DaisyUI v5** with the **dracula** theme +(`data-theme` on ``). Do NOT add or change theme config, re-import Tailwind/DaisyUI, +or hand-roll a design system — just apply DaisyUI / Tailwind utility classes in your +`.svelte` files (e.g. `select`, `textarea`, `btn btn-primary`, `tabs`, `chat chat-start` / +`chat-end` + `chat-bubble`). + +Keep components THIN: a `.svelte` file wires props/events to pure logic and applies classes +— it holds NO business logic (that stays in `logic/` / the reducer). Render plain semantic +HTML decorated with classes. biome lints `.ts`/`.js` only; `.svelte` correctness is +`svelte-check`'s job. -- cgit v1.2.3