git_view_commits
Analyze commits in a given range and retrieve repository details as YAML. Use when you have an explicit commit range to inspect.
Instructions
Analyze commits in a range and return repository information as YAML. Use this when you have an explicit commit range (e.g. HEAD~3..HEAD); use git_branch_info instead to analyze the current branch against a base branch without computing the range yourself. Mirrors omni-dev git commit message view.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| range | No | Commit range to analyze (e.g., `HEAD~3..HEAD`, `abc123..def456`). Defaults to `HEAD` when omitted. | |
| repo_path | No | Path to the git repository. Must be absolute when provided. Defaults to the current working directory. |