Lightweight cross-platform reminder daemon for developers
Project description
kim — keep in mind
Lightweight cross-platform reminder daemon for developers.
No UI. Config-driven. Runs in the background.
Documentation: pratikwayal01.github.io/kim
Install
Linux / macOS
curl -fsSL https://raw.githubusercontent.com/pratikwayal01/kim/main/install.sh | bash
Windows (PowerShell)
powershell -ExecutionPolicy Bypass -c "irm https://raw.githubusercontent.com/pratikwayal01/kim/main/install.ps1 | iex"
pip
pip install --break-system-packages kim-reminder
That's it. kim starts automatically on login.
Windows + pip: If
kimis not found after install, run this once to add it to your PATH:$p = python -c "import sysconfig; print(sysconfig.get_path('scripts','nt_user'))" [Environment]::SetEnvironmentVariable("PATH",$env:PATH+";"+$p,"User") $env:PATH += ";$p"
Usage
kim start Start the daemon
kim stop Stop the daemon
kim status Show running reminders and config paths
kim list List all reminders (shows index #)
kim list -o Also show pending one-shot reminders
kim logs Tail the log file
kim edit Open config in $EDITOR
kim add Add a new reminder
kim remove Remove a reminder (by name or index)
kim enable Enable a reminder
kim disable Disable a reminder
kim update Update a reminder
kim remind One-shot reminder after a delay or at a time
kim interactive Arrow-key TUI (-i shortcut)
kim self-update Update to latest release
kim uninstall Remove kim completely
kim export Export reminders to JSON or CSV
kim import Import reminders from JSON or CSV
kim validate Validate config file
kim slack Show or test Slack configuration
kim sound Manage notification sound
kim completion Generate shell completions (bash/zsh/fish)
Recurring reminders
# Interval-based
kim add eye-break -I 30m -t "Eye Break" -m "Look away" -u critical
kim add water --every 1h
# Daily at a fixed time
kim add standup --at 10:00
kim add standup --at 10:00 --tz Asia/Kolkata
One-shot reminders
# Relative
kim remind "standup call" in 10m
kim remind "deploy window opens" in 2h 30m
# Absolute
kim remind "standup" at 10:00
kim remind "standup" at tomorrow 9am
kim remind "call" at friday 2pm
kim remind "deploy" at 2026-04-07 14:30 --tz America/New_York
# Urgency
kim remind "wake up!" in 5m --urgency critical
Fires once, runs in the background, frees your terminal immediately. Survives daemon restarts and reboots — stored in ~/.kim/oneshots.json.
Removing reminders
# Recurring — by name or index from `kim list`
kim remove water
kim remove 2
# One-shot — by index or message substring from `kim list -o`
kim remove 1 -o
kim remove "standup" -o
Config — ~/.kim/config.json
{
"reminders": [
{
"name": "eye-break",
"interval": "30m",
"title": "Eye Break",
"message": "Look 20 feet away for 20 seconds.",
"urgency": "critical",
"enabled": true
},
{
"name": "standup",
"at": "10:00",
"timezone": "Asia/Kolkata",
"title": "Standup",
"message": "Time for standup!",
"urgency": "normal",
"enabled": true
}
],
"sound": true,
"slack": {
"enabled": false,
"webhook_url": "https://hooks.slack.com/services/...",
"channel": "#general"
}
}
| Field | Values | Description |
|---|---|---|
name |
string | Unique identifier |
interval |
"30m", "1h", "1d", "90s" |
Recurring interval (required unless at is set) |
at |
"HH:MM" |
Fire daily at a fixed time (required unless interval is set) |
timezone |
IANA name e.g. "Asia/Kolkata" |
Timezone for at (default: local) |
title |
string | Notification heading |
message |
string | Notification body |
urgency |
low / normal / critical |
Notification priority |
enabled |
true / false |
Toggle without deleting |
sound_file |
path | Per-reminder sound file (overrides global) |
slack |
object | Per-reminder Slack override |
Use kim validate to check your config. Use kim edit to open it in $EDITOR.
How it works
| Platform | Autostart | Notifications |
|---|---|---|
| Linux | systemd user service | notify-send |
| macOS | launchd agent | osascript |
| Windows | Task Scheduler | PowerShell toast |
- Pure Python stdlib — zero runtime dependencies
- Single scheduler thread — all reminders share one
heapqevent loop (~0.02 MB flat) - Atomic writes — all config and state files written via
.tmp→ rename - Secrets never logged — Slack tokens and webhook URLs are not written to
~/.kim/kim.log - Logs at
~/.kim/kim.log(5 MB rotating, 3 backups)
Uninstall
kim uninstall
Cancels pending one-shot reminders, removes autostart entries, deletes ~/.kim/ and the binary.
If kim is broken, use the standalone script:
curl -fsSL https://raw.githubusercontent.com/pratikwayal01/kim/main/uninstall.sh | bash
Start small. Keep it in mind.
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 kim_reminder-4.5.10.tar.gz.
File metadata
- Download URL: kim_reminder-4.5.10.tar.gz
- Upload date:
- Size: 83.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1d5c2a596d46e3a4dedb0d7c457bbfe757d1ed95d2f5a1ce361d7a094eda89d
|
|
| MD5 |
933f68828d4f6a3eecd0d91d10cf346d
|
|
| BLAKE2b-256 |
a173e64eca840948d81bb0538d459b9a1296f8a09a91bbebac87c4a056966bc0
|
File details
Details for the file kim_reminder-4.5.10-py3-none-any.whl.
File metadata
- Download URL: kim_reminder-4.5.10-py3-none-any.whl
- Upload date:
- Size: 62.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b7909dcde2cd0115caa5168550ac1b66b8d266da9eb89525f73bf20cb476856
|
|
| MD5 |
d6f5f5dc5ed099c45122ebfbe0345424
|
|
| BLAKE2b-256 |
d47e994c795c27ceefdd748c72767fb940cbe371f2e85196c534c9381bb0b2c9
|