원클릭으로
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