Agent Skills: /bun:outdated

Check for outdated dependencies

UncategorizedID: laurigates/claude-plugins/bun-outdated

Install this agent skill to your local

pnpm dlx add-skill https://github.com/laurigates/claude-plugins/tree/HEAD/typescript-plugin/skills/bun-outdated

Skill Files

Browse the full folder contents for bun-outdated.

Download Skill

Loading file tree…

typescript-plugin/skills/bun-outdated/SKILL.md

Skill Metadata

Name
bun-outdated
Description
Check for outdated dependencies

/bun:outdated

Check which dependencies have newer versions available.

Execution

bun outdated

Output Format

Shows table with:

  • Package name
  • Current version
  • Wanted version (within semver range)
  • Latest version

Follow-up Actions

Update within ranges:

bun update

Update to latest (ignore ranges):

bun update --latest

Interactive update:

bun update --interactive

Update specific package:

bun update <package>

Post-check

  1. Report count of outdated packages
  2. Highlight major version updates (breaking changes)
  3. Suggest bun update or bun update --latest based on findings