Context
A2-ai/dvs2#159 added documentation to dvs_add and dvs_get clarifying that globs use a literal path separator:
*.csv only matches files in the target directory and will not match subdir/file.csv. Use **/*.csv to match recursively across subdirectories.
What to do
The globbing demo should surface this behavior explicitly — ideally with a concrete example showing:
*.csv matching only top-level files
**/*.csv matching across subdirectories
This is a common footgun and worth calling out in the demo so users discover it before hitting it in practice.
Context
A2-ai/dvs2#159 added documentation to
dvs_addanddvs_getclarifying that globs use a literal path separator:What to do
The globbing demo should surface this behavior explicitly — ideally with a concrete example showing:
*.csvmatching only top-level files**/*.csvmatching across subdirectoriesThis is a common footgun and worth calling out in the demo so users discover it before hitting it in practice.