Fetch the latest changelogs for popular AI coding assistants.
test-video.mp4
| Source | Command | Tool |
|---|---|---|
claude |
aic claude |
Claude Code (Anthropic) |
codex |
aic codex |
Codex CLI (OpenAI) |
opencode |
aic opencode |
OpenCode (SST) |
gemini |
aic gemini |
Gemini CLI (Google) |
copilot |
aic copilot |
Copilot CLI (GitHub) |
Want to add another tool? Missing your favorite AI coding assistant? Open an issue or submit a PR!
brew install arimxyer/tap/aicscoop bucket add arimxyer https://github.com/arimxyer/scoop-bucket
scoop install aicgo install github.com/arimxyer/aic@latestgit clone https://github.com/arimxyer/aic
cd aic
go build -o aicaic <source> [flags]
aic latest [flags]
aic status [flags]aic claude # Latest Claude Code changelog
aic codex -json # Latest Codex changelog as JSON
aic opencode -list # List all OpenCode versions
aic gemini -version 0.1.0 # Specific Gemini CLI version
aic copilot -md # Latest Copilot changelog as markdown
aic latest # All releases from last 24 hours
aic status # Status table of all tools
aic claude -web # Open Claude changelog in browserShow a status table of all tools with version info, update recency, and release frequency.
$ aic status
┌──────────────────────┬─────┬──────────────┬──────────────┬────────────┬─────────────────────┐
│ Tool │ 24h │ Version │ Previous │ Updated │ Vers. Release Freq. │
├──────────────────────┼─────┼──────────────┼──────────────┼────────────┼─────────────────────┤
│ OpenAI Codex │ [✓] │ 0.92.0 │ 0.92.0-al... │ 6h ago │ ~3h │
│ Claude Code │ [✓] │ 2.1.20 │ 2.1.19 │ 14h ago │ - │
│ Gemini CLI │ [✓] │ 0.27.0-ni... │ 0.27.0-ni... │ 17h ago │ ~15h │
│ GitHub Copilot CLI │ │ 0.0.395 │ 0.0.394 │ 1d ago │ ~18h │
│ OpenCode │ │ 1.1.36 │ 1.1.35 │ 1d ago │ ~13h │
└──────────────────────┴─────┴──────────────┴──────────────┴────────────┴─────────────────────┘
- 24h: Shows
[✓]if updated in the last 24 hours - Version/Previous: Current and previous version numbers
- Updated: Relative time since last release
- Vers. Release Freq.: Average time between releases (calculated from last 10 releases)
Show releases from all sources in the last 24 hours, sorted by release date (newest first).
$ aic latest
OpenAI Codex 0.76.0 (2025-12-19)
----------------------------------------
[New Features]
* Add a macOS DMG build target
* Add /ps command
...
OpenCode 1.0.170 (2025-12-19)
----------------------------------------
[TUI]
* User messages as markdown with toggle
...
Claude Code 2.0.73 (2025-12-19)
----------------------------------------
* Added clickable `[Image #N]` links
...
| Flag | Description |
|---|---|
-json |
Output as JSON |
-md |
Output as markdown |
-list |
List all available versions |
-version <ver> |
Fetch specific version |
-web |
Open changelog source in browser |
-v |
Show aic version |
-h |
Show help |
Output includes release date and section headers (when available):
$ aic opencode
OpenCode 1.0.170 (2025-12-19)
----------------------------------------
[TUI]
* User messages as markdown with toggle
* Implement smooth scrolling for autocomplete dropdown
[Desktop]
* Fixed error handling
* Separate prompt history for shell
$ aic opencode -json
{
"version": "1.0.170",
"released_at": "2025-12-19T15:30:00Z",
"sections": [
{
"name": "TUI",
"changes": [
"User messages as markdown with toggle",
"Implement smooth scrolling..."
]
},
{
"name": "Desktop",
"changes": [
"Fixed error handling",
"Separate prompt history for shell"
]
}
]
}
$ aic opencode -list
1.0.170
1.0.169
1.0.168
...
MIT