lib-updater

star 20

Update dependencies with changelog review. Use when updating npm packages or libraries.

nimbalyst By nimbalyst schedule Updated 2/16/2026

name: lib-updater description: Update dependencies with changelog review. Use when updating npm packages or libraries.

Update the Anthropic Agent SDK, MCP library, and OpenAI Codex SDK to their latest versions, showing changelogs.

Libraries to Update

  1. @anthropic-ai/claude-agent-sdk - Located in root package.json
  2. @modelcontextprotocol/sdk - Located in packages/electron/package.json
  3. @openai/codex-sdk - Located in packages/runtime/package.json

Steps

  1. Check current versions by reading the package.json files
  2. Fetch latest versions from npm:
  • Run npm view @anthropic-ai/claude-agent-sdk version to get latest
  • Run npm view @modelcontextprotocol/sdk version to get latest
  • Run npm view @openai/codex-sdk version to get latest
  1. Get changelogs for all packages:
  1. Report the changes - Show what changed between the current version and latest for each library. For the Agent SDK, include relevant CLI changes that affect the SDK.
  2. Update the versions in the respective package.json files:
  • Update @anthropic-ai/claude-agent-sdk version in root package.json (use exact version, no caret)
  • Update @modelcontextprotocol/sdk version in packages/electron/package.json (use caret prefix)
  • Update @openai/codex-sdk version in packages/runtime/package.json (use caret prefix)
  1. Run npm install at the repository root to update package-lock.json
  2. Verify the updates were successful by checking the installed versions
  3. Commit the changes - Create a git commit with the updated dependencies. The commit message should summarize which packages were updated and their version changes (e.g., "deps: update claude-agent-sdk 1.0.0 -> 1.1.0, mcp-sdk 2.0.0 -> 2.1.0"). Stage only the relevant files: package.json, packages/electron/package.json, packages/runtime/package.json, and package-lock.json.

Output Format

Present the findings in this format:

@anthropic-ai/claude-agent-sdk

  • Current: [version]
  • Latest: [version]
  • Changes:
    • [List notable changes from release notes]

@modelcontextprotocol/sdk

  • Current: [version]
  • Latest: [version]
  • Changes:
    • [List notable changes from release notes]

@openai/codex-sdk

  • Current: [version]
  • Latest: [version]
  • Changes:
    • [List notable changes from release notes]

If any package is already at the latest version, note that no update is needed.

Install via CLI
npx skills add https://github.com/nimbalyst/skills --skill lib-updater
Repository Details
star Stars 20
call_split Forks 4
navigation Branch main
article Path SKILL.md
More from Creator