fix: When AGENTS.md does not exist, the traversal will be interrupted…#12206
Open
SpicyRabbitLeg wants to merge 1 commit intocontinuedev:mainfrom
Open
fix: When AGENTS.md does not exist, the traversal will be interrupted…#12206SpicyRabbitLeg wants to merge 1 commit intocontinuedev:mainfrom
SpicyRabbitLeg wants to merge 1 commit intocontinuedev:mainfrom
Conversation
… and the issue of AGENT.md/CLAUDE.md will not be further checked.
Contributor
|
I have read the CLA Document and I hereby sign the CLA You can retrigger this bot by commenting recheck in this Pull Request. Posted by the CLA Assistant Lite bot. |
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 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.
… and the issue of AGENT.md/CLAUDE.md will not be further checked.
Description
When AGENTS.md does not exist, the traversal will be interrupted and the issue of AGENT.md/CLAUDE.md will not be further checked.
Summary by cubic
Prevent premature loop exit when
AGENTS.mdis missing by only breaking after a successful read incore/config/markdown/loadMarkdownRules.ts. The loader now properly falls back toAGENT.mdandCLAUDE.md.Written for commit 4f58180. Summary will update on new commits.