1 Commits

Author SHA1 Message Date
Mateusz Tymek
44f6b5e8de v0.0.1 2026-02-02 19:03:44 +01:00
4 changed files with 3 additions and 21 deletions

View File

@@ -69,19 +69,3 @@ Currently, this is work-in-progress feature with some limitations:
<img src="./assets/plugin_settings.png" alt="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.

View File

@@ -1,7 +1,7 @@
{
"id": "opencode-obsidian",
"name": "OpenCode-Obsidian",
"version": "0.1.0",
"version": "0.0.1",
"minAppVersion": "1.4.0",
"description": "Embed OpenCode AI assistant in Obsidian for AI-powered note management",
"author": "mtymek",

View File

@@ -1,6 +1,6 @@
{
"name": "obsidian-opencode",
"version": "0.1.0",
"version": "0.0.1",
"description": "Embed OpenCode AI assistant in Obsidian",
"main": "main.js",
"scripts": {

View File

@@ -85,9 +85,7 @@ export class ProcessManager {
cwd: this.projectDirectory,
env: { ...process.env, NODE_USE_SYSTEM_CA: "1" },
stdio: ["ignore", "pipe", "pipe"],
shell: true,
windowsHide: true,
detached: (process.platform !== "win32"),
detached: true,
}
);