git_view_commits
Analyze commits within a specified range and retrieve repository information in YAML format. Use when you have an explicit commit range like HEAD~3..HEAD.
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. |