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
--verboseto stream git and installer output in real time - Requires
gitin$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 foridx 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 cloneover curl-pipe for auditability; explicit required editor argument - New
SkillsInstallerport withOSSkillsInstalleradapter SkillsInstallServicefully unit-tested with gomock