Skip to content

@webpresso/agent-kit@0.8.5

Choose a tag to compare

@github-actions github-actions released this 09 May 09:07
· 731 commits to main since this release
b02ccc3

Patch Changes

  • da9ffeb: fix(mcp/run-command): prepend {cwd}/node_modules/.bin to PATH before spawning

    runCommand now mirrors npm/pnpm script execution: when a cwd is provided, it
    injects {cwd}/node_modules/.bin at the front of the child process PATH. This
    ensures project-local binaries (oxlint, tsc, etc.) resolve without a global
    install, matching the behaviour of npm 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 using just rather than a root-level pnpm lint script.