원클릭으로
lint
Run linting and type checking across the Terrae codebase
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run linting and type checking across the Terrae codebase
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Read a GitHub issue, summarize it, and create a branch for it
Commit, push, and open a pull request on GitHub
Verify all outputs exist after creating a new component and fix any issues
Create standardized git commits following Terrae's conventions
Generate or update documentation for Terrae components
Systematically fix issues found by /review or reported by the user
| name | lint |
| description | Run linting and type checking across the Terrae codebase |
| allowed-tools | Bash(npx tsc *), Bash(npm run lint*), Bash(npm run format*) |
Run linting and type checking across the Terrae codebase.
Run Type Checking
npx tsc --noEmit
This checks TypeScript types without emitting files.
Run ESLint
npm run lint
This runs ESLint on the codebase.
Run Prettier Check
npm run format:check
This checks if files are properly formatted.
Report Results
Offer to Fix If issues are found, ask the user if they want to:
npm run lint -- --fixnpm run formatRe-verify After fixes, run the checks again to confirm all issues are resolved.