From 23832461a73f734f53e66d4674c086bffd68bb55 Mon Sep 17 00:00:00 2001 From: Gerkinfeltser Date: Tue, 3 Feb 2026 16:41:18 -0600 Subject: [PATCH] Add Windows troubleshooting section for PATH issues Documents the workaround for Windows users who encounter "Executable not found at 'opencode'" error due to Electron not fully inheriting PATH environment variable. --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index b1646e9..6f20421 100644 --- a/README.md +++ b/README.md @@ -69,3 +69,19 @@ Currently, this is work-in-progress feature with some limitations: Available plugin settings +## Windows Troubleshooting + +If you see "Executable not found at 'opencode'" despite opencode being installed: + +1. Find your opencode.cmd path: + ``` + where opencode.cmd + ``` + +2. Configure the full path in plugin settings: + ``` + C:\Users\{username}\AppData\Roaming\npm\opencode.cmd + ``` + +This is due to Electron/Obsidian not fully inheriting PATH on Windows. +