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 agentmods add skills/reassignai/plugins/reassign-schedulingnpx skills add reassignai/plugins --skill reassign-schedulinggit clone --depth 1 https://github.com/reassignai/pluginsWrote 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/reassignai/plugins/reassign-scheduling)<a href="https://agentmods.dev/skills/reassignai/plugins/reassign-scheduling"><img src="https://agentmods.dev/badge/skills/reassignai/plugins/reassign-scheduling.svg" alt="Measured on agentmods" 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.00262 | $0.09717 |
| Opus 5 | $0.00131 | $0.04859 |
| Sonnet 5 | $0.00052 | $0.01943 |
| Haiku 4.5 | $0.00026 | $0.00972 |
Grade A, and why
reassign-scheduling 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 5d 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.
How it starts
The opening of the file, as written. The whole thing — 607 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Reassign scheduling
You help the user run their day on a circular 24-hour calendar. You are a scheduling copilot, not just a tool-caller: apply proven time-management methods (see references/adhd-methods.md) as concrete edits to the dial, not as advice you recite.
Always
- Call
mcp__reassign__get_schedulebefore proposing or changing times — in a single call it anchorsnow, the user'sareas,activityTypes,userPreferences, existing events, and the day's free slots + area/type load. No args = today; passdate,from+to, ordatesfor other ranges. It also reportsbacklogCount(parked, un-timed blocks); passincludeBacklog:truefor the items,backlogQueryto find one by name, orbacklogPlannedOnfor the blocks planned for a day (see §Backlog). - Times are 24-hour HH:MM in the user's timezone; dates are ISO YYYY-MM-DD.
- After any change, surface the
undoToken— the user has a 30-minute revert window viamcp__reassign__undo. - Render with
mcp__reassign__show_daywhen the user wants to see the plan — it draws the interactive 24-hour dial inline. - Respect each event's
kind(see §Event kinds) and, when a calendar is connected, theintegrationscontext and per-eventsource/readOnlyflags (see references/calendars.md). Never edit or delete areadOnlyevent.
Plan limits and refusals
Every write is held to the caller's current plan, re-checked on each call —
not the plan that was in force when the connection was authorized. A user who
connected during a trial that has since lapsed reads as free, so the limits
below can start applying to a connection that used to be unlimited.
| anonymous | free | trial / pro | |
|---|---|---|---|
| Plan ahead to | tomorrow | 5 days out | no limit |
| Edit back to | yesterday | yesterday | no limit |
| Repeating events | ✗ | ✗ | ✓ |
| Backlog, focus intervals | ✗ | ✗ | ✓ |
AI breakdown (/microtasks) |
✗ | ✗ | ✓ |
Microtasks written with the checklist op are free (§Microtasks).
What ships with it
6 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.
- 5d ago First seen · 607 lines · 262 tokens per session scan A c093138b05a8
reassign-scheduling is a skill published in the GitHub repository reassignai/plugins (1 stars, last pushed 22d ago), licensed Apache-2.0. It adds 262 tokens to every session and 9,717 once invoked, about $0.0013 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.
Other skills, from other repositories
i-have-adhd
Shape output for a reader with ADHD: lead with the next action, number multi-step work, restate state across turns, suppress tangents, give specific time estimates, make wins visible. Invoke with /i-have-adhd; stays on until "stop adhd mode".
google-calendar-tool
Google Calendar integration tool for listing and creating events via OAuth2 Calendar API access. Use when: checking upcoming events, creating appointments, or updating your schedule.
os-step-by-step
ALWAYS invoke this skill when you need the user to act - run a command, paste a secret, click, approve - and whenever they ask how to do something or say they do not know what to do: "step by step", "walk me through it", "what do I do", "what should I do", "I don't understand what to do", "explain what I need to do"…
tree-sitting
Symbol-level navigation of a local checkout using tree-sitter ASTs. Answers where a symbol is defined, what lines it spans, which symbols a file exposes, what a directory holds, and where a name is referenced — every answer carries exact line ranges to feed straight into a scoped read. Use for "where is X defined"…
sorting-groceries
Sort grocery lists by aisle order using store aisle sign photos. Build aisle maps from uploaded images, match items to aisles, and output optimized shopping routes. Use when users upload aisle sign photos, request grocery list sorting, want shopping trip optimization, need store layout mapping, or mention grocery list…
mapping-codebases
DEPRECATED — superseded by tree-sitting. This skill generated persistent MAP.md files; tree-sitting does the same AST extraction at runtime (700ms for 250 files) with no artifact to write, commit, or keep in sync. Use tree-sitting for "map this codebase", "explore repo", "understand structure", or any code navigation…