LLM Skills
~/catalog/deployment & infra//validate-build
Deployment & infraGitHub source

Validate Build

/validate-build

Validate that the project builds successfully. Run BEFORE commits to catch build failures early.

CloudAI-XCloudAI-X
1.4k
June 16, 2026
MIT License
// skill content

--- description: Validates the project's build process. Run after changes to ensure the project compiles/transpiles correctly. --- # Validate Build Validate that the project builds successfully. Run BEFORE commits to catch build failures early. ## Phase 1: Detect Build System Identify the project's build system: ``bash # Check for common build configurations ls package.json Makefile setup.py pyproject.toml go.mod Cargo.toml CMakeLists.txt 2>/dev/null ## Phase 2: Run Build Commands Based on detected system: ### Node.js/TypeScript bash npm run build 2>&1 || yarn build 2>&1 || pnpm build 2>&1 || bun run build 2>&1 ### Python bash find . -name "*.py" -exec python -m py_compile {} + # or for packages: pip install -e . --dry-run ### Go bash go build ./... ### Rust bash cargo build ## Phase 3: Verify Build Artifacts Check that expected outputs exist: - dist/ or build/ directory for JS/TS - Compiled binaries for Go/Rust - No missing dependencies bash # Example for Node.js ls -la dist/ build/ 2>/dev/null ## Phase 4: Check for Warnings Parse build output for: - Deprecation warnings - Unused variables/imports - Performance warnings - Type coercion warnings ## Output Format ## Build Validation: [PASS/FAIL] ### Build Command [command used] ### Result - Exit code: [0/non-zero] - Duration: [time if available] ### Artifacts - [x] Output directory created - [x] Expected files present - [ ] Source maps generated (if applicable) ### Warnings - [List any build warnings] ### Errors (if failed) - [Parse and list specific errors] - [Suggested fixes for each] ## Auto-Fix Suggestions If build fails, suggest: 1. Missing dependency installation commands 2. Type errors with file:line locations 3. Syntax errors with context 4. Configuration issues ## Usage This command ships with the project-starter plugin. Invoke with: /project-starter:validate-build`

// original public source
CloudAI-X/claude-workflow-v2
/commands/validate-build.md
License: MIT License
Independent project, not affiliated with Anthropic. This skill remains the property of its original author.
// install this skill
Paste this command in your terminal at the root of your project:
mkdir -p .claude/commands && curl -o ".claude/commands/validate-build.md" "https://raw.githubusercontent.com/CloudAI-X/claude-workflow-v2/main/commands/validate-build.md"
Then in Claude Code, type /validate-build to activate it.
open_in_newOpen original source
// save
Save available after sign in.
loginSign in to save
// information
CreatorCloudAI-X
Stars 1.4k
LicenseMIT License
UpdatedJune 16, 2026
Format.md
AccessFree
// similar

Skills Deployment & infra

View allarrow_forward