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