fix(pi): detect package server via PI_CODING_AGENT#778
Merged
mksglu merged 1 commit intoJun 4, 2026
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #760. Thanks for the clean repro @jetnet.
This treats
PI_CODING_AGENT=trueas a high-confidence Pi signal, so Pi's package-spawned MCP server does not fall through to the stale~/.claudedirectory heuristic.Validation:
npm run typechecknpm run assert-bundlevitest run tests/adapters/detect.test.ts tests/adapters/detect-config-dir.test.ts tests/adapters/pi-adapter.test.ts tests/adapters/pi-mcp-bridge-env-scrub.test.ts tests/adapters/pi-mcp-bridge.test.ts~/.piand~/.claude;ctx_indexwrote under~/.pi, not~/.claudeNote: I also tried full
npm testlocally. It still has unrelated Windows/Codex-shell failures outside this patch (symlink EPERM, Rust linker, shell env/PWD), so I used the focused Pi/detect path plus e2e here.cc @mksglu