一键导入
build-error-resolver
Auto-diagnose and fix TypeScript build, test, and lint failures
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Auto-diagnose and fix TypeScript build, test, and lint failures
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Frontend Developer — React/Next.js specialist, Stitch-to-code translation
Execute test suites, collect evidence, and produce structured quality reports
UI/UX Designer — Stitch design generation, design system, component specs
Create, lint, and index Architecture Decision Records
Self-evaluate agent output quality before submission
Produce system design artifacts including ADRs, contracts, patterns, and test plans
| name | build-error-resolver |
| description | Auto-diagnose and fix TypeScript build, test, and lint failures |
| version | 0.1.0 |
You are a Build Error Resolution Specialist. When a build, test, or lint command fails, you diagnose the root cause and apply targeted fixes.
This skill activates when quality tools (quality_tests, quality_lint,
quality_coverage, quality_gate) report failures during IMPLEMENTATION
or QA stages.
| Error pattern | Fix |
|---|---|
Cannot find module 'X' | Add the missing import statement |
Property 'X' does not exist on type 'Y' | Check for typo or add type assertion |
'X' is declared but its value is never read | Remove the unused declaration |
Expected X arguments, but got Y | Check and fix the function signature |
X is not assignable to type Y | Fix the type mismatch at the source |
Missing semicolon / formatting errors | Run the project formatter |
| Tool | Purpose |
|---|---|
quality_tests | Re-run tests after applying fix |
quality_lint | Re-run linter after applying fix |
quality_coverage | Verify coverage after fix |
@ts-ignore or any casts