Vérification complète du projet

VérifiéSûr

Exécute la suite complète de validation qualité pour les projets Topographic Studio : linting avec Biome, vérification des types TypeScript, tous les tests, et build. Les vérifications sont séquentielles et s'arrêtent à la première erreur avec un rapport détaillé. À utiliser avant un commit, une pull request ou une publication.

Spar Skills Guide Bot
DeveloppementIntermédiaire
3002/06/2026
Claude Code
#validation-suite#linting#type-checking#testing#code-quality

Recommandé pour

Notre avis

Exécute la suite complète de validation pour les projets Topographic Studio, incluant le linting, la vérification de types, les tests et la construction.

Points forts

  • Automatise l'ensemble des vérifications de qualité en une seule commande.
  • Arrête au premier échec pour un retour rapide.
  • Fournit des rapports d'erreurs détaillés avec suggestions de correction.

Limites

  • Spécifique aux projets utilisant Biome, TypeScript, Bun et une structure monorepo.
  • Ne couvre pas les tests d'intégration ou de bout en bout.
Quand l'utiliser

Avant chaque commit, pull request ou publication de package pour garantir la qualité du code.

Quand l'éviter

Pour des vérifications rapides et partielles (par exemple, uniquement les tests) ou dans des projets n'utilisant pas la stack technique attendue.

Analyse de sécurité

Sûr
Score qualité88/100

The skill runs standard development commands (bun run lint/typecheck/test/build) sequentially, with no destructive or exfiltrating actions. No obfuscation, no disabling of safety, and no use of dangerous utilities like curl or shell redirections to secrets.

Aucun point d'attention détecté

Exemples

Full validation before commit
Run the full validation suite for Topographic Studio.
Pre-PR check
I'm about to push a PR. Please run all checks (lint, typecheck, test, build) and report any failures.
Pre-release validation
We're releasing a new version. Execute the complete validation suite and show a summary.

Check All Skill

Run the complete validation suite for Topographic Studio projects.

Task

You are helping the user validate their code with a full quality check suite.

Instructions

Run these checks in order:

  1. Lint - Check code style with Biome

    bun run lint
    
  2. Type Check - Verify TypeScript types

    bun run typecheck
    
  3. Test - Run all tests

    bun run test
    
  4. Build - Build all packages

    bun run build
    

Execution Strategy

  • Run checks sequentially
  • Stop on first failure (report error immediately)
  • If all pass, show comprehensive success summary

Error Reporting

For each failed check, provide:

  • Which check failed (lint, typecheck, test, or build)
  • Specific error messages
  • File locations where errors occurred
  • Suggestions to fix

Success Criteria

All checks must pass:

  • ✅ No linting errors
  • ✅ No type errors
  • ✅ All tests passing
  • ✅ All packages build successfully

Output Format

Running full validation suite...

[1/4] Linting with Biome... ✅
[2/4] Type checking... ✅
[3/4] Running tests... ✅
[4/4] Building packages... ✅

✨ All checks passed! Ready for commit/release.

Summary:
- Linted: 127 files, 0 errors
- Type checked: 45 files, 0 errors
- Tests: 23 passed
- Built: 4 packages

When to Use

  • Before committing changes
  • Before creating a pull request
  • Before publishing packages
  • As part of CI/CD validation
Skills similaires