بنقرة واحدة
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)