-
Notifications
You must be signed in to change notification settings - Fork 9.8k
fix: prioritize OPENCODE_CONFIG_DIR for AGENTS.md #11536
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
rekram1-node
merged 2 commits into
anomalyco:dev
from
lgladysz:fix/opencode-config-dir-agents-priority
Feb 4, 2026
Merged
fix: prioritize OPENCODE_CONFIG_DIR for AGENTS.md #11536
rekram1-node
merged 2 commits into
anomalyco:dev
from
lgladysz:fix/opencode-config-dir-agents-priority
Feb 4, 2026
+106
−5
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
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
fanjia1024
pushed a commit
to fanjia1024/opencode
that referenced
this pull request
Feb 10, 2026
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