Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/alamenai/terrae --skill fix명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | fix |
| description | Systematically fix issues found by /review or reported by the user |
| allowed-tools | Read, Grep, Glob, Edit, Write, Bash(git diff*), Bash(npx tsc *) |
Systematically fix code issues found by /review or reported by the user.
If coming from a /review, gather the issues from the review output. Otherwise, ask the user what needs fixing.
Categorize each issue by severity:
Fix issues in severity order (critical first). Group related fixes together when they touch the same file to minimize changes.
Present the plan to the user before starting:
## Fix Plan
### Critical (fix first)
1. [Issue] — [File:line] — [What to do]
### High
2. [Issue] — [File:line] — [What to do]
### Medium
3. [Issue] — [File:line] — [What to do]
For each fix:
Follow these principles:
.claude/rules/After all fixes:
npx tsc --noEmit to check for type errors## Fix Summary
### Fixed
- [Issue] — [File] — [What was done]
### Skipped (needs discussion)
- [Issue] — [Reason]
### Remaining
- [Issue] — [Why it wasn't fixed]
Show the user the diff of all changes:
git diff --stat
Ask if they want to proceed with committing or if adjustments are needed.
Add the import at the top of the file, grouped with similar imports.
Add a return function that removes event listeners, cancels animation frames, clears timeouts, and removes map layers/sources/markers.
Store the timer ID in a ref and clear it in the cleanup function.
Store the RAF ID and cancel it with cancelAnimationFrame in the cleanup function.
any with Proper TypesIdentify what the value actually is and create a named type for it. Use unknown only as a last resort.
Extract the duplicated code into a shared utility file. Update all files that used the duplicated code to import from the shared location.
Reference .claude/rules/ for the correct pattern and apply it consistently.