원클릭으로
diff-analyze
Analyze the differences between the current branch and origin/main, and summarize the current work progress
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Analyze the differences between the current branch and origin/main, and summarize the current work progress
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Approve a pull request using gh pr review --approve
Batch-triage open pull requests: list PRs with prs-awaiting-maintainer, review each with review-pr, then post-review-comments when there are merge-blocker findings, or create-scrap-issue for non-blocking findings and merge-pr when there are none. Use when the user wants to review and resolve a batch of PRs in one pass.
Clean up unnecessary local branches and prune stale remote-tracking branches
Clean git worktrees created by git-worktree-runner
Commit current changes, push to remote, and create or update a pull request. Use when the user wants to commit and create a PR, push changes and open a pull request, or ship their current work as a PR.
Prepare a new npm release: bump the version, open a release PR, and create a draft GitHub release. Publishing is automated by the Publish workflow once the release PR is merged into main.
| name | diff-analyze |
| description | Analyze the differences between the current branch and origin/main, and summarize the current work progress |
Analyze the differences between the current branch and origin/main, and summarize the current work progress.
Fetch the latest main branch state:
git fetch origin main
Get the differences between the current branch and main:
git diff origin/main...HEAD
Get the commit history of the current branch since it diverged from main:
git log origin/main..HEAD --oneline
Based on the diff and commit history, summarize:
Keep the summary concise and practical.