Skip to main content
Find files matching a glob pattern (e.g., **/*.md, src/**/*.py).

Python SDK

HTTP API

Parameters

string
required
Glob pattern to match files against
string
default:"viking://"
Starting Viking URI to search from
integer
Maximum number of files to match

Response

string
Operation status (ok on success)
object
Match results
number
Execution time in seconds

CLI

Pattern Syntax

Glob patterns support the following wildcards:

Common Patterns

Performance Notes

  • ** patterns traverse recursively and may be slower on large directories
  • Use node_limit to restrict the number of matches
  • More specific patterns (e.g., src/**/*.py) are faster than broad patterns (e.g., **/*.py)