소스 정보
- 저장소
- carrot-foundation/schemas
- 최근 소스 활동
- 2026년 3월 25일 20:55
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/carrot-foundation/schemas --skill coderabbit명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | coderabbit |
| description | Use when triggering a CodeRabbit review on current changes or a pull request |
Trigger and manage automated CodeRabbit reviews on pull requests in the schemas repository.
CodeRabbit is an AI-powered code review tool that automatically analyzes pull requests. It runs as a GitHub App and posts review comments directly on the PR.
CodeRabbit reviews are triggered automatically when:
No manual action is needed for the initial review.
If you need to re-trigger a CodeRabbit review (e.g., after addressing findings or if the initial review didn't run), comment on the PR:
@coderabbitai review
Other useful CodeRabbit commands:
@coderabbitai summary # Get a summary of the PR changes
@coderabbitai resolve # Resolve all CodeRabbit comments
@coderabbitai configuration # Show current CodeRabbit configuration
Before requesting a CodeRabbit review, ensure:
All changes are pushed to the remote branch:
git push origin HEAD
Quality gates pass locally -- run pnpm check first to avoid noise in the review from issues you could have caught locally.
The PR description is complete -- CodeRabbit uses the PR description for context when reviewing.
When CodeRabbit posts review comments:
Read each comment carefully -- CodeRabbit flags potential issues, style violations, and bugs.
Categorize findings:
Schema-specific patterns CodeRabbit checks:
.meta() on Zod fieldsindex.tsAfter addressing all findings, re-trigger the review:
@coderabbitai review
Resolve addressed comments once fixes are pushed.
| Finding | What It Means | How to Fix |
|---|---|---|
| Missing field description | A Zod field lacks .meta() with description | Add .meta({ description: '...' }) to the field |
| Unused export | An exported symbol is not used elsewhere | Remove the export or verify it's used by consumers |
| Type assertion | Using as instead of proper typing | Use Zod inference (z.infer<typeof schema>) |
| Missing test case | A code path is not tested | Add test for the uncovered path |
| Breaking change | Schema field removed or type changed | Add backward compatibility or document the breaking change |
The recommended workflow for CodeRabbit integration:
pnpm check -- fix all issuesgh pr createCodeRabbit configuration for this repository lives in .coderabbit.yaml at the repo root. Do not modify this file unless explicitly asked.