v0.3.0

Released: May 13, 2026 ยท Download


โœจ New features

idx skills install โ€” editor skill installer

New command to install idx skills into your AI-powered editor. Supports GitHub Copilot, Claude Code, and Cursor.

idx skills install claude
idx skills install copilot --verbose
idx skills install cursor
  • Clones the skills repository into a temp directory, runs the install script, and cleans up automatically
  • Silent by default โ€” pass --verbose to stream git and installer output in real time
  • Requires git in $PATH

Styled version output

idx version now renders an ASCII art logo alongside version, tagline, build date, and current directory.

 โ–ˆโ–ˆโ•—โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ•— โ–ˆโ–ˆโ•—  โ–ˆโ–ˆโ•—   IDX v0.3.0
 โ–ˆโ–ˆโ•‘โ–ˆโ–ˆโ•”โ•โ•โ–ˆโ–ˆโ•—โ•šโ–ˆโ–ˆโ•—โ–ˆโ–ˆโ•”โ•   fast BM25 code search
 โ–ˆโ–ˆโ•‘โ–ˆโ–ˆโ•‘  โ–ˆโ–ˆโ•‘ โ•šโ–ˆโ–ˆโ–ˆโ•”โ•    2026-05-13  03:24 UTC
 โ–ˆโ–ˆโ•‘โ–ˆโ–ˆโ•‘  โ–ˆโ–ˆโ•‘ โ–ˆโ–ˆโ•”โ–ˆโ–ˆโ•—    ~/my-project
 โ–ˆโ–ˆโ•‘โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ•”โ•โ–ˆโ–ˆโ•”โ• โ–ˆโ–ˆโ•—
 โ•šโ•โ•โ•šโ•โ•โ•โ•โ•โ• โ•šโ•โ•  โ•šโ•โ•

CLI command groups

Commands are now organized into named groups in the help output.

Group Commands
Index Setup init, destroy
Index Sync sync, watch, daemon, status
Search search, inspect
About version
Tools skills

Init cancellation support

The init progress TUI now handles Ctrl+C cleanly โ€” context propagation ensures no partial state is left behind.


๐Ÿ› Improvements

  • Clearer error messages for unindexed directories โ€” lists affected paths and suggests idx sync
  • Refined search result text formatting and JSON output consistency
  • Cleaner error propagation in CLI dispatch

๐Ÿ“– Documentation

  • New docs/features/skills.md โ€” full contract for idx skills install
  • Updated docs/features/version.md โ€” documents the new logo output
  • Updated docs/features/errors.md โ€” skills errors and updated command list

๐Ÿ—๏ธ Architecture

  • ADR 0013 โ€” skills install uses git clone over curl-pipe for auditability; explicit required editor argument
  • New SkillsInstaller port with OSSkillsInstaller adapter
  • SkillsInstallService fully unit-tested with gomock