LLM Skills
~/catalogue/déploiement et infra//validate-build

Valider le build

/validate-build

Vérifie que le projet se compile correctement. À lancer AVANT les commits pour détecter tôt les échecs de build.

CloudAI-XCloudAI-X
1.4k
16 juin 2026
MIT License
// contenu du skill

description: Validates project 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

// source originale publique
CloudAI-X/claude-workflow-v2
/commands/validate-build.md
Licence : MIT License
Projet indépendant, non affilié à Anthropic. Ce skill reste la propriété de son auteur original.
// installer ce skill
Collez cette commande dans votre terminal à la racine de votre projet :
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"
Ensuite dans Claude Code, tapez /validate-build pour l'activer.
open_in_newVoir la source originale
// sauvegarder
Sauvegarde disponible après connexion.
loginSe connecter pour sauvegarder
// informations
CréateurCloudAI-X
Étoiles 1.4k
LicenceMIT License
Mis à jour16 juin 2026
Format.md
AccèsGratuit
// similaires

Skills Déploiement et infra

Voir toutarrow_forward