Mac-mini Discord reminder
SkillCommunicationSet one-time or recurring reminders via launchd/cron on an always-on machine and receive them as Discord DMs—a way that doesn't use paid automation slots.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Mac-mini Discord reminder skill
What this skill tells your AI
The instructions your AI receives, as published by bam-bam-2/solo-skills in skills/discord-reminder/SKILL.md and read by ahel’s review.
이 스킬이 시스템에 하는 일 (설치 전 확인)
- 사용자 홈에 실행 스크립트 하나(
~/Projects/<프로젝트>/<slug>.sh, mode 700)를 만듭니다.- macOS launchd 항목 하나(
~/Library/LaunchAgents/com.bambam.reminder-<slug>.plist)를 등록합니다.- 일회성 리마인더는 발송 직후 스스로 launchd에서 내려가고 plist를 지웁니다. 상주하지 않습니다.
- 반복 리마인더는 사용자가 지운 시점까지 유지됩니다. 목록은
launchctl list | grep reminder로 확인합니다.- 디스코드 토큰은 실행 시점에
.env에서만 읽고 출력하지 않습니다.보안 스캐너는 이 동작을
service_persistence(영구 서비스 설치)로 분류합니다. 맞습니다. 다만 일회성 항목은 스스로 제거되고, 만드는 파일은 위 두 개뿐입니다.
Use the remote-host instead of Aside routine slots for scheduled reminders.
- Resolve relative dates in Asia/Seoul and choose a concrete KST time. If the user gives no time, use 10:00 KST and state it.
- Store the executable script at
~/Projects/<프로젝트>/<slug>.shonremote-hostwith mode700. - Load Discord credentials only at runtime from
~/Projects/<프로젝트>/discord_bot/.env. Never print or copy token values. - Send the DM through Discord API v10 to
BAMBAM_USER_ID. Include a non-emptyUser-Agentheader to avoid Cloudflare blocking. - Store the LaunchAgent at
~/Library/LaunchAgents/com.bambam.reminder-<slug>.plist.- One-time reminder: use
StartCalendarIntervalwithYear,Month,Day,Hour, andMinute. - Recurring reminder: use only the requested recurring calendar fields.
- Never use
StartIntervalon this remote-host. Verified 2026-08-16: everyStartIntervalLaunchAgent in thegui/501domain sits atpended nondemand spawn = intervaland does not fire, including one that had previously run 2,429 times.StartCalendarIntervaljobs fire normally. For an every-N-minutes job, list the minutes explicitly, e.g.[{Minute: 0}, {Minute: 5}, ... {Minute: 55}]for a 5-minute cadence.
- One-time reminder: use
- Write stdout and stderr to
~/Projects/<프로젝트>/<slug>.log. - Validate and load without firing the reminder immediately:
plutil -lint <plist>launchctl bootout gui/$(id -u)/<label>if an old copy existslaunchctl bootstrap gui/$(id -u) <plist>launchctl print gui/$(id -u)/<label>plutil -p <plist>to verify the exact schedule
- Confirm it actually fires.
launchctl printshowing the job loaded is not proof — watchrunsincrement across two scheduled ticks, or check the job's own log for two consecutive scheduled entries. A job can load cleanly and never spawn. - Do not test-send a real DM unless the user asks. Report the resolved date, time, timezone, delivery channel, and loaded label.
Use concise reminder text that says what happened, what the user should do next, and any account or product distinction needed to avoid a wrong action.
바로 쓰는 스크립트
scripts/make-reminder.sh — 일회성 리마인더를 launchd에 등록합니다.
export DISCORD_BOT_TOKEN=... DISCORD_USER_ID=...
./scripts/make-reminder.sh cancel-check "2026-09-02 10:00" "구독 해지 확인하기"
지정한 시각에 DM이 한 번 가고 잡이 스스로 내려갑니다.
StartInterval이 아니라 StartCalendarInterval을 쓰는 이유는 아래 함정 항목을 보세요.
Signals
- GitHub stars
- 364
- Forks
- 89
- Last commit
- Sep 2026
ahel review
S4info
community integration — published by bam-bam-2, not discord
Automated review, not a security audit. Ruleset v1.
Advanced
- Catalog kind
- skill
- Gateway key
discord-reminder- Source
- github.com/bam-bam-2/solo-skills