Fetches and displays Claude changelog entries for latest or specific versions, filtered by date, category, or importance, in console, JSON, or Markdown formats.
npx claudepluginhub fortiumpartners/ai-meshai-mesh/# /claude-changelog Command Documentation ## Overview The `/claude-changelog` command enables developers to track Claude updates and new features directly within Claude Code, eliminating the need for manual changelog checking and context switching. **Time Savings**: 80% reduction (30 min/week → 6 min/week) **Response Time**: <5 seconds for network fetch, <1 second for cache hit **Accuracy**: ≥95% parsing and categorization accuracy ## Quick Start ## Command Syntax ## Options ### --version, -v `<version>` Fetch changelog for a specific version. **Format**: X.Y.Z or "latest" **Exa...
/whats-newReviews Claude Code changelog updates since last check, fetches relevant blog announcements, analyzes project fit, presents tailored summary, and updates version tracking.
/upgrade-claude-codeAnalyzes Claude Code settings against mastery levels and checklists, researches latest trends via web search, and proposes prioritized upgrades with dashboard.
/update-claudemdAnalyzes recent git changes across files, configs, APIs, and DB, then generates updated CLAUDE.md preserving core content while documenting new features and updates.
/devkit.generate-changelogGenerates and updates project CHANGELOG.md from Git history in Keep a Changelog format with Conventional Commits and auto-version detection from build files. Supports init, update, release, preview, validate actions.
/changelog-demo-commandDemonstrates changelog automation features working independently, bypassing Claude review bot for faster testing.
Share bugs, ideas, or general feedback.
The /claude-changelog command enables developers to track Claude updates and new features directly within Claude Code, eliminating the need for manual changelog checking and context switching.
Time Savings: 80% reduction (30 min/week → 6 min/week) Response Time: <5 seconds for network fetch, <1 second for cache hit Accuracy: ≥95% parsing and categorization accuracy
# Get latest changelog
/claude-changelog
# Get specific version
/claude-changelog --version 3.5.0
# Get changes from last 7 days
/claude-changelog --since 7d
# Filter by breaking changes only
/claude-changelog --category breaking
# Get high-impact changes in JSON format
/claude-changelog --important --format json
/claude-changelog [OPTIONS]
<version>Fetch changelog for a specific version.
Format: X.Y.Z or "latest" Examples:
--version 3.5.0--version 3.4.2-v latest<date|relative>Show changes since a specific date or relative time period.
Formats:
Examples:
--since 2025-10-01 - Since October 1st, 2025--since 7d - Last 7 days--since 2w - Last 2 weeks-s 1m - Last month<category>Filter changelog by feature category. Supports multiple categories (comma-separated).
Valid Categories:
breaking - Breaking changes requiring migrationnew - New features and capabilitiesenhancement - Improvements to existing featuresperformance - Performance optimizationssecurity - Security updates and patchesdeprecation - Deprecated featuresbugfix - Bug fixesExamples:
--category breaking--category breaking,new-c securityShow only high-impact changes.
Usage:
/claude-changelog --important
/claude-changelog -i --format json
<format>Specify output format.
Valid Formats:
console (default) - Human-readable console output with colors and symbolsjson - Machine-readable JSON formatmarkdown - Markdown format for documentationExamples:
--format console--format json-f markdownForce refresh and ignore cache.
Usage:
/claude-changelog --refresh
/claude-changelog -r --version 3.5.0
When to use:
Display help information.
Usage:
/claude-changelog --help
/claude-changelog -h
═══════════════════════════════════════════════════════════════
Claude 3.5.0 Release Notes
Released: October 15, 2025
═══════════════════════════════════════════════════════════════
🔴 BREAKING CHANGES
────────────────────────────────────────────────────────────
• Remove Legacy Auth [HIGH IMPACT]
Deprecated authentication methods removed
⚠️ Migration: Use OAuth 2.0 flow
✨ NEW FEATURES
────────────────────────────────────────────────────────────
• Extended Context Window [HIGH IMPACT]
Support for up to 200K tokens in API requests
⚡ PERFORMANCE IMPROVEMENTS
────────────────────────────────────────────────────────────
• Faster Response Times
30% reduction in latency
───────────────────────────────────────────────────────────────
Summary:
Total Changes: 5
Breaking: 1
New Features: 1
Performance: 1
Security: 1
Bug Fixes: 1
High Impact: 3
───────────────────────────────────────────────────────────────
{
"version": "3.5.0",
"releaseDate": "2025-10-15",
"features": [
{
"id": "feature-1",
"title": "Extended Context Window",
"category": "new",
"impact": "high",
"description": "Support for up to 200K tokens",
"migrationGuidance": null,
"confidence": 0.95
}
],
"metadata": {
"cachedAt": "2025-11-03T10:00:00Z",
"source": "https://docs.anthropic.com/en/release-notes/",
"parsingConfidence": 0.95
}
}
# Claude 3.5.0
**Released:** October 15, 2025
## 🔴 Breaking Changes
- **Remove Legacy Auth** **(High Impact)**
Deprecated authentication methods removed
> **Migration:** Use OAuth 2.0 flow
## ✨ New Features
- **Extended Context Window** **(High Impact)**
Support for up to 200K tokens in API requests
---
## Summary
Total Changes: 5
Breaking: 1
New Features: 1
High Impact: 3
# Check what's new since yesterday
/claude-changelog --since 1d
# Review all changes from last sprint (2 weeks)
/claude-changelog --since 2w --important
# Find all breaking changes
/claude-changelog --category breaking --format markdown
# Get machine-readable changelog for automation
/claude-changelog --format json --version latest
# Check recent security updates
/claude-changelog --category security --since 30d
~/.ai-mesh/cache/changelog/Cache Operations:
--refresh flag forces immediate network fetchThe command provides helpful error messages and suggestions:
❌ ERROR:
Network connection failed
💡 SUGGESTION:
Check your network connection or try again later
📦 Cache fallback available - command will attempt to use cached data
Network Errors:
Validation Errors:
Parsing Errors:
# Check for breaking changes in pipeline
if /claude-changelog --category breaking --format json | jq '.features | length' > 0; then
echo "Breaking changes detected - review required"
exit 1
fi
# Send daily digest
/claude-changelog --since 1d --format markdown > changelog.md
send_to_slack changelog.md
/help to see available commands--refresh to clear cache--format json for structured outputrm -rf ~/.ai-mesh/cache/changelog/--refresh to bypass cacheFor issues, feature requests, or questions:
/help within Claude CodeThis documentation is for /claude-changelog v1.0 (Sprint 1 MVP).
Last Updated: November 2025