소스 정보
- 저장소
- carrot-foundation/schemas
- 최근 소스 활동
- 2026년 3월 25일 20:55
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/carrot-foundation/schemas --skill rule-pull-request명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Schema version injection, $id format, and SCHEMA_VERSION environment variable
Generated JSON Schema structure — required fields, validation patterns, and $ref usage
Use when a task is complete and needs the full check, commit, and PR workflow
| name | rule-pull-request |
| description | PR creation workflow, title format, description template, and quality gates |
Apply this rule whenever work touches:
*Pull requests are the primary review mechanism for changes to a published npm package. Every PR must be focused, well-described, and pass all quality gates.
PR titles are human-readable summaries — NOT conventional commit messages. The title should describe what the PR accomplishes at a high level.
GOOD titles:
"Add MassID IPFS and JSON schema definitions"
"Implement shared coordinate validation schema"
"Fix UUID validation edge case for nil values"
"Upgrade Zod to v4 with strict object migration"
BAD titles (conventional commit format):
"feat(schema): add mass-id ipfs schema"
"fix(shared): resolve uuid validation"
"chore: upgrade zod"
Keep titles under 70 characters when possible. Use the description for details.
Aim for focused, reviewable PRs:
When a change exceeds these limits, split it into logical increments:
If a PR must exceed limits (e.g., initial schema creation), add a comment explaining why splitting is not practical.
Run pnpm check before creating a PR. This executes the full quality gate pipeline:
pnpm check
This includes:
tsc --noEmit)All gates must pass. Do not create a PR with failing checks.
Every PR must include a meaningful description following this structure:
## Summary
Brief description of what this PR accomplishes and why.
- Key change 1
- Key change 2
- Key change 3
## Changes
### Added
- New schemas, files, or capabilities
### Changed
- Modifications to existing schemas or behavior
### Removed
- Anything removed (with justification)
## Test plan
- [ ] Unit tests cover all new schemas
- [ ] 100% coverage maintained
- [ ] Both valid and invalid inputs tested
- [ ] Generated JSON schemas validated
- [ ] `pnpm check` passes
## Related issues
Closes #123
Related to #456
Reviewers should challenge every PR on three dimensions:
.meta() descriptions accurate? Do examples represent realistic data?Always link related issues in the PR description:
Closes #123 — automatically closes the issue on mergeRelated to #456 — creates a reference without auto-closingBlocked by #789 — indicates a dependencyUse draft PRs for:
Convert to ready-for-review only when all quality gates pass.
After merging: