From 622bd869f9d8c5a78eb5773f98ab0e01e82b107a Mon Sep 17 00:00:00 2001 From: kurihada Date: Fri, 12 Dec 2025 20:42:11 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=B7=BB=E5=8A=A0=E9=80=89=E6=8B=A9?= =?UTF-8?q?=E6=80=A7=E6=9E=84=E5=BB=BA=E8=A7=84=E5=88=99=E5=88=B0=20CLAUDE?= =?UTF-8?q?.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CLAUDE.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CLAUDE.md b/CLAUDE.md index 857d5b9..c359fd2 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -7,6 +7,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co - **No backward compatibility**: This is a new project. Do not add any backward-compatible code, deprecated APIs, migration shims, or legacy support. Remove old code entirely when refactoring instead of keeping it around "just in case". - **Git commits**: When asked to commit, only create the commit (no push). Commit messages must not contain any Claude-related information (no "Co-Authored-By", no "Generated with Claude", etc.). - **Documentation**: All documentation must be stored under `docs/`. When implementing features based on design documents, update the corresponding document after coding is complete to reflect the current implementation status. +- **Selective builds**: Do not run `pnpm build` to build all packages. Only build the packages you need. Use `pnpm --filter build` for selective building. The desktop (Tauri) build is especially slow, so avoid building it unless specifically working on desktop features. ## Project Overview