Quality Gate Detection

Installation
SKILL.md

Quality Gate Detection

Dynamically detect project quality gates from package.json scripts and frameworks.

Prerequisites

  • Read access to package.json in the project root

Detection Process

Step 1: Analyze Project Scripts (Hybrid Diagnosis)

Read package.json and inspect the scripts section to identify verification commands.

Priority Heuristics:

  1. Test: Look for test, test:unit, test:ci. Preference: npm test or specific script.
  2. Lint: Look for lint, lint:fix, eslint. Preference: npm run lint.
  3. Typecheck: Look for typecheck, tsc, build. Preference: npm run typecheck or tsc --noEmit.
  4. Browser/E2E: Look for test:browser, e2e, cypress, playwright. Preference: npm run test:browser.
Installs
GitHub Stars
7
First Seen
Quality Gate Detection — lambda-curry/devagent