skills/pushover/SKILL.md
Send a push notification to Ronan's phone via the Pushover API. Use at the END of an AFK / night-shift / Ralph-loop / unattended /loop run so he knows the agent has stopped and is ready for the next thing. Do NOT fire this for ordinary interactive responses, only when the user has signalled they are away from keyboard. Reads PUSHOVER_APP_TOKEN and PUSHOVER_USER_KEY from ~/.claude/.env. Triggers on "AFK", "go AFK", "night shift", "kick off night shift", "run night shift", "/ro:matt-pocock-coding-workflow" in night-shift mode, "/ro:ralph" in night-shift mode, and any "/loop" with no interval. Also use whenever the user explicitly says "ping me", "notify me", "push me when done", "let me know when you're finished".
npx skillsauth add RonanCodes/ronan-skills pushoverInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Sends a push notification to Ronan's phone via Pushover. One curl call, one notification.
Use at the end of a run when Ronan is away from keyboard. The point is that he doesn't have to babysit the terminal: if night-shift mode stops 20 minutes in for any reason (waiting on input, finished early, crashed, blocked), the phone notification tells him to come back.
Fire when any of these are true for the current session:
AFK, go AFK, let's go AFK, afk run, I'm AFK.night shift, kick off night shift, run night shift, go night shift, setup night shift, human night shift./ro:matt-pocock-coding-workflow was invoked in night-shift / AFK mode (not interactive in-the-loop mode)./ro:ralph was invoked in AFK / night-shift mode (the autonomous variant)./loop was invoked with no interval (dynamic self-paced loop, almost always unattended).Do NOT fire when:
If you're unsure whether the session is AFK, don't fire. False quiet beats false pings.
# Basic — fired at end of a night-shift run
bash skills/pushover/scripts/notify.sh "night shift done — 7 stories merged, ready for review"
# With a title (shows in bold at the top of the notification)
bash skills/pushover/scripts/notify.sh "ralph loop finished" --title "Night shift"
# Higher priority, custom sound (good for "you should look NOW")
bash skills/pushover/scripts/notify.sh "blocked on input after 3 stories" \
--title "Night shift paused" --priority 1 --sound magic
# Attach a clickable URL (e.g. the PR to review)
bash skills/pushover/scripts/notify.sh "PR ready" \
--url "https://github.com/RonanCodes/foo/pull/42" --url-title "Open PR"
Keep it scannable. Three things in this order:
7 stories merged, 3 PRs open, failed on story #4.ready for review, needs input, check Sentry.Examples that work:
night shift done — 7 stories merged, 0 failed, ready for reviewralph loop paused after story 4 — needs your call on the auth approachnight shift crashed at story 2 — tsc errors in src/api/billing.ts/loop finished — 12 PRs drained, queue emptyExamples to avoid (vague, low-signal):
done (done with what?)finished the task successfully (filler)please review the latest changes when you have a moment (too long, too polite)Default priority 0, default sound is Ronan's Pushover account default. Bump priority to 1 for "blocked, needs human" so it bypasses quiet hours; leave at 0 for "done, no rush".
Full sound list: https://pushover.net/api#sounds. magic and cosmic are good attention-getters; none for silent.
PUSHOVER_APP_TOKEN not set — add it to ~/.claude/.env.PUSHOVER_USER_KEY not set — same.{"status":0,"errors":[...]} — script exits non-zero and prints the body. Common cause: token typo or user has Pushover delivery paused.The trigger rule lives in ~/CLAUDE.md under Pushover Notifications, which is loaded into every session. That global rule tells Claude when to fire; this SKILL.md describes how. Don't move the trigger logic in here; the global file is what guarantees Claude actually remembers to send the ping at end-of-run, even if the skill description scrolls out of the window.
development
--- name: worktree description: Coordinate multiple agents on one repo via a worktree-lock pool, so two agents never clobber each other's working tree. Acquire the first free slot (main, then beta/gamma… worktrees, created on demand), work there on your own branch, release when you've pushed. Use before modifying any repo that might be in use by another agent (factory, dataforce, etc.), or whenever you're told a repo is being worked on. Backed by `ro worktree`. category: development argument-hin
testing
--- name: ship description: Ship a feature branch the local-CI-first way — run the full local gate, push, open a PR, squash-merge, then deploy, without waiting on GitHub Actions. Use when a branch is ready for main and you want it merged and deployed now. Reads CI policy from `ro ci` (default skips remote CI because GitHub Actions billing keeps hitting limits). Sibling to /ro:gh-ship (waits on GitHub checks) and /ro:cf-ship (the deploy half). Triggers on "ship it", "ship this", "merge and deploy
testing
--- name: setup-logging description: Set up (or audit) the observability stack in a TanStack Start + Cloudflare Workers app so it is "diagnosable by default" — structured logging (logtape) with a request context carrying trace_id + userId + tenant/orgId, a trace_id propagated FE→BE→logs→Sentry→PostHog, Cloudflare Workers observability enabled, and Sentry + PostHog wired. Two modes: `setup` (wire it into an app) and `audit` (check an existing app + report gaps). Use when scaffolding a new app, wh
development
Manage credentials INSIDE the active ~/.claude/.env file — read which token/account to use for a given app (Simplicity vs Dataforce vs Ronan-personal), add or update a secret WITHOUT it passing through the chat (an interactive Terminal window prompts for it), and track secrets that were exposed in a transcript so they get rotated. Sibling to /ro:context (which switches WHICH env file is active). Use when the user wants to add an API key/token/secret, asks "which credential do I use for X", needs the env organized/labelled, or a secret was pasted into the chat and should be rotated.