[codex] Order codex-mcp items by visibility#19526
Merged
aibrahim-oai merged 7 commits intomainfrom Apr 25, 2026
Merged
Conversation
Bojun-Vvibe
added a commit
to Bojun-Vvibe/oss-contributions
that referenced
this pull request
Apr 25, 2026
- openai/codex#19526 (merge-as-is): codex-mcp visibility-ordered re-export pass; pure mechanical move companion to the surface trim. lib.rs reorganized into runtime/config/snapshot/auth groups with mod declarations relegated to file bottom. - BerriAI/litellm#26495 (merge-after-nits): non-chat health-check handlers (image/video/embedding/transcription/rerank/ocr/batch) inherited spurious max_tokens injection, breaking dall-e-* and gpt-image-1 health checks with 400. Fix widens _filter_model_params with additional_keys_to_remove and threads a _non_chat_filter() closure through the affected handlers. PR carries 8800 lines of dev-branch drift that needs rebasing out before merge. - continuedev/continue#12206 (merge-as-is): two-line fix to the AGENTS.md → AGENT.md → CLAUDE.md fallback loop in loadMarkdownRules.ts. The break was outside the success branch so the loop stopped on iteration 1 unconditionally — CLAUDE.md was silently never loaded when AGENTS.md was missing. - ollama/ollama#15808 (merge-as-is): server/sched.go panic on model-mismatch-after-eviction held s.loadedMu across the panic, deadlocking deferred handlers. Patch unlocks before panic and pins ModelPath() to a local for message stability.
Bojun-Vvibe
added a commit
to Bojun-Vvibe/oss-contributions
that referenced
this pull request
Apr 25, 2026
Lede counter through-drip-38 → through-drip-40. Eight new rows spliced into per-repo tables for openai/codex, BerriAI/litellm, continuedev/continue, ollama/ollama, charmbracelet/crush, anomalyco/opencode, All-Hands-AI/OpenHands, cline/cline. PRs: openai/codex#19526, BerriAI/litellm#26495, continuedev/continue#12206, ollama/ollama#15808, charmbracelet/crush#2693, anomalyco/opencode#24259, OpenHands/OpenHands#14099, cline/cline#10403.
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Why
The visibility cleanup in the base PR reduced what
codex-mcpexposes, but several files still made reviewers read private support machinery before the public or crate-facing entry points. This ordering pass makes each file easier to scan: exported API first, crate-visible MCP internals next, then private helpers in breadth-first order from the higher-level MCP flows to leaf utilities.What Changed
codex-mcpexports so the runtime, configuration, snapshot, auth, and helper surfaces are grouped by visibility and reader importance.Verification
cargo check -p codex-mcp