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.
npx skills add serejaris/kimi-skills --skill email-to-calendargit clone --depth 1 https://github.com/serejaris/kimi-skillsWrote 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.
[](https://agentmods.dev/skills/serejaris/kimi-skills/email-to-calendar)<a href="https://agentmods.dev/skills/serejaris/kimi-skills/email-to-calendar"><img src="https://agentmods.dev/badge/skills/serejaris/kimi-skills/email-to-calendar/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.
<a href="https://agentmods.dev/skills/serejaris/kimi-skills/email-to-calendar"><img src="https://agentmods.dev/badge/skills/serejaris/kimi-skills/email-to-calendar.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00064 | $0.04157 |
| Opus 5 | $0.00032 | $0.02079 |
| Sonnet 5 | $0.00013 | $0.00831 |
| Haiku 4.5 | $0.00006 | $0.00416 |
Grade A, and why
email-to-calendar 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 9d ago.
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.
Copies of this mod
1 near-identical copy found in the catalogue:
- email-to-calendar — 91% identical, 2 lines differ
How it starts
The opening of the file, as written. The whole thing — 464 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CRITICAL RULES - READ BEFORE PROCESSING ANY EMAIL
- NEVER CALL
gogDIRECTLY - ALWAYS use wrapper scripts (create_event.sh,email_read.sh, etc.). Directgogcalls bypass tracking and cause duplicates. THIS IS NON-NEGOTIABLE.- IGNORE CALENDAR NOTIFICATIONS - DO NOT process emails from
[email protected](Accepted:, Declined:, Tentative:, etc.). These are responses to existing invites, NOT new events. Runprocess_calendar_replies.shto archive them.- ALWAYS ASK BEFORE CREATING - Never create calendar events without explicit user confirmation in the current conversation
- CHECK IF ALREADY PROCESSED - Before processing any email, check
processed_emailsin index.json- READ CONFIG FIRST - Load and apply
ignore_patternsandauto_create_patternsbefore presenting events- READ MEMORY.MD - Check for user preferences stored from previous sessions
- INCLUDE ALL CONFIGURED ATTENDEES - When creating/updating/deleting events, always include attendees from config with
--attendeesflag (and--send-updates allif supported)- CHECK TRACKED EVENTS FIRST - Use
lookup_event.sh --email-idto find existing events before calendar search (faster, more reliable)- TRACK ALL CREATED EVENTS - The
create_event.shscript automatically tracks events; use tracked IDs for updates/deletions- SHOW DAY-OF-WEEK - Always include the day of week when presenting events for user verification
⛔ FORBIDDEN: DO NOT USE
gogCOMMANDS DIRECTLY ⛔WRONG:
gog calendar create ...orgog gmail ...RIGHT:"$SCRIPTS_DIR/create_event.sh" ...or"$SCRIPTS_DIR/email_read.sh" ...Direct CLI calls bypass event tracking, break duplicate detection, and cause duplicate events. ALL operations MUST go through the wrapper scripts in
scripts/.
Email to Calendar Skill
Extract calendar events and action items from emails, present them for review, and create/update calendar events with duplicate detection and undo support.
First-time setup: See SETUP.md for configuration options and smart onboarding.
What ships with it
54 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.
- _meta.json 137 B
- BOOT.md 4.5 KB
- CHANGELOG.md 15 KB
- CONTRIBUTING.md 2.2 KB
- package.json 701 B
- references/extraction-patterns.md 4.0 KB
- references/gog-commands.md 6.0 KB
- references/workflow-example.md 4.9 KB
- scripts/activity_log.sh 2.6 KB runs code
- scripts/add_pending.sh 1.6 KB runs code
- scripts/calendar_delete.sh 1016 B runs code
- scripts/calendar_search.sh 1.2 KB runs code
- scripts/changelog.sh 3.5 KB runs code
- scripts/check_duplicate.sh 3.0 KB runs code
- scripts/create_event.sh 7.1 KB runs code
- scripts/delete_tracked_event.sh 871 B runs code
- scripts/disposition_email.sh 1.9 KB runs code
- scripts/email_modify.sh 1.3 KB runs code
- scripts/email_read.sh 777 B runs code
- scripts/email_search.sh 1.1 KB runs code
- scripts/email_send.sh 1.0 KB runs code
- scripts/list_pending.sh 1.1 KB runs code
- scripts/lookup_event.sh 1.7 KB runs code
- scripts/process_calendar_replies.sh 4.4 KB runs code
- scripts/run_tests.sh 618 B runs code
- scripts/tests/__init__.py 34 B runs code
- scripts/tests/test_activity_ops.py 12 KB runs code
- scripts/tests/test_changelog_ops.py 13 KB runs code
- scripts/tests/test_common.py 5.9 KB runs code
- scripts/tests/test_date_parser.py 4.4 KB runs code
- scripts/tests/test_disposition_ops.py 9.2 KB runs code
- scripts/tests/test_event_tracking.py 9.5 KB runs code
- scripts/tests/test_invite_ops.py 7.1 KB runs code
- scripts/tests/test_json_store.py 6.6 KB runs code
- scripts/tests/test_pending_ops.py 15 KB runs code
- scripts/tests/test_undo_ops.py 9.0 KB runs code
- scripts/track_event.sh 1.4 KB runs code
- scripts/undo.sh 6.5 KB runs code
- scripts/update_invite_status.sh 2.3 KB runs code
- scripts/update_tracked_event.sh 1000 B runs code
- scripts/utils/__init__.py 34 B runs code
- scripts/utils/activity_ops.py 6.2 KB runs code
- scripts/utils/calendar_ops.py 11 KB runs code
- scripts/utils/changelog_ops.py 8.8 KB runs code
- scripts/utils/common.py 2.3 KB runs code
- scripts/utils/date_parser.py 2.8 KB runs code
- scripts/utils/disposition_ops.py 5.5 KB runs code
- scripts/utils/email_ops.py 7.6 KB runs code
- scripts/utils/event_tracking.py 7.3 KB runs code
- scripts/utils/invite_ops.py 3.1 KB runs code
- scripts/utils/json_store.py 1.4 KB runs code
- scripts/utils/pending_ops.py 9.0 KB runs code
- scripts/utils/undo_ops.py 4.2 KB runs code
- SETUP.md 8.7 KB
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.
- 9d ago First seen · 464 lines · 64 tokens per session scan A 4187dbbee836
email-to-calendar is a skill published in the GitHub repository serejaris/kimi-skills (6 stars, last pushed 1mo ago), licensed MIT. It adds 64 tokens to every session and 4,157 once invoked, about $0.0003 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-09-03.
Other skills, from other repositories
daily-briefing
Daily orientation and chief-of-staff briefing. Pulls from Slack (saved items), Gmail (important/starred), Google Calendar (today's events), Jira CLI (configured projects), and Todoist CLI, validates every action item, synthesizes a prioritized briefing using three consequence-based tiers, then produces a decisive…
laffaire
Use this skill to manage Laffaire calendar projects and entries via its JSON API. Invoke when the user wants to list, create, update, or delete Laffaire events or calendar entries, or asks about their Laffaire instance.
pm
When you want to manage projects across your businesses using a kanban + Eisenhower methodology. One kanban per business (whatever portfolio of businesses, projects, or initiatives you run). Tool-agnostic — connects via API/MCP to whatever PM tool each business uses (Notion, GitHub Projects, Plane, Linear, Obsidian…
n8n-pto-pipeline
Create n8n workflow for daily task assignment from PTO engineer to foreman via Telegram bot with status reporting.
kill-the-standup
Reads yesterday's Linear issues and GitHub commits for the authenticated user, formats a standup update (done / doing / blockers), and posts it to Slack. Use when asked to write a standup, generate a standup update, post to the standup channel, summarize yesterday's work, or automate the daily standup. Trigger when a…
mm-init-project
A project setup workflow that creates a shared project record in Markdown files, including a passport, dashboard, handoff notes, and instructions for Claude.ai. Obsidian is a note-taking app that can store these files as a connected project vault.