Hookyard
Back to directory
Stopdemo

Git Status on Stop

Print git status when the agent finishes.

Quick orientation cue at end of each turn - shows what changed before you re-prompt.

Install via CLI

npx hookyard install git-status-on-stop

Or paste into ~/.claude/settings.json

{
  "hooks": {
    "Stop": [
      {
        "hooks": [
          {
            "type": "command",
            "command": "git status -s 2>/dev/null || true"
          }
        ]
      }
    ]
  }
}
#git#automation

By developersdigest