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 skills-il/localization --skill shabbat-aware-schedulergit clone --depth 1 https://github.com/skills-il/localizationWrote 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/skills-il/localization/shabbat-aware-scheduler)<a href="https://agentmods.dev/skills/skills-il/localization/shabbat-aware-scheduler"><img src="https://agentmods.dev/badge/skills/skills-il/localization/shabbat-aware-scheduler/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/skills-il/localization/shabbat-aware-scheduler"><img src="https://agentmods.dev/badge/skills/skills-il/localization/shabbat-aware-scheduler.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00117 | $0.06196 |
| Opus 5 | $0.00059 | $0.03098 |
| Sonnet 5 | $0.00023 | $0.01239 |
| Haiku 4.5 | $0.00012 | $0.00620 |
Grade A, and why
shabbat-aware-scheduler scanned grade A with 1 finding 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 11d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
allowed-tools: Bash(python:*) Bash(pip:*) Bash(curl:*) How it starts
The opening of the file, as written. The whole thing — 379 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Shabbat-Aware Scheduler
This tool computes calendar times and business scheduling only. It does not issue halachic rulings; for halachic questions consult a rabbi.
Instructions
Step 1: Determine Scheduling Context
| Context | Key Constraints | Examples |
|---|---|---|
| Meeting scheduling | Israeli business hours (Sun-Thu), Shabbat, chagim | "Schedule a team meeting next week" |
| Deployment planning | No deploys during Shabbat, chagim, or Erev Chag | "When can we deploy this release?" |
| Event planning | Hebrew calendar restrictions, venue availability | "Plan a product launch event" |
| Cron/automation | Skip Shabbat and holidays for recurring tasks | "Run this job daily except Shabbat" |
| Notification timing | Don't send during Shabbat or late hours | "Schedule push notification campaign" |
Step 2: Get Zmanim and Holiday Data
Use the HebCal API to retrieve Shabbat times and holiday data.
See scripts/check_shabbat.py for a ready-to-use utility.
Query HebCal API for Shabbat times:
Prefer geonameid over raw coordinates. When you pass a geonameid, Hebcal applies that
city's own candle-lighting minhag for you and there is no b= value to get wrong. Reach for
latitude/longitude plus a hand-picked b= only for a location with no geonameid.
import requests
from datetime import datetime, timedelta
CITY_GEONAMEID = {
"jerusalem": 281184, "tel_aviv": 293397, "haifa": 294801,
"beersheba": 295530, "tiberias": 293322, "safed": 293100,
}
def get_shabbat_times(date=None, geonameid=281184):
"""Candle lighting and havdalah for the Shabbat of the week containing `date`."""
if date is None:
date = datetime.now()
# Anchor on the Friday of the CURRENT Shabbat week. Saturday belongs to the
# Shabbat that started the evening before, so it looks BACK one day. Adding
# (4 - weekday) % 7 unconditionally returns next week's Shabbat all Saturday,
# which is 8 days wrong exactly when someone asks "when does Shabbat end?".
if date.weekday() == 5:
friday = date - timedelta(days=1)
else:
friday = date + timedelta(days=(4 - date.weekday()) % 7)
response = requests.get("https://www.hebcal.com/shabbat", params={
"cfg": "json",
"gy": friday.year, "gm": friday.month, "gd": friday.day,
"geonameid": geonameid,
"M": "on", # Havdalah at tzeit hakochavim (sun 8.5 deg below horizon)
# Alternative: m=50 or m=72 for a fixed number of minutes after sunset
})
data = response.json()
times = {}
for item in data.get("items", []):
if item["category"] == "candles":
times["candle_lighting"] = item["date"]
elif item["category"] == "havdalah":
times["havdalah"] = item["date"]
return times
What ships with it
7 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.
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.
- 11d ago First seen · 379 lines · 117 tokens per session scan A f8609c900ebd
shabbat-aware-scheduler is a skill published in the GitHub repository skills-il/localization (23 stars, last pushed 17d ago), licensed MIT. It adds 117 tokens to every session and 6,196 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
orbit-notion
Open Orbit briefing skill — selected by the Orbit pipeline when Notion is the user's only connected connector, or when the user explicitly scopes their daily digest to Notion. Pulls the past 24 hours of document edits, comments, mentions, and database row changes from the user's authenticated Notion connection and…
Cortex
Operate Cortex, the LifeOS memory system — the typed Knowledge Archive (People, Companies, Ideas, Research with typed related: links) plus recall of prior work sessions, ISAs, and conversations. Search, add, harvest, develop, ingest, distill, graph-navigate, recall. USE WHEN cortex, knowledge, knowledge base, search…
pinchtab-mcp
Use this skill when a task requires browser automation through PinchTab's MCP server connected to a remote browser instance. Covers navigation, element interaction, data extraction, form filling, multi-step flows, and session management via MCP tools.
feishu
Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.
peekaboo
Capture and automate macOS UI with the Peekaboo CLI.
mochi-remind
Handle due reminders — notify the user with natural language and mark them done.