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 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 latest -json # Recent releases as JSONShow 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 |
-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