business-context-os: Skill for Claude Code

.claude/skills/schedule-dispatcher/SKILL.md

schedule-dispatcher is a skill for Claude Code from walm00/business-context-os. It costs 120 tokens per session (11,645 once invoked), scanned B, original, MIT.

A daily dispatcher that reads a maintenance schedule, runs the jobs due that day, records them in a diary, and creates one morning summary.

In plain words
What is it for?
It works in a configured CLEAR Context OS repository, runs enabled maintenance jobs, records results, and surfaces possible schedule changes for approval. It does not change job frequencies by itself.
Why use it?
It replaces several separate scheduled tasks with one process that runs due work in order and reports what happened.

Skill for Claude Code

Written for Claude Code: $CLAUDE_PROJECT_DIR variable. Also seen: reads .claude/ paths; names the AskUserQuestion tool; mentions Claude Code.

This is walm00/business-context-os's own configuration. It tells Claude Code how to work on business-context-os itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything business-context-os configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python .claude/scripts/context_index.py --write.

Reuse

Borrowing it

Nothing to install: this file belongs to walm00/business-context-os. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/walm00/business-context-os/main/.claude/skills/schedule-dispatcher/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/walm00/business-context-os

Made for: Claude Code.

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 schedule-dispatcher

README.md
[![agentmods](https://agentmods.dev/badge/skills/walm00/business-context-os/schedule-dispatcher/github.svg)](https://agentmods.dev/skills/walm00/business-context-os/schedule-dispatcher)
Your own site
<a href="https://agentmods.dev/skills/walm00/business-context-os/schedule-dispatcher"><img src="https://agentmods.dev/badge/skills/walm00/business-context-os/schedule-dispatcher/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 schedule-dispatcher

Your own site · 80×15
<a href="https://agentmods.dev/skills/walm00/business-context-os/schedule-dispatcher"><img src="https://agentmods.dev/badge/skills/walm00/business-context-os/schedule-dispatcher.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 120 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 11,645 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. 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.00120 $0.11645
Opus 5 $0.00060 $0.05823
Sonnet 5 $0.00024 $0.02329
Haiku 4.5 $0.00012 $0.01165

Measured 11d ago against content hash 89489fab9b3b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade B, and why

schedule-dispatcher scanned grade B 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

2. Read back the diary entries appended during this tick (use the dispatcher's in-memory record, or the tail of `.claude/hook_state/schedule-diary.jsonl` filtered to the current run's `ts` prefix if you're running on-dem
.claude/skills/schedule-dispatcher/SKILL.md · 737 lines

How it starts

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

Schedule Dispatcher

Purpose

One task, one report, one diary entry per job. The dispatcher replaces the previous model of 5 standalone scheduled tasks. It is invoked once per day, reads configuration, and runs whichever maintenance jobs are due.

The dispatcher never decides on its own to change frequencies or skip jobs that are due — it surfaces suggestions in the morning report and waits for the user to approve a change (via the schedule-tune skill).


Preconditions

Before doing anything, verify the working directory is a BCOS-enabled repo:

  1. Confirm .claude/quality/schedule-config.json exists
  2. Confirm docs/ exists
  3. Confirm .claude/hook_state/ exists (create if missing — used for diary)

If any are missing, stop and report: "Dispatcher invoked outside a BCOS repo, or BCOS is not fully installed. Run python .claude/scripts/update.py first."


Step 1: Read Configuration

Read .claude/quality/schedule-config.json. Validate required fields:

  • version (string)
  • jobs (object) — each entry must have enabled (bool) and schedule (string)
  • auto_fix.enabled (bool)
  • auto_fix.whitelist (array of strings)
  • digest (object) — write_file (bool) and path (string)

If the config is malformed, STOP. Emit a typed framework-config-malformed finding (schema 1.1.0+, category: "bcos-framework") with finding_attrs = {file: ".claude/quality/schedule-config.json", parse_error: "{message}" | null, missing_fields: [...] | null}. Write the minimum-shape sidecar (with this finding + overall_verdict: "red" + empty jobs[]) AND a framework-config-malformed row to .claude/hook_state/bcos-framework-issues.jsonl via the Step 7c writer pattern. Write a diary entry dispatcher.error with the validation failure. Report to the user: "schedule-config.json is malformed — fix before the dispatcher can run. Use the schedule-tune skill to repair it." Note: the chat-echo follows the error scenario template from Step 7.3, not the normal compact card.

Read the full file on GitHub · 737 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. 11d ago First seen · 737 lines · 120 tokens per session scan B 89489fab9b3b

Subscribe to this mod's changes

schedule-dispatcher is a skill published in the GitHub repository walm00/business-context-os (21 stars, last pushed 3mo ago), licensed MIT. It adds 120 tokens to every session and 11,645 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). 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

canvas-populate

Add content to existing Obsidian Canvas files. Supports all node types: images (with auto aspect ratio detection), text cards, PDFs, wiki notes, web links, Mermaid diagrams, SVGs, GIFs, AI-generated images via banana. Also adds zones (groups), edges between nodes, and imports recent banana images. Triggers on: canvas…

AgriciDaniel/claude-canvas · 104 tokens

canvas-create

Create new Obsidian Canvas files — blank with a starter structure, or from one of 12 template archetypes (presentation, flowchart, mind-map, gallery, dashboard, storyboard, knowledge-graph, mood-board, timeline, comparison, kanban, project-brief). Handles directory creation, slug generation, and starter zone setup.…

AgriciDaniel/claude-canvas · 90 tokens

canvas-layout

Re-layout existing Obsidian Canvas nodes using 6 spatial algorithms: grid (galleries, mood boards), dagre (flowcharts, org charts), radial (mind maps), force-directed (knowledge graphs), linear (timelines), and auto-detect. Preserves group membership, snaps to 20px grid, refits zones around content. Triggers on…

AgriciDaniel/claude-canvas · 104 tokens

recap

Read-only orientation — render a scannable table of what just happened so you can situate yourself. Modes: '/recap' (this session), '/recap arc' (the last product arc), '/recap commit' (the last commit), '/recap push' (the last push's commits — what I sent up), '/recap pull' (the last pull's changes — what came down…

mikeprasad/aria-knowledge · 215 tokens

digest

NOTE: this skill requires connected chat / email / project-tracker / docs MCPs, which are typically only present in Cowork — the Code variant exists for parity but most users will want the Cowork variant. Cross-tool rollup of what's pending, what shipped, and what's blocked across chat / email / project tracker /…

mikeprasad/aria-knowledge · 149 tokens

statusline

Install or remove the aria-knowledge status-line meter — a context-window progress bar plus the rolling 5-hour and 7-day plan-usage percentages, shown at the bottom of the Claude Code CLI. Use when the user says '/statusline', 'add a context meter', 'show context usage in the status line', 'show my 5-hour usage'…

mikeprasad/aria-knowledge · 137 tokens