Appearance
metaplay llm-docs glob PATTERN [flags]
[preview] List files in the llm-docs payload matching a glob pattern (machine use only)
Appearance
[preview] List files in the llm-docs payload matching a glob pattern (machine use only)
metaplay llm-docs glob PATTERN [flags] PREVIEW: This command is in preview and subject to change!
List files in the llm-docs payload matching a glob pattern, one per line. Intended for machine consumption (e.g. AI coding agents); the output format is not stable for human-driven workflows.
# All markdown files anywhere in the payload (recursive via **).
metaplay llm-docs glob "**/*.md"
# All C# sources under a specific subtree.
metaplay llm-docs glob "**/*.cs" --path MetaplaySDK/Backend
# Only top-level entries in a subdirectory (non-recursive).
metaplay llm-docs glob "*.md" --path docs
# Match both files and directories using the bare '*' pattern.
metaplay llm-docs glob "*" --path docs/cloud-deployments
# Find a specific file by name anywhere in the payload.
metaplay llm-docs glob "**/PlayerActorBase.cs"--path <string>: Subdirectory of the docs payload to search in--color <string>: Should the output be colored (yes/no/auto)? [env: METAPLAYCLI_COLOR] (default: auto)--project <string>: Path to the to project directory (where metaplay-project.yaml is located)--skip-version-check: Skip the check for a new CLI version being available--verbose: Enable verbose logging, useful for troubleshooting [env: METAPLAYCLI_VERBOSE]