Get Unpublished Changes
Diffs HEAD against the latest published npm versions and reports every unpublished change grouped by release layer, with per-layer version bump advice.
Dev & CodingIntermediate★ 67,531⑂ 5,507AI score 5/10Last updated: Aug 9, 2026
What it does
- Detects the latest published versions of
oh-my-opencode,oh-my-openagent, andlazycodex-ai, then runsgit diff v{published}..HEAD. - Refuses to parrot commit messages: it reads the actual diff, describes the real change in plain language, and explains why it matters.
- Classifies every touched file into three release layers (
omo pure components,omo opencode,omo codex) before grouping by feat/fix/refactor/docs. - Emits a
Layered Impact Matrixplus a patch/minor/major recommendation per layer and one overall release bump. - Filters
senpi,omo-senpi,senpi-task,pi-goal, andpi-webfetchpaths out of user-facing notes, logging them in a separate internal-adapter ledger.
Who it's for
- Monorepo maintainers who publish several npm packages together and hand-write release notes.
- Teams that want a pre-release sanity check on "what actually ships if I publish now".
- Developers who need a justified semver call rather than a guess.
Examples
- Before cutting a release, ask "list the unpublished changes" to get a layered CHANGELOG draft from the last published tag to HEAD.
- After a core-package-only fix, use the impact matrix to decide whether the CLI package also needs a bump.
- When you suspect a breaking change slipped in, get breaking changes listed per affected layer with a major-bump recommendation.
· · · Install guide · · ·
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the .agents/skills/get-unpublished-changes folder from the GitHub repo code-yeongyu/oh-my-openagent into my ~/.claude/skills/get-unpublished-changes/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/code-yeongyu/oh-my-openagent.git /tmp/oh-my-openagent && mkdir -p ~/.claude/skills && cp -r /tmp/oh-my-openagent/.agents/skills/get-unpublished-changes ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Create the skills directory:
mkdir -p ~/.claude/skills - Clone the repo to a temp path:
git clone https://github.com/code-yeongyu/oh-my-openagent.git /tmp/oh-my-openagent - Copy just this skill:
cp -r /tmp/oh-my-openagent/.agents/skills/get-unpublished-changes ~/.claude/skills/ - Open
~/.claude/skills/get-unpublished-changes/SKILL.mdand edit theRelease Layerstable to match your own npm package names and directory paths — the defaults are specific to the source repo. - Restart Claude Code, cd into your git repository, and ask "what changed" or "list unpublished changes".
View source on GitHub ↗License: NOASSERTION