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