call-reminder

call-reminder is a skill for Claude Code, Codex from CALLE-AI/awesome-phone-call-agents. It costs 49 tokens per session (1,430 once invoked), scanned A, original, MIT.

A scheduling skill for arranging recurring or timed phone-call reminders through the client's existing scheduler. Each scheduled run places one phone call using the existing CALL-E call process.

In plain words
What is it for?
Use it for daily or recurring medicine reminders, scheduled calls, and other requests to be reminded by phone.
Why use it?
It turns a natural-language reminder into a scheduled task without requiring a separate recurring-call service or a long-running program.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it for daily or recurring medicine reminders, scheduled calls, and other requests to be reminded by phone.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/calle-ai/awesome-phone-call-agents/call-reminder
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add CALLE-AI/awesome-phone-call-agents --skill call-reminder
Clone the repo
git clone --depth 1 https://github.com/CALLE-AI/awesome-phone-call-agents

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for call-reminder

README.md
[![agentmods](https://agentmods.dev/badge/skills/calle-ai/awesome-phone-call-agents/call-reminder/github.svg)](https://agentmods.dev/skills/calle-ai/awesome-phone-call-agents/call-reminder)
Your own site
<a href="https://agentmods.dev/skills/calle-ai/awesome-phone-call-agents/call-reminder"><img src="https://agentmods.dev/badge/skills/calle-ai/awesome-phone-call-agents/call-reminder/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for call-reminder

Your own site · 80×15
<a href="https://agentmods.dev/skills/calle-ai/awesome-phone-call-agents/call-reminder"><img src="https://agentmods.dev/badge/skills/calle-ai/awesome-phone-call-agents/call-reminder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,430 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 3 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Privilege Escalation · line 122
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
  • high Privilege Escalation · line 127
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
  • medium MCP Rug Pull · line 78
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00049 $0.01430
Opus 5 $0.00024 $0.00715
Sonnet 5 $0.00010 $0.00286
Haiku 4.5 $0.00005 $0.00143

Measured 13d ago against content hash 76c8309071a9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

call-reminder scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 13d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/detect-client.mjs, scripts/render-runtime-prompt.mjs, scripts/validate-reminder-input.mjs), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/call-reminder/SKILL.md · 152 lines

How it starts

The opening of the file, as written. The whole thing — 152 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Call Reminder

Use this skill when the user wants a recurring phone-call reminder such as "call me every day at 9:00 to remind me to take my medicine."

call-reminder is a scheduler wrapper skill. It does not add a CALL-E backend reminder API, a provider-side recurring schedule, a daemon, or new MCP tools. It turns a user-authorized reminder request into a self-contained scheduled task for the current client. Each scheduled run uses the existing CALL-E one-off call workflow to place exactly one reminder call.

When To Use

Use this skill for:

  • daily or otherwise recurring phone-call reminders
  • scheduled CALL-E calls where the scheduler belongs to the client, host, cron, or automation system
  • "call me at a time" and "remind me by phone" workflows
  • converting a natural-language reminder request into a runtime prompt for a scheduled job
  • choosing the safest available scheduler adapter for the current client

When Not To Use

Do not use this skill to:

  • create CALL-E backend reminder APIs such as create_call_reminder, list_call_reminders, update_call_reminder, or cancel_call_reminder
  • make provider-side recurrence mandatory
  • create a long-running daemon
  • install calle globally without explicit user approval
  • guess phone numbers, country codes, timezones, languages, or regions
  • create recurring calls to third-party numbers unless the user explicitly states that the recipient consented
  • place a test call during setup unless the user explicitly asks for a test call

Core Create-Time Workflow

  1. Confirm the user explicitly wants a recurring phone-call reminder.
  2. Extract the reminder fields:
    • cadence, such as daily
    • local time in HH:MM 24-hour format
    • IANA timezone
    • E.164 destination phone number
    • reminder message
    • optional language and explicit region when the user provides them
  3. Ask for any missing required field. Do not infer it from locale, phone number, IP address, UTC offset, reminder text, or prior unrelated context.
  4. Detect or choose the current client adapter using references/client-adapters.md and, when useful, scripts/detect-client.mjs.
  5. Resolve a CALL-E command using references/calle-cli-bootstrap.md.
  6. Render a self-contained runtime prompt using references/runtime-prompt.md or scripts/render-runtime-prompt.mjs.
  7. Create the scheduled task only through a scheduler that is actually available in the current client.
  8. If the current client cannot safely create the schedule, return the runtime prompt and setup instructions. Do not claim the reminder was created.

Read the full file on GitHub · 152 lines

Files

What ships with it

8 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 13d ago First seen · 152 lines · 49 tokens per session scan A 76c8309071a9

Subscribe to this mod's changes

call-reminder is a skill published in the GitHub repository CALLE-AI/awesome-phone-call-agents (88 stars, last pushed yesterday), licensed MIT. It adds 49 tokens to every session and 1,430 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories