Fetch the latest changelogs for popular AI coding assistants.
aic-demo.mp4
| Source | Command | Tool |
|---|---|---|
claude |
aic claude |
Claude Code (Anthropic) |
codex |
aic codex |
Codex CLI (OpenAI) |
opencode |
aic opencode |
OpenCode |
gemini |
aic gemini |
Gemini CLI (Google) |
copilot |
aic copilot |
Copilot CLI (GitHub) |
openclaw |
aic openclaw |
OpenClaw |
kimi |
aic kimi |
Kimi CLI (Moonshot AI) |
qwen |
aic qwen |
Qwen Code (Alibaba) |
goose |
aic goose |
Goose (Block) |
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 configaic 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 claude --pick # Interactive version picker
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 │ Installed │ Latest │ Updated │ Release Freq. │
├────────────────────┼─────┼───────────┼──────────┼─────────┼───────────────┤
│ Claude Code │ ✓ │ 2.1.42 │ 2.1.42 │ 1d ago │ ~1d │
│ OpenAI Codex │ ✓ │ 0.92.0 │ 0.92.0 │ 6h ago │ ~3h │
│ Gemini CLI │ │ 0.27.0 │ 0.28.0 │ 2d ago │ ~15h │
│ OpenCode │ │ - │ 1.1.36 │ 3d ago │ ~13h │
└────────────────────┴─────┴───────────┴──────────┴─────────┴───────────────┘
- 24h: Shows
✓if updated in the last 24 hours - Installed: Locally installed version (detected from PATH), or
-if not found - Latest: Most recent release version
- Updated: Relative time since last release
- 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
...
Interactive picker to enable/disable sources. Uses arrow keys to navigate, space to toggle, enter to save.
| Short | Long | Description |
|---|---|---|
-j |
--json |
Output as JSON |
-m |
--md |
Output as markdown |
-l |
--list |
List all available versions |
-p |
--pick |
Interactive version picker |
--version <ver> |
Fetch specific version | |
-w |
--web |
Open in browser |
| Short | Long | Description |
|---|---|---|
-j |
--json |
Output as JSON |
-w |
--web |
Open in browser |
| Short | Long | Description |
|---|---|---|
-v |
--version |
Show aic version |
-h |
--help |
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