From e6a027009339655d002a0b949f6192a47f5a8e77 Mon Sep 17 00:00:00 2001 From: Mao Nakamoto <41178744+maonakamoto@users.noreply.github.com> Date: Tue, 4 Aug 2026 16:27:50 +0200 Subject: [PATCH] chore: make `npm run verify` work from the repo root MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The deployed app is app/ (apps.conf app_dir), and it already had a verify script — but an agent or a human standing at the repo root got "missing script: verify" and had no single command meaning "verified". The autopilot's definition_of_done points at `npm run verify` fleet-wide, so the root has to answer it. Delegates rather than duplicates: app/ stays the one place the checks are defined. Co-Authored-By: Claude Opus 5 --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 710aeaa..adb2131 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,8 @@ "dev": "next dev", "build": "next build", "start": "next start", - "lint": "eslint" + "lint": "eslint", + "verify": "cd app && npm run verify" }, "dependencies": { "@base-ui/react": "^1.3.0",