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.
testing
--- name: linear-pipeline description: The Fable orchestrator for a single dispatched Linear ticket. Holds almost no context itself; it receives `--issue <ID> --detached`, decides the stage sequence, and fans out a sub-agent per stage, passing forward only each stage's artifact (never re-derived, never inlined into its own context). Step zero, before any planning or stage routing, is a boundary triage against `canon/security-boundary.md` (#199): a match tags Ronan Connolly and stops the run, no
development
--- name: in-your-face description: Capture a chat-only answer into a durable artifact (markdown + HTML, PDF when cheap) and launch it automatically so the user cannot miss it. Use when user says "in your face", "don't let me lose this", "save that answer", "make that durable", or right after answering a substantive side question (a recipe, comparison, how-to, or generated prompt) that would otherwise die with the context. category: workflow argument-hint: [--no-open] [--vault <short>] [hint of
tools
One-shot headless OpenAI Codex CLI calls for background/admin AI tasks — summaries, classification, extraction, admin glue. The default engine for anything that runs AI constantly in the background (daemon-driven, per-event), because it bills the flat ChatGPT subscription instead of Claude usage or per-token API spend, and it keeps working while Claude is rate-limited. NEVER for coding — coding stays Claude. Use when a skill or daemon needs a cheap always-on AI call, when the user says "use codex", "ask codex", "codex as backup", or when building a background summarizer/classifier into a listener or loop. Reads auth from ~/.codex/auth.json (ChatGPT account, no API key).
research
Turn a warranty rejection, repair quote, or RMA email into a cited decision brief — legal read (NL/EU consumer law), is the part user-serviceable, live part and new-unit prices, repair-vs-DIY-vs-new economics, before-you-send-it checklist, deadlines. Use when the user pastes or screenshots a repair quote, warranty rejection, "not covered" email, onderzoekskosten fee, or asks "should I repair or replace this".