set

set is a skill for Claude Code from SHAHARYAR1255/sunrise. It costs 58 tokens per session (1,012 once invoked), scanned A, original, MIT.

A command that sets the local start time for a Claude five-hour usage window by creating a cloud routine that sends small scheduled messages. It is used with the sunrise:set command.

In plain words
What is it for?
Use it to choose a local start time and schedule four daily messages that keep the usage window aligned to that time.
Why use it?
It helps make the daily window reset at a predictable time instead of leaving the start time to chance.

Skill for Claude Code

Written for Claude Code: $ARGUMENTS substitution. Also seen: mentions Claude Code.

Part of the sunrise plugin — 1 skill shipped together

Good fit Use it to choose a local start time and schedule four daily messages that keep the usage window aligned to that time.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/shaharyar1255/sunrise/set
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 SHAHARYAR1255/sunrise --skill set
Clone the repo
git clone --depth 1 https://github.com/SHAHARYAR1255/sunrise

Made for: Claude Code.

Or install sunrise, the plugin that ships this one along with the rest of its 1 skill.

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 set

README.md
[![agentmods](https://agentmods.dev/badge/skills/shaharyar1255/sunrise/set.svg)](https://agentmods.dev/skills/shaharyar1255/sunrise/set)
Your own site
<a href="https://agentmods.dev/skills/shaharyar1255/sunrise/set"><img src="https://agentmods.dev/badge/skills/shaharyar1255/sunrise/set.svg" alt="Measured on agentmods" height="20"></a>
Per session 58 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,012 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.
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.00058 $0.01012
Opus 5 $0.00029 $0.00506
Sonnet 5 $0.00012 $0.00202
Haiku 4.5 $0.00006 $0.00101

Measured 8d ago against content hash 84e2193e824d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

set 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 8d 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.

sunrise/skills/set/SKILL.md · 58 lines

How it starts

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

sunrise: set your session start time

The user wants their Claude 5-hour usage window to start at a chosen local time each day, so resets land predictably. You achieve this by creating a cloud routine (the same thing the built-in /schedule creates) that sends one tiny no-op message four times a day, five hours apart. Each message starts or refreshes the 5-hour window, keeping it primed.

A plugin cannot run on a timer itself — only a cloud routine runs 24/7 (even with the user's machine off). So your job here is to compute the schedule and create that routine.

Requested start time (may be empty): $ARGUMENTS

Follow these steps in order.

1. Parse the start hour

From "$ARGUMENTS", determine the start hour in 24-hour local time.

  • Accept forms like 9am, 9, 09:00, 9:00am, 21, 6am, 18:30.
  • Default the minute to :07 unless the user specified one. (An off-:00 minute avoids the top-of-hour rush and reliably lands just after each window boundary.)
  • If "$ARGUMENTS" is empty or genuinely ambiguous, ask the user: "What local time should your Claude window start each day?" Then continue once they answer.

2. Compute the four daily ping times (local)

The window lasts 5 hours, so prime four times a day:

  • T1 = start hour
  • T2 = (start + 5) mod 24
  • T3 = (start + 10) mod 24
  • T4 = (start + 15) mod 24

All four use the same minute. This keeps a window primed for ~20 hours a day; the one unavoidable ~4-hour gap (because 24 is not divisible by 5) lands overnight when the start hour is the user's wake time.

3. Confirm before creating anything

Show the user, in their local time:

  • The four ping times T1–T4.
  • That their window will then reset at (start+5), (start+10), (start+15), (start+20) mod 24.
  • That this uses ~4 of their 15 daily routine runs and needs a Claude Pro or Max plan with Claude Code routines.

Ask them to confirm. If they decline, stop and change nothing.

4. Create (or update) the routine

Invoke the built-in schedule skill (the /schedule routine creator) to make a recurring cloud routine with exactly these parameters:

  • name: sunrise
  • schedule: every day at T1, T2, T3, T4 local time. (The routine system converts local to a UTC cron. A single cron MINUTE H1,H2,H3,H4 * * * in UTC works, since all four pings share one minute.)
  • model: claude-opus-4-8 — must be a heavy model. Lighter models like Haiku do NOT anchor the 5-hour usage window (the window silently never starts); Opus does. The prompt is trivial, so the cost is ~one token regardless of model.
  • git repositories / sources: none. This routine performs no work and needs no repo.
  • prompt: Output exactly: ok. Do not read files, run commands, use tools, or change anything. Then stop.

Read the full file on GitHub · 58 lines

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. 8d ago First seen · 58 lines · 58 tokens per session scan A 84e2193e824d

Subscribe to this mod's changes

set is a skill published in the GitHub repository SHAHARYAR1255/sunrise (4 stars, last pushed 2mo ago), licensed MIT. It adds 58 tokens to every session and 1,012 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-08-31.

Related

Other skills, from other repositories