Track active coding time with Claude Code and nudge yourself to take breaks
Project description
Garlic 🧄 — the AI Vampire 🧛 Warding Tool
Garlic is used to ward off vampires. According to Steve Yegge, AI tools have a vampiric effect on us, draining us of energy and making us tired and exhausted. Not because they are not good at coding, or do not make us much more productive, but simply because we get dopamine for getting stuff done quicker, leading us to work longer and think harder. In short, we need to touch grass. Instead of going hard for 12 hours straight with our coding agent of choice and burning ourselves out to only create value for our employer, we should be mindful of the $/hr formula and consider a new balance. He estimates there are no more than 3-4 hours of good work that we can do in a day with all this uplift without burning our own candles a little too brightly. As someone quite sensitive to the effects of extended dopamine release on the mind and body, I tend to agree with him. So I created garlic, a CLI tool that helps you keep the draining to a minimum and maintain your own energy levels so we can continue to be healthy little worker bees for years to come.
The idea came from this article by Steve Yegge.
How does it work?
garlic hooks into Claude Code using its hooks system. It tracks three events:
- Session start — when you open a new Claude Code session
- Prompt submit — when you send a message to Claude
- Stop — when Claude finishes responding
From these events, garlic estimates how much time you have spent actively coding each day. It works across multiple concurrent Claude Code sessions by sharing a single state file with file locking.
The time model counts your full engagement cycle: the time Claude spends generating a response (up to a configurable cap — 2 hours by default — to guard against hung processes or forgotten sessions inflating your daily total), plus the time you spend reading it and thinking before your next prompt. If your thinking time exceeds 40 minutes (configurable), garlic assumes you stepped away and counts nothing for that gap. Gaps within the limit are counted in full. The limit is intentionally generous: it covers the time you spend reading docs, answering a Slack message, checking email, or getting back into context — adjacent work that's still part of your coding session.
As you approach configurable thresholds (every 30 minutes up to 4 hours by default), garlic asks Claude to gently nudge you to consider taking a break. You choose how it nudges — gentle, firm, or spicy. Each threshold only fires once, so you won't be nagged on every prompt. The final threshold delivers a more definitive "session over" message.
If you're still coding in the hour before the daily reset (1 AM by default, when reset_hour is 2), garlic sends a bedtime nudge — a distinct "wrap up and get some sleep" message that fires once per night.
Compatibility
- Python 3.11+
- macOS, Linux, and WSL
- Not supported on native Windows (
fcntlis unavailable)
Setup
Install garlic with uv:
uv tool install garlic-cli
Run setup to install the Claude Code hooks:
garlic setup
Setup interactively prompts for key preferences (nudge interval, max prompt gap, reset hour, nudge style) with sensible defaults — just press Enter to accept them all. To skip prompts entirely and use defaults, pass -y:
garlic setup -y
This does three things:
- Creates
~/.garlic/config.toml(with your chosen settings or sensible defaults) - Adds garlic's hooks to
~/.claude/settings.jsonso they run across all your projects - Appends a nudge-relay instruction to
~/.claude/CLAUDE.mdso Claude always relays garlic's nudge messages verbatim as the last line of its response
To reset your config to the latest built-in defaults (useful after upgrading):
garlic setup --defaults
Setup is idempotent — safe to run again if you need to repair or update hooks.
Upgrading
uv tool install garlic-cli --upgrade
Then re-run garlic setup to update your hooks if the release notes mention hook changes.
Usage
# Check your installed version
garlic version
# See how long you have been Clauding today
garlic status
# See your rolling 7-day usage summary
garlic week
# See monthly totals, streaks, and averages
garlic stats
# Disable nudging for the rest of the day (tracking continues)
garlic ignore
# Update a config value without editing the file
garlic set nudge_style=spicy
garlic set max_prompt_gap_minutes=60
# Reset the daily timer to zero
garlic reset
Slash command
After running garlic setup, you can use /garlic directly in Claude Code to check your status without leaving the conversation.
Configuration
Edit ~/.garlic/config.toml to customize:
# Max thinking time (minutes) between Claude stopping and your next
# prompt that still counts as active coding. If you take longer than
# this, garlic assumes you stepped away and counts nothing for that gap.
max_prompt_gap_minutes = 40
# Max generation time (minutes) to count per response. If Claude runs
# longer than this (hung process, forgotten session), the time is
# clamped to this cap instead of inflating the daily total.
max_generation_minutes = 120
# Hour of day (0-23) when the daily timer resets.
reset_hour = 2
# Accumulated minutes at which garlic will nudge you.
# Each threshold fires only once per day. The final threshold uses
# a more definitive "session over" message.
nudge_thresholds_minutes = [30, 60, 90, 120, 150, 180, 210, 240]
# Nudge personality: "gentle", "firm", or "spicy".
nudge_style = "gentle"
Project layout
Source modules in src/garlic/:
cli.py— argparse entry point and subcommand dispatchconfig.py— loads/creates~/.garlic/config.tomlwith defaultsstate.py— reads/writes~/.garlic/state.tomlunderfcntl.flock, handles daily resetengine.py— gap calculation, accumulation, threshold checkingnudges.py— hardcoded gentle/firm/spicy message poolshooks.py— handlers for thesession-start,prompt, andstophook subcommandssetup.py— installs/updates hooks in~/.claude/settings.json
Runtime state lives in ~/.garlic/: config.toml (settings) and state.toml (daily tracking, fcntl-locked for concurrent sessions).
Claude Code hooks written to ~/.claude/settings.json by garlic setup:
- SessionStart (matcher
"startup") →garlic hook session-start - UserPromptSubmit →
garlic hook prompt - Stop →
garlic hook stop - SessionEnd →
garlic hook session-end— finalizes in-flight generation time and clearslast_event_timeso a crashed or killed session can't leak time into the next one
Each hook reads JSON from stdin and either writes plain text to stdout (a nudge) or exits silently.
Things I should know?
No prompt injection risk. The nudge messages output by garlic's hooks are hardcoded in the project. There is no mechanism for external input to influence what gets sent to your agent. You can audit every possible message in src/garlic/nudges.py.
No runtime dependencies. Garlic uses only the Python standard library at runtime. Development dependencies (pytest, build, twine) exist for testing and releasing, but are not shipped with the package. This is an intentional choice — garlic runs on every prompt you send, so the supply chain should be as small and auditable as possible.
No data leaves your machine. All state lives in ~/.garlic/ and is never transmitted anywhere.
Built with Claude. This project was built with Claude Code, which is fitting given what it does.
Release process
- Run
make release BUMP=patch|minor|major - Merge release PR
- Draft release updates
- Publish release
- Release workflow runs
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file garlic_cli-0.2.0.tar.gz.
File metadata
- Download URL: garlic_cli-0.2.0.tar.gz
- Upload date:
- Size: 35.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26adaa8ac77ef82aa9135a3fa663da4a66e51f9ac8c13e0d0b0092810b3c3e46
|
|
| MD5 |
0c376596f82a16fbde7fe97170f8e54c
|
|
| BLAKE2b-256 |
ad8c05b337812807a1379736ff71e7b77c0975e024d36d9cf2ffe50398dbec48
|
Provenance
The following attestation bundles were made for garlic_cli-0.2.0.tar.gz:
Publisher:
release.yml on justanotherspy/garlic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
garlic_cli-0.2.0.tar.gz -
Subject digest:
26adaa8ac77ef82aa9135a3fa663da4a66e51f9ac8c13e0d0b0092810b3c3e46 - Sigstore transparency entry: 1370220383
- Sigstore integration time:
-
Permalink:
justanotherspy/garlic@469d5c43b3e9c76a48f003df5958d184627c1fd4 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/justanotherspy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@469d5c43b3e9c76a48f003df5958d184627c1fd4 -
Trigger Event:
release
-
Statement type:
File details
Details for the file garlic_cli-0.2.0-py3-none-any.whl.
File metadata
- Download URL: garlic_cli-0.2.0-py3-none-any.whl
- Upload date:
- Size: 21.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2faf0854b22f39294dd3c00ef01d5c115f814546d28ba12ec2b9ed52509b9704
|
|
| MD5 |
0eb304203bc632d0bf73cd2537fa6465
|
|
| BLAKE2b-256 |
f6d7d0698544f1f58e93dc5e817db550989c45d3dc8a5eed9b58a1de73be4de6
|
Provenance
The following attestation bundles were made for garlic_cli-0.2.0-py3-none-any.whl:
Publisher:
release.yml on justanotherspy/garlic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
garlic_cli-0.2.0-py3-none-any.whl -
Subject digest:
2faf0854b22f39294dd3c00ef01d5c115f814546d28ba12ec2b9ed52509b9704 - Sigstore transparency entry: 1370220458
- Sigstore integration time:
-
Permalink:
justanotherspy/garlic@469d5c43b3e9c76a48f003df5958d184627c1fd4 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/justanotherspy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@469d5c43b3e9c76a48f003df5958d184627c1fd4 -
Trigger Event:
release
-
Statement type: