description
| description |
| Compare HEAD with the latest published npm version and list all unpublished changes |
IMMEDIATELY output the analysis. NO questions. NO preamble.
CRITICAL: DO NOT just copy commit messages!
For each commit, you MUST:
- Read the actual diff to understand WHAT CHANGED
- Describe the REAL change in plain language
- Explain WHY it matters (if not obvious)
Steps:
- Run
git diff v{published-version}..HEAD to see actual changes
- Group by type (feat/fix/refactor/docs) with REAL descriptions
- Note breaking changes if any
- Recommend version bump (major/minor/patch)
Output Format:
- feat: "Added X that does Y" (not just "add X feature")
- fix: "Fixed bug where X happened, now Y" (not just "fix X bug")
- refactor: "Changed X from A to B, now supports C" (not just "rename X")
!`npm view oh-my-opencode version 2>/dev/null || echo "not published"`
!`node -p "require('./package.json').version" 2>/dev/null || echo "unknown"`
!`git tag --sort=-v:refname | head -1 2>/dev/null || echo "no tags"`
!`npm view oh-my-opencode version 2>/dev/null | xargs -I{} git log "v{}"..HEAD --oneline 2>/dev/null || echo "no commits since release"`
!`npm view oh-my-opencode version 2>/dev/null | xargs -I{} git diff "v{}"..HEAD --stat 2>/dev/null || echo "no diff available"`
!`npm view oh-my-opencode version 2>/dev/null | xargs -I{} git diff "v{}"..HEAD --stat 2>/dev/null | tail -1 || echo ""`
## Unpublished Changes (v{published} → HEAD)
feat
| Scope |
What Changed |
| X |
실제 변경 내용 설명 |
fix
| Scope |
What Changed |
| X |
실제 변경 내용 설명 |
refactor
| Scope |
What Changed |
| X |
실제 변경 내용 설명 |
docs
| Scope |
What Changed |
| X |
실제 변경 내용 설명 |
Breaking Changes
None 또는 목록
Files Changed
{diff-stat}
Suggested Version Bump
- Recommendation: patch|minor|major
- Reason: 이유