소스 정보
- 저장소
- 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 create-branch명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | create-branch |
| description | Use when starting new work and need a branch following naming conventions |
Create a new git branch following the naming conventions for the schemas repository.
<type>/<short-description>
With optional scope:
<type>/<scope>-<short-description>
Use the same types as Conventional Commits:
| Type | Use When |
|---|---|
feat | New schema type, new field, new capability |
fix | Bug fix in schema validation, generation, or tests |
refactor | Code restructuring without behavior change |
docs | Documentation-only changes |
test | Test-only additions or updates |
chore | Tooling, config, dependency updates |
| Scope | Use When |
|---|---|
schema | Changes to a specific schema type |
shared | Changes to shared components (base schemas, enums, utilities) |
| (omit) | Cross-cutting or root-level changes |
main:git checkout main
git pull origin main
Determine the type from the task description:
featfixrefactorGenerate the branch name:
# Without scope
git checkout -b feat/add-mass-id-schema
# With scope
git checkout -b feat/schema-add-mass-id-schema
git branch --show-current
feat/schema-add-mass-id-schema
feat/shared-add-participant-role-enum
fix/schema-correct-uuid-validation
fix/shared-harden-timestamp-parsing
refactor/shared-extract-address-schema
test/schema-add-credit-audit-edge-cases
chore/update-tsup-config
chore/bump-zod-dependency
docs/add-schema-authoring-guide
When the user provides a task description, extract the key information:
| User Says | Branch Name |
|---|---|
| "Add a new schema for mass ID tokenization" | feat/schema-add-mass-id-schema |
| "Fix the UUID validation in the base schema" | fix/shared-fix-uuid-validation |
| "Update the tests for credit audit" | test/schema-update-credit-audit-tests |
| "Refactor shared enum definitions" | refactor/shared-refactor-enum-definitions |
| "Update dependencies" | chore/update-dependencies |
feat, not test)feat for new functionality, fix for corrections, chore for maintenancegit branch --list <name> and suggest an alternative if it existsAfter creating the branch, confirm:
git branch --show-current
git log --oneline -1
The branch is ready for implementation work.