fix: prioritize OPENCODE_CONFIG_DIR for AGENTS.md#11536
Merged
rekram1-node merged 2 commits intoanomalyco:devfrom Feb 4, 2026
Merged
fix: prioritize OPENCODE_CONFIG_DIR for AGENTS.md#11536rekram1-node merged 2 commits intoanomalyco:devfrom
rekram1-node merged 2 commits intoanomalyco:devfrom
Conversation
Contributor
|
The following comment was made by an LLM, it may be inaccurate: Based on my search, I found one potentially related PR: Related PR found:
The other results (PR #952 and #9657) appear to be about AGENTS.md recursive loading and subdirectory rule loading, which are different features rather than duplicates of the prioritization fix. |
rekram1-node
reviewed
Feb 3, 2026
6fe834f to
d971c42
Compare
d971c42 to
b6cea0f
Compare
mvclaudianobj
pushed a commit
to mvclaudianobj/markscode
that referenced
this pull request
Feb 4, 2026
ishaksebsib
pushed a commit
to ishaksebsib/opencode
that referenced
this pull request
Feb 4, 2026
ishaksebsib
pushed a commit
to ishaksebsib/opencode
that referenced
this pull request
Feb 4, 2026
dmae97
pushed a commit
to dmae97/opencode
that referenced
this pull request
Feb 5, 2026
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.
Summary
When
OPENCODE_CONFIG_DIRis set, the AGENTS.md from that directory should be loaded instead of the global one. Currently, global~/.config/opencode/AGENTS.mdis always checked first and the loop breaks, so profile-specific AGENTS.md is never reached.Changes
OPENCODE_CONFIG_DIRfirst inglobalFiles()and return early if setTest Plan
echo "# Global" > ~/.config/opencode/AGENTS.mdmkdir -p ~/.config/opencode/profiles/work && echo "# Work" > ~/.config/opencode/profiles/work/AGENTS.mdOPENCODE_CONFIG_DIR=~/.config/opencode/profiles/workHow I verified it is working:
OPENCODE_CONFIG_DIR=~/.config/opencode/profiles/work bun dev.hiin opencode.Fixes #11534