@webpresso/agent-kit@0.8.5
·
731 commits
to main
since this release
Patch Changes
-
da9ffeb: fix(mcp/run-command): prepend
{cwd}/node_modules/.binto PATH before spawningrunCommandnow mirrors npm/pnpm script execution: when acwdis provided, it
injects{cwd}/node_modules/.binat the front of the child process PATH. This
ensures project-local binaries (oxlint, tsc, etc.) resolve without a global
install, matching the behaviour ofnpm run/pnpm run.Previously the MCP server inherited Claude Code's PATH, which does not include
node_modules/.bin. Any tool missing from the global PATH (e.g. oxlint installed
only locally) would ENOENT and fall through to the pnpm fallback, which in turn
fails on repos usingjustrather than a root-levelpnpm lintscript.