check-sdk-updates
This skill queries npm to compare your declared SDK versions against the latest published releases for Claude Code, Claude Agent SDK, and Codex SDK. It generates a status table showing which packages are current or outdated, then analyzes the version gap and release notes for each outdated package to help you assess update risk before installing.
check-sdk-updates compares your Claude Code, Claude Agent SDK, and Codex SDK versions against the latest npm releases.
AI-generated summary based on this skill's SKILL.md
Install
tony1223/better-agent-terminal/check-sdk-updates · repository language: TypeScript
git clone https://github.com/tony1223/better-agent-terminal
cp -r better-agent-terminal/.claude/skills/check-sdk-updates ~/.claude/skills/check-sdk-updatesFrequently asked questions
AI-generated answers based on this skill's SKILL.md and metadata
What does check-sdk-updates do?
check-sdk-updates queries npm to compare your declared SDK versions against the latest published releases for Claude Code, Claude Agent SDK, and Codex SDK. It generates a status table showing which packages are current or outdated, then analyzes the version gap and release notes for each outdated package to help you assess update risk before installing.
How do I check for SDK updates with this skill?
check-sdk-updates automatically compares your installed SDK versions against the npm registry. Run it to see a status table for Claude Code, Agent SDK, and Codex SDK, identifying which packages are current or outdated and providing upgrade recommendations with install commands.
Can check-sdk-updates analyze breaking changes before I update?
Yes. check-sdk-updates analyzes the version gap and release notes for each outdated package, helping you assess update risk and understand potential breaking changes before you decide to install a new version.
Are there new SDK versions available for Claude Code?
check-sdk-updates monitors Claude Code, Agent SDK, and Codex SDK for new releases by querying the npm registry. Run the skill to see the latest available versions and compare them against what you currently have installed.
What packages does check-sdk-updates monitor?
check-sdk-updates focuses on Claude Code, Claude Agent SDK, and Codex SDK. It checks the npm registry for the latest versions of these packages and compares them against your declared versions to identify outdated installations.
Is my SDK out of date?
check-sdk-updates generates a status table showing whether each of your SDKs is current or outdated by comparing against the latest npm registry releases. If any package is behind, the skill provides the available version and an install command to upgrade.
SKILL.md
rendered from the published skill — quoted content, verbatim
Check SDK Updates
Compare the versions of @anthropic-ai/claude-code, @anthropic-ai/claude-agent-sdk, and @openai/codex-sdk declared in package.json against the latest published version on npm.
Steps
- Read the
dependenciesblock ofpackage.jsonand extract the current declared range for each of: @anthropic-ai/claude-code@anthropic-ai/claude-agent-sdk-
@openai/codex-sdk -
Run the following command (single Bash call) to fetch latest versions in parallel:
bash npm view @anthropic-ai/claude-code version & \ npm view @anthropic-ai/claude-agent-sdk version & \ npm view @openai/codex-sdk version & \ waitMap the three lines of output back to the three packages in the order requested. -
For each package, compare the declared version (strip leading
^/~) with the latest. Report a compact table:
``` Package Current Latest
(truncated - see the full file via the links below)
Read as markdown · JSON record · Browse the source repository
File tree — 1 file
.claude/skills/check-sdk-updates/SKILL.md