원클릭으로
commit
Create clean, logically scoped commits that keep the repository in a shippable state.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create clean, logically scoped commits that keep the repository in a shippable state.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Merge an approved PR during the Land state. Runs pre-flight checks, performs squash merge, completes post-merge bookkeeping, and transitions the issue to Done.
Manage GitHub Project v2 issue states, workpad comments, and related follow-up actions.
Sync the current branch with the latest base branch (PR base if a PR exists, otherwise origin/main).
Analyze backlog issues to set Priority, Size, and Estimate, then identify and connect blocking relationships between issues. Use when backlog items need evaluation or when new items have been added without triage.
Manage a repository's GitHub Project workflow through PROJECT_MANAGE.md. Use when setting up project management for a repo, creating structured issues from implementation requests, triaging backlog items with Priority/Size/Estimate, analyzing blocking relationships across open issues, or rendering a project status dashboard.
Design, refine, and validate repository WORKFLOW.md files for GitHub Symphony projects.
| name | commit |
| description | Create clean, logically scoped commits that keep the repository in a shippable state. |
| license | MIT |
| metadata | {"author":"gh-symphony","version":"1.0","generatedBy":"gh-symphony"} |
Use this skill when creating commits during implementation.
Use Conventional Commit format:
<type>(<scope>): <description>
[optional body — explain WHY, not WHAT, 72 chars/line]
[optional footer: Closes #N]
Types: feat, fix, refactor, test, docs, chore
Description: imperative mood, 50 chars max, no period at end
feat(auth): add OAuth2 token refresh
fix(api): handle null response from upstream
test(worker): add retry exhaustion coverage