gxpm-build

Identify the first root cause of compilation or type-check failures in gxpm projects.

1|Updated Apr 24, 2026
One-click install
npx skills add https://github.com/laozhong86/gxpm --skill gxpm-build
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: gxpm-build
Source: https://github.com/laozhong86/gxpm/tree/main/skills/gxpm-build
Command: npx skills add https://github.com/laozhong86/gxpm --skill gxpm-build

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This skill prevents post-change surprises by validating that code changes compile and pass type checks, surfacing the first root cause of failures early.

Core Features & Use Cases

  • Build verification before commits to catch issues early.
  • Pre-verify steps in gxpm workflow to maintain code health.
  • Local, audit-friendly recording of exit codes and results for debugging and traceability.

Quick Start

Run bun run check after making code changes to verify compilation and types.

Frequently Asked Questions about gxpm-build

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

FAQPage Schema
How do I catch TypeScript build and type errors before committing code?

Catch TypeScript build and type errors before committing by running a build verification command like bun run check on your code changes. This surfaces the first root cause of compilation failures early and records exit codes for local traceability.

What is the best way to identify the root cause of a gxpm compilation failure?

Identify the root cause of a gxpm compilation failure by enforcing a type-check execution on your project. The skill surfaces the first root cause of the failure, preventing post-change surprises when builds fail and root causes are unclear.

How do I run a pre-verify type-check step in a gxpm workflow?

Run a pre-verify type-check step in a gxpm workflow by applying the build verification process to code changes before commits. Execute a command such as bun run check to maintain code health and validate that changes compile successfully.

Does this build verification approach record exit codes for audit and debugging?

Yes, build verification records exit codes and results for audit-friendly debugging and traceability. When you enforce execution of a build or type-check command, the skill logs the output locally to help track down compilation failures.

Why should I run type-checks on code changes before they are committed?

Run type-checks on code changes before they are committed to prevent post-change surprises. Validating that code compiles and passes type checks in pre-verify steps surfaces the first root cause of failures early, maintaining overall code health.

Can I use bun run check for build verification in a TypeScript project?

Yes, you can use bun run check for build verification in a TypeScript project. Enforcing this build and type-check command validates compilation, surfaces the first root cause of any failures, and records the exit codes for traceability.