anomalyco / anomalyco/opencode
glob never matches hidden files (no --hidden), inconsistent with read/grep
Open
@kitlangton is already working on this.
Since Aug 28, 2026.
- Dominant language
- TypeScript
- Stars
- 209k
- Forks
- 27.5k
- PR merge metrics
- PR metrics pending
Description
Describe the bug
The glob tool never matches hidden files. It calls ripgrep.glob without hidden: true, so rg omits --hidden; rg's hidden-file filtering happens before glob matching, so even an explicit pattern like .github/workflows/*.yml or .eslintrc.json returns "No files found".
This is inconsistent with read/ls, which do surface dotfiles, and with grep, which passes --hidden.
Suggested fix
Pass --hidden for glob (or expose it as an option), so explicit dotfile patterns match.
Environment
- opencode version: latest dev
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.