From 9282e459108876639e29b70472d3316d822d7425 Mon Sep 17 00:00:00 2001 From: Alejandro Date: Sat, 17 Jan 2026 21:39:35 +0100 Subject: [PATCH] feat: Add npm install step to verify skill (#127) Add npm install as the first step in the verification suite to ensure all dependencies are installed before running lint, tests, and build. This prevents failures due to missing or outdated dependencies. Co-authored-by: Claude --- .claude/commands/verify.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.claude/commands/verify.md b/.claude/commands/verify.md index 22e92da..ca65911 100644 --- a/.claude/commands/verify.md +++ b/.claude/commands/verify.md @@ -2,9 +2,10 @@ Run full verification suite for the current changes. Execute these checks in sequence, stopping on first failure: -1. **Lint Check**: `npm run lint` -2. **Test Suite**: `npm run test:run` -3. **Build Check**: `npm run build` +1. **Install Dependencies**: `npm install` +2. **Lint Check**: `npm run lint` +3. **Test Suite**: `npm run test:run` +4. **Build Check**: `npm run build` For each step: - If it passes, proceed to the next