Opus is so slow these days what I really want is a bell sound to ring when it's done. I kick off some task and then it takes 3-12 minutes to complete. It's wrong, so I tell it to revert and try again with slightly different instructions.
Show HN: Claudoro, Pomodoro timer embedded in the Claude Code statusline
21–30 of 40 posts
Re: Show HN: Claudoro, Pomodoro timer embedded in the Claude Code statusline
#22I like this. Small tools inside the workflow feel much more useful than separate productivity apps I have to remember to open.
Re: Show HN: Claudoro, Pomodoro timer embedded in the Claude Code statusline
#23Love that it follows you from terminal to terminal, super useful. Though, if you're following Cal Newport-ian rules, watching over multiple agents doing their work is no longer a 25 minute "deep work" Pomodoro, and god knows Newport has been complaining about it [1] [1]: https://calnewport.com/avoiding-digital-productivity-traps/#...
Re: Show HN: Claudoro, Pomodoro timer embedded in the Claude Code statusline
#24Opus is so slow these days what I really want is a bell sound to ring when it's done. I kick off some task and then it takes 3-12 minutes to complete. It's wrong, so I tell it to revert and try again with slightly different instructions.
Re: Show HN: Claudoro, Pomodoro timer embedded in the Claude Code statusline
#25I like this. Small tools inside the workflow feel much more useful than separate productivity apps I have to remember to open.
I ended up building a vs-code/IDE style workflow for claude that has a "file browser" of CC sessions in the left column, sorted by repo, and then terminal in the right column, and then I've been tacking features like this onto it
Re: Show HN: Claudoro, Pomodoro timer embedded in the Claude Code statusline
#26Opus is so slow these days what I really want is a bell sound to ring when it's done. I kick off some task and then it takes 3-12 minutes to complete. It's wrong, so I tell it to revert and try again with slightly different instructions.
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "afplay ~/.claude/hooks/chime.wav",
"async": true
},Re: Show HN: Claudoro, Pomodoro timer embedded in the Claude Code statusline
#27Opus is so slow these days what I really want is a bell sound to ring when it's done. I kick off some task and then it takes 3-12 minutes to complete. It's wrong, so I tell it to revert and try again with slightly different instructions.
Re: Show HN: Claudoro, Pomodoro timer embedded in the Claude Code statusline
#28Opus is so slow these days what I really want is a bell sound to ring when it's done. I kick off some task and then it takes 3-12 minutes to complete. It's wrong, so I tell it to revert and try again with slightly different instructions.
You can use edit your settings.json in ~/.claude and put a hook for it like this: "Stop": [ { "hooks": [ { "type": "command", "command": "afplay ~/.claude/hooks/chime.wav", "async": true },
Ideally you are only notified when the main agent stops, the main agent has a question, or a subagent has a question.
I created a script that figures out if any of those states apply before emitting a macOS notification and then called it in each hook:
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "script.sh",
"timeout": 10
}
]
}
],
"PreToolUse": ...
"PermissionRequest": ...
"Elicitation": ...Re: Show HN: Claudoro, Pomodoro timer embedded in the Claude Code statusline
#29Re: Show HN: Claudoro, Pomodoro timer embedded in the Claude Code statusline
#30Side note, many windows people still don't know about psmux https://github.com/psmux/psmux