Skip to content

Instantly share code, notes, and snippets.

@ernesto-jimenez
Last active August 1, 2025 20:20
Show Gist options
  • Save ernesto-jimenez/9134de9e997ea073749afe2e8e849348 to your computer and use it in GitHub Desktop.
Save ernesto-jimenez/9134de9e997ea073749afe2e8e849348 to your computer and use it in GitHub Desktop.
Have Claude Code let you know when it needs your input

If you are like me and usually let Claude Code run while you do something else, you can use hooks to let you know when it needs your input.

The following hook will use your mac's text-to-speech CLI tool to hear when Claude is waiting for you.

See Claude Code Hooks docs

{
"hooks": {
"Notification": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "jq -r .message | say"
}
]
}
]
}
}
@mikestaub
Copy link

You can also use this if you want a more realistic voice: https://github.com/CodeCraftersLLC/local-voice-mcp

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment