kawa-check

Run TypeScript compilation, Biome lint, and build checks for the kawa project.

Updated Apr 22, 2026
One-click install
npx skills add https://github.com/dentedgem9846-claw/chronocrystal-opsx --skill kawa-check
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: kawa-check
Source: https://github.com/dentedgem9846-claw/chronocrystal-opsx/tree/main/.pi/skills/kawa-check
Command: npx skills add https://github.com/dentedgem9846-claw/chronocrystal-opsx --skill kawa-check

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Run the kawa project's quality checks after code changes to ensure TypeScript compiles, Biome lint+format passes, and the build succeeds.

Core Features & Use Cases

  • Automates TypeScript type checking with tsc --noEmit
  • Runs Biome lint and format with autofix
  • Performs a full TypeScript build to dist/ to verify compilation and packaging
  • Used after edits in flux/kawa/ to confirm readiness before archiving or smoke testing

Quick Start

Navigate to flux/kawa and run npm run check to execute the full pipeline.

Frequently Asked Questions about kawa-check

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

FAQPage Schema
How do I run TypeScript type checking and Biome linting after editing files in flux/kawa?

To run TypeScript type checking and Biome linting after editing files in flux/kawa, navigate to the flux/kawa directory and execute the command `npm run check` to automatically verify TypeScript compilation, apply Biome autofix, and perform a full build.

What is the best way to automate Biome formatting and TypeScript builds for kawa projects?

Automating Biome formatting and TypeScript builds for kawa projects is handled by running `npm run check` from the flux/kawa directory, which sequentially executes tsc --noEmit, applies Biome lint and format autofix, and compiles the full TypeScript build to the dist/ folder.

Do I need Node.js installed to run quality assurance checks on the kawa project?

Yes, you need Node.js installed to run quality assurance checks on the kawa project, because the pipeline requires Node.js, TypeScript, and Biome to execute tsc --noEmit, apply lint autofix, and verify the full build packaging.

Why does my TypeScript build fail when running npm run check in flux/kawa?

Your TypeScript build may fail during the npm run check pipeline if there are type errors detected by tsc --noEmit, unresolvable Biome lint issues, or compilation errors that prevent the project from successfully building and packaging to the dist/ directory.

When should I run a full TypeScript build and Biome format check in my CI workflow?

You should run a full TypeScript build and Biome format check after making any code changes under flux/kawa/ to confirm readiness before archiving or smoke testing, ensuring TypeScript compiles, lint passes, and the build succeeds.

Can I use Biome autofix to handle lint and formatting errors during the kawa build process?

Yes, you can use Biome autofix to handle lint and formatting errors during the kawa build process, as the check pipeline specifically runs Biome lint and format with autofix enabled before performing the full TypeScript build to the dist/ directory.