Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

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 & CodingIntermediate67,5315,507AI score 5/10Last updated: Aug 9, 2026

What it does

  • Detects the latest published versions of oh-my-opencode, oh-my-openagent, and lazycodex-ai, then runs git 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 Matrix plus a patch/minor/major recommendation per layer and one overall release bump.
  • Filters senpi, omo-senpi, senpi-task, pi-goal, and pi-webfetch paths 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

  1. Before cutting a release, ask "list the unpublished changes" to get a layered CHANGELOG draft from the last published tag to HEAD.
  2. After a core-package-only fix, use the impact matrix to decide whether the CLI package also needs a bump.
  3. 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal.
  2. Create the skills directory: mkdir -p ~/.claude/skills
  3. Clone the repo to a temp path: git clone https://github.com/code-yeongyu/oh-my-openagent.git /tmp/oh-my-openagent
  4. Copy just this skill: cp -r /tmp/oh-my-openagent/.agents/skills/get-unpublished-changes ~/.claude/skills/
  5. Open ~/.claude/skills/get-unpublished-changes/SKILL.md and edit the Release Layers table to match your own npm package names and directory paths — the defaults are specific to the source repo.
  6. Restart Claude Code, cd into your git repository, and ask "what changed" or "list unpublished changes".
View source on GitHubLicense: NOASSERTION