get_status
Retrieve Git repository status information using the specified absolute path to analyze changes and prepare for commit message generation.
Instructions
Gitのステータス情報を取得します
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Gitリポジトリの絶対パス |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Gitリポジトリの絶対パス",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}