check

Executes lint, type-check, and build scripts for TypeScript/JavaScript projects.

1|Updated Dec 6, 2023
One-click install
npx skills add https://github.com/tadams95/kardashev-network --skill check-tadams95
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: check
Source: https://github.com/tadams95/kardashev-network/tree/main/.claude/skills/check
Command: npx skills add https://github.com/tadams95/kardashev-network --skill check-tadams95

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill automates the health validation of a project by running build, lint, and type checks to catch issues early.

Core Features & Use Cases

  • Automated Health Verification: Runs npm scripts to verify code quality and readiness for deployment.
  • CI and Local Development: Useful in CI pipelines, local development, and pre-commit checks to ensure consistent quality.
  • Use Case: Imagine a pull request with multiple changed files; this Skill quickly runs lint, type checks, and builds to ensure everything passes before merging.

Quick Start

Use this skill to verify Kardashev Network's codebase health by executing lint, type-check, and build steps in your environment.

Frequently Asked Questions about check

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

FAQPage Schema
How do I automate TypeScript lint, type checking, and build steps for CI pipelines?

Automated health checks for TypeScript projects run lint, type-check, and build scripts sequentially to catch issues early. This validates code readiness locally or in CI without requiring additional setup beyond standard Node.js and npm tooling.

What is the best way to run pre-commit health checks for a JavaScript project?

Running pre-commit health checks executes your project's existing npm scripts for linting, type checking, and building. This verifies code quality locally before merging changes by relying on standard tooling configurations already present in the environment.

Do I need any extra dependencies to run automated type checking and linting for my project?

No extra dependencies are required to run automated type checking and linting. The process requires only Node.js, npm, and your project's existing scripts for lint, build, and tsc to validate code quality.

How does an automated build and type check workflow verify code readiness before deployment?

An automated build and type check workflow verifies code readiness by executing npm scripts to detect lint errors, type mismatches, and build failures. This catches integration issues early in local development or CI pipelines before deployment.

Can I use automated health verification for local development or is it only for CI?

Automated health verification supports local development, CI pipelines, and pre-commit workflows. It executes standard npm scripts for lint, type-check, and build steps to ensure consistent code quality validation across all environments.