원클릭으로
commit
Create git commit following project conventions
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create git commit following project conventions
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Full Jira-tracked change workflow — create/select Jira ticket under epic SDK-5256, create feat/SDK-XXXX branch, commit with ticket id, push, and open PR with ticket id in title and Jira links in body
Generate test JSON configurations following JSON_STRUCTURE_REFERENCE.md rules
Review code changes against project standards and conventions
Show current project status and development phase progress
Run tests for Android or iOS SDK
| name | commit |
| description | Create git commit following project conventions |
| user-invocable | true |
| disable-model-invocation | false |
Creates a git commit following the Native Display System project conventions.
Invoke with /commit or /commit -m "custom message"
Analyzes Changes
git status to see staged/unstaged filesgit diff to understand the changesGenerates Commit Message
SDK-XXXX: … or <type>(SDK-XXXX): …feat:, fix:, docs:, refactor:, test:, chore:Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>/ship-jira "<summary>" first to create one under epic SDK-5256Creates Commit
Every commit on this repo must reference a Jira ticket. The subject leads with the ticket id, in one of two equivalent forms:
SDK-XXXX: <description>
or
<type>(SDK-XXXX): <description>
The body explains why (constraint, prior incident, deadline) and the what per platform when relevant. End with the trailer:
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Pass via heredoc to preserve formatting:
git commit -m "$(cat <<'EOF'
SDK-XXXX: <subject>
<body>
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
EOF
)"
feat(SDK-5405): add GALLERY container support)fix(SDK-5612): correct style cascading for text properties)docs(SDK-5555): update CLAUDE.md with skills section)refactor(SDK-5780): tighten SDK visibility for v1)test(SDK-5444): add unit tests for VariableEvaluator)chore(SDK-5500): update dependencies)If no ticket exists for the change, run /ship-jira "<summary>" first — it creates a Task under epic SDK-5256 and returns the new ticket id.
# Let skill auto-generate message (requires SDK-XXXX ticket id from context or branch name)
/commit
# Provide custom message — ticket id is required in the subject
/commit -m "feat(SDK-5407): add support for gradient backgrounds"
git add to stage relevant filesSDK-XXXX. If no ticket exists, run /ship-jira "<summary>" first to create one under epic SDK-5256feat(SDK-XXXX): add iOS and Android support for...)git add -A: stage by explicit path so unrelated working-tree changes (version bumps, lock files, runtime artifacts) don't slip in/ship-jira, which creates feat/SDK-XXXX-<slug> branches that match the commit subject--no-verify flag (runs pre-commit hooks)CLAUDE.md.gitignore rules/ship-jira for the full workflow (Jira ticket → branch → commit → push → PR)