소스 정보
- 저장소
- 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 commit명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | commit |
| description | Use when staging and committing code changes with conventional commit messages |
Stage and commit code changes in the schemas repository using Conventional Commits format with appropriate scopes.
Start by reviewing the current state:
git status
git diff
git diff --cached
Understand what changed and why. Look at both staged and unstaged changes.
If changes touch multiple concerns, split them into separate commits. Common groupings:
Rule: If you can describe the change with a single conventional commit message without using "and", it belongs in one commit. Otherwise, split.
Stage files for the current commit:
git add src/mass-id/mass-id.schema.ts
git add src/mass-id/__tests__/mass-id.schema.spec.ts
Prefer explicit file paths over git add . to avoid accidentally staging unrelated changes.
Follow the Conventional Commits format:
<type>(scope): <description>
Types (most common for schemas):
| Type | Use When |
|---|---|
feat | Adding a new schema type or field |
fix | Correcting a schema bug or validation error |
refactor | Restructuring without behavior change |
test | Adding or updating tests only |
docs | Documentation changes only |
chore | Tooling, config, dependency updates |
build | Build system changes (tsup, scripts) |
style | Formatting-only changes |
Scopes for schemas repo:
| Scope | Use When |
|---|---|
schema | Changes to a schema type (data, attributes, main schema) |
shared | Changes to shared components (base schemas, utilities, enums) |
| (omit) | Root-level config, scripts, or cross-cutting changes |
Rules:
git commit -m "feat(schema): add mass-id IPFS schema type"
For commits needing a body:
git commit -m "$(cat <<'EOF'
feat(schema): add mass-id IPFS schema type
Defines the data schema, NFT attributes, and main schema for
mass-id tokenization. Includes type-specific fields for batch
processing metadata.
EOF
)"
Before committing, verify:
When multiple independent changes exist, create a commit for each:
# Commit 1: Schema changes
git add src/mass-id/
git commit -m "feat(schema): add mass-id IPFS schema type"
# Commit 2: Generated files
git add schemas/ipfs/
git commit -m "chore(schema): regenerate JSON schemas and examples"
# Commit 3: Config update
git add tsconfig.json
git commit -m "chore: update tsconfig paths for new schema type"
feat(schema): add credit-audit IPFS schema type
feat(shared): add participant-role enum to shared schemas
fix(schema): correct uuid format validation in base schema
refactor(shared): extract address schema to shared module
test(schema): add edge case tests for mass-id schema
chore: update cspell dictionary with new schema terms
docs: add JSDoc to exported schema types
build: update tsup config for new entry points
After committing, verify the commit looks correct:
git log --oneline -5
git show --stat HEAD
Ensure the commit includes exactly the files you intended.