v1.7.15
What's New
OpenCode SDD Post-Check Fix (Windows / WSL)
Multiple users reported a false failure when installing with OpenCode on Windows and WSL:
missing sdd-apply sub-agent — overlay was not injected
The root cause was a race condition: gentle-ai was writing opencode.json via atomic rename and then immediately re-reading it from disk to verify the overlay. On NTFS and WSL-style filesystems, that re-read could observe stale content and incorrectly report the injection as failed — even though the file was written correctly.
This release fixes the post-check to validate the merged content in memory instead of re-reading from disk, eliminating the false negative entirely.
Changelog
- e8b03f2 fix(sdd): avoid opencode post-check disk race