Bun outdated: check which deps have newer versions. Use when auditing freshness, spotting major updates, or deciding between bun update and bun update --latest.
Scanned 9/3/2026
Install to Claude Code
npx -y skills add laurigates/claude-plugins --skill bun-outdated --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Bun Outdated?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/laurigates-bun-outdated)More formats (shields.io, HTML) on the badges page.
---
description: "Bun outdated: check which deps have newer versions. Use when auditing freshness, spotting major updates, or deciding between bun update and bun update --latest."
args: "[package]"
argument-hint: "Optional package name to check specific dependency"
allowed-tools: Bash, Read
created: 2025-12-20
modified: 2026-05-09
reviewed: 2026-04-25
name: bun-outdated
---
# /bun:outdated
Check which dependencies have newer versions available.
## When to Use This Skill
| Use this skill when... | Use bun-lockfile-update instead when... |
|---|---|
| Auditing dependency freshness without making changes | Actually updating dependencies and regenerating bun.lockb |
| Spotting major version updates before deciding to upgrade | Running `bun update` / `bun update --latest` workflows |
| Reviewing a single package's available versions | Resolving lockfile conflicts or security patch updates |
## Execution
```bash
bun outdated
```
## Output Format
Shows table with:
- Package name
- Current version
- Wanted version (within semver range)
- Latest version
## Follow-up Actions
**Update within ranges:**
```bash
bun update
```
**Update to latest (ignore ranges):**
```bash
bun update --latest
```
**Interactive update:**
```bash
bun update --interactive
```
**Update specific package:**
```bash
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
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!