提交

提交图

4 次代码提交

作者 SHA1 备注 提交日期
Dominik Kundel 741dd5104d ci: add pull request workflow for tests and build 2026-03-31 12:52:24 -07:00
Omid Rajabi cf6f8515d8 fix: add shell: true on Windows so spawnSync can resolve .cmd shims (#13)
On Windows, Node.js `spawnSync` without `shell: true` uses
`CreateProcess`, which only resolves `.exe` files. npm installs global
tools (like `codex`) as `.cmd` shims, so `spawnSync("codex", ...)`
returns ENOENT even when codex is correctly installed and on PATH.

Adding `shell: process.platform === "win32"` routes through `cmd.exe`
on Windows, which properly resolves `.cmd`, `.bat`, and PATHEXT entries.
No behavior change on macOS/Linux since the condition evaluates to false.
2026-03-30 18:54:31 -07:00
Kyle Kelley f4d65d9641 docs: update README with plugin reload and setup instructions (#2)
Added instructions for reloading plugins and setup command.
2026-03-30 11:45:15 -07:00
Dominik Kundel c69527eb18 Initial commit
Co-authored-by: Codex <noreply@openai.com>
v1.0.0
2026-03-30 09:42:33 -07:00