Run production build validation (npm run build, vite build, tsc) to ensure code compiles and builds successfully. Returns structured output with build status, duration, size metrics, and error details. Used for quality gates and deployment readiness checks.
Executes production build process to validate that code compiles and bundles successfully.
This skill runs the build command and returns structured validation results.
npm run build script{
"status": "success",
"build": {
"status": "passing",
"duration": "12.3s",
"outputSize": "245.8 kB",
"errors": [],
"warnings": []
},
"canProceed": true
}
{
"status": "error",
"build": {
"status": "failing",
"duration": "5.2s",
"errors": [
{
"file": "src/components/Settings.tsx",
"message": "Property 'user' does not exist on type 'AppState'",
"line": 42
}
],
"warnings": [
{
"message": "Circular dependency detected",
"details": "src/utils/helpers.ts -> src/components/Card.tsx -> src/utils/helpers.ts"
}
]
},
"canProceed": false,
"details": "Build failed with 1 error(s)"
}
"build": "vite build" or "build": "tsc"Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer