v0.2.1
Fix: bridge failed to launch under an arbitrary working directory
resolvePobApiDir() effectively anchored on process.cwd(), so MCP clients that spawn the server with cwd=C:\WINDOWS\system32 (e.g. Claude Desktop) resolved the bootstrap script to a non-existent path and luajit exited 1 (cannot open …\pob-api\bootstrap.lua) on every lua_start / load / save.
Now anchored on the entry script (process.argv[1]), which is cwd-independent. Verified by launching the bridge from C:\WINDOWS\system32; 270/270 tests pass.
Full changelog: v0.2.0...v0.2.1