GLOB_TOOL_DESCRIPTION = 'Find files matching a glob pattern, returning absolute paths.\n\nSupports `*` (
any characters within a path segment), `**` (any directories), `?` (single character), `[abc]` (one character from a set), and `{a,
b}` (alternatives), e.g. `*.py`, `src/**/*.py`, `*.{yml,
yaml}`.\n\nA pattern without `/` matches the file name at any depth under the search root (`*.py` matches `src/app/main.py`). A pattern containing `/` matches the search-root-relative path (`src/**/*.py`). A leading `/` anchors to the search root (`/*.py` matches only top-level Python files).\n\nLeading-dot names are only matched when the pattern segment itself starts with `.` (use `.env`,
or `.github/**/*.yml`
). Because `**` will not descend into dot-directories, the bare form `*.yml` is *broader* than `**/*.yml` and is usually what you want.'