setup-verify

Execute package.json scripts sequentially to validate project configuration.

2|Updated Jan 13, 2026
One-click install
npx skills add https://github.com/erclx/aitk --skill setup-verify-erclx
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: setup-verify
Source: https://github.com/erclx/aitk/tree/main/claude/skills/setup-verify
Command: npx skills add https://github.com/erclx/aitk --skill setup-verify-erclx

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill eliminates the manual effort of checking if a newly scaffolded project is correctly configured, catching typos, missing dependencies, and wiring errors before they cause runtime issues.

Core Features & Use Cases

  • Automated Verification Chain: Sequentially executes linting, type checking, testing, and build scripts defined in package.json.
  • Error Isolation: Stops execution at the first failure and surfaces the specific error output to pinpoint the exact break.
  • Use Case: After generating a new project using a tooling stack, use this skill to ensure all scripts are wired correctly and the environment is ready for development.

Quick Start

Ask the agent to verify the scaffold to run the automated check on your current project.

Frequently Asked Questions about setup-verify

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I verify a newly scaffolded project configuration?

Verify a project scaffold by sequentially executing linting, type checking, testing, and build scripts defined in package.json to ensure environment integrity and catch missing dependencies.

Does automated scaffold verification work with the Bun runtime?

Automated scaffold verification works with the Bun runtime, requiring a valid package.json file to execute scripts sequentially and validate the post-scaffolding environment.

How do I isolate missing dependency errors after generating a project?

Isolate missing dependency errors by running an automated verification chain that stops execution at the first failure and surfaces the specific error output to pinpoint the exact break.

What is the best way to automate post-scaffolding quality assurance checks?

Automate post-scaffolding quality assurance by executing package.json scripts in a defined order to validate dependency resolution and ensure the environment is ready for development.

Why does project verification stop at the first script failure?

Project verification stops at the first script failure to isolate the specific error output, allowing developers to pinpoint the exact break in the configuration wiring without continuing execution.

Do I need a valid package.json file to run automated project checks?

You need a valid package.json file to run automated project checks, as the verification process executes the scripts defined within it sequentially using the Bun runtime.