Resolves the context corpus declared in your .fleet/config.yaml — a set of glob patterns over the markdown and context files in your repo that general-purpose agents read as input. fleet corpus resolve walks the project with git, matches every corpus pattern, and prints the exact file set an agent run would see, so you can confirm a corpus before pointing agents at it.
The corpus IS your git repo: resolution runs git ls-files, so it honors .gitignore automatically and includes both tracked and new-but-not-ignored files. Patterns are slash-separated globs relative to the repo root; ** matches across directory boundaries (for example, docs/**/*.md). Results are sorted and deduplicated. corpus is read-only and never modifies your files.