From c0e9a4c77713fd80e077cea4baa7d93627743669 Mon Sep 17 00:00:00 2001 From: "anthropic-code-agent[bot]" <242468646+Claude@users.noreply.github.com> Date: Thu, 23 Apr 2026 03:28:13 +0000 Subject: [PATCH 1/3] Initial plan From 1cbd33d65e18355d89299d3a0c2d50d6a4247589 Mon Sep 17 00:00:00 2001 From: "anthropic-code-agent[bot]" <242468646+Claude@users.noreply.github.com> Date: Thu, 23 Apr 2026 03:29:44 +0000 Subject: [PATCH 2/3] Initial plan for code improvements Agent-Logs-Url: https://github.com/voidzero-dev/vibe-dashboard/sessions/6b259e85-dfc4-4b2d-bb7b-85444a6ff126 Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com> --- CLAUDE.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/CLAUDE.md b/CLAUDE.md index e6a9994..a047c63 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -109,12 +109,24 @@ These commands map to their corresponding tools. For example, `vp dev --port 300 - **Using the package manager directly:** Do not use pnpm, npm, or Yarn directly. Vite+ can handle all package manager operations. - **Always use Vite commands to run tools:** Don't attempt to run `vp vitest` or `vp oxlint`. They do not exist. Use `vp test` and `vp lint` instead. -- **Running scripts:** Vite+ commands take precedence over `package.json` scripts. If there is a `test` script defined in `scripts` that conflicts with the built-in `vp test` command, run it using `vp run test`. +- **Running scripts:** Vite+ built-in commands (`vp dev`, `vp build`, `vp test`, etc.) always run the Vite+ built-in tool, not any `package.json` script of the same name. To run a custom script that shares a name with a built-in command, use `vp run