schedule-process

schedule-process is a skill for Claude Code, Codex from Koroqe/OPOS. It costs 46 tokens per session (5,076 once invoked), scanned A, original, MIT.

A command that turns a schedule declared in a PROCESS.md file into a recurring job using Claude Code’s built-in scheduler.

In plain words
What is it for?
Use it to activate a declared process schedule, such as a daily or weekly routine, with `/schedule-process <process-name>`. The user must be logged into Claude Code.
Why use it?
It checks the schedule settings and records the job ID, so activation does not require manually rebuilding the scheduler request. Jobs may be limited to the current Claude Code session and can expire after seven days.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/koroqe/opos/schedule-process
Any agent
npx skills add Koroqe/OPOS --skill schedule-process
Clone the repo
git clone --depth 1 https://github.com/Koroqe/OPOS

Made for: Claude Code, Codex.

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-process

README.md
[![agentmods](https://agentmods.dev/badge/skills/koroqe/opos/schedule-process.svg)](https://agentmods.dev/skills/koroqe/opos/schedule-process)
Your own site
<a href="https://agentmods.dev/skills/koroqe/opos/schedule-process"><img src="https://agentmods.dev/badge/skills/koroqe/opos/schedule-process.svg" alt="Measured on agentmods" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,076 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00046 $0.05076
Opus 5 $0.00023 $0.02538
Sonnet 5 $0.00009 $0.01015
Haiku 4.5 $0.00005 $0.00508

Measured 4d ago against content hash 81008bd85ec6, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

schedule-process 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 4d 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.

.claude/skills/schedule-process/SKILL.md · 142 lines

How it starts

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

schedule-process

When to use

When a PROCESS.md has the 4 scheduling frontmatter fields set (schedule, runtime, non_interactive, authority — see ui/scheduling.py) and the user wants to activate the schedule. Invoke as /schedule-process <process-name>.

This skill is a wrapper around Claude Code's built-in CronCreate tool. It does not implement cron itself; it composes a routine prompt + authority prelude, validates the intent against the in-repo declaration, calls CronCreate, and caches the resulting routine id locally for fast lookup by sibling skills (unschedule-process, list-scheduled-processes).

Prerequisite: the user must be logged into Claude Code (claude login). The built-in cron tools authenticate against the user's Claude Code subscription. No additional OPOS setup is required.

Persistence contract (v0.9.1 — surface this to the user at every registration)

CronCreate's persistence varies by Claude Code build. In current builds registrations are session-scoped: jobs live in the running session's memory, are not written to disk, die when the session exits, and recurring jobs auto-expire after 7 days. A "registered" process therefore silently stops firing when the founder's session ends — worse than RISKS Risk 20's silent-failure case, because even the registration disappears.

Operating rules that follow:

  1. Step 8a below is mandatory: after CronCreate returns, inspect its response for the persistence markers (e.g. "session-only", "auto-expires") and print the contract to the user verbatim. Never let a registration look durable when the tool said otherwise.
  2. Session-scoped mode → re-arm per session. Re-running /schedule-process <name> is idempotent (step 7), so the standing remedy is simply to re-run it in each new session. The recommended self-healing setup is a SessionStart hook in the consumer's .claude/settings.json that emits a reminder when .claude/scheduled-processes.json lists processes (the session then re-registers silently — the original registration already supplied the human authorization for the same unchanged declaration; any DIFFERENT cron/authority still goes through step 7's confirm):
    "hooks": {"SessionStart": [{"hooks": [{"type": "command", "command": "python3 -c \"import json,os; p='.claude/scheduled-processes.json'; rows=json.load(open(p)) if os.path.exists(p) else []; print('[opos-scheduler] ' + str(len(rows)) + ' scheduled process(es) declared (' + ', '.join(r['process_name'] for r in rows) + '). CronCreate registrations are session-scoped: re-run /schedule-process for each to re-arm this session (idempotent; previously authorized).') if rows else None\""}]}]}
    
  3. Durable path A — runtime: cloud (SHIPPED v0.14; RECOMMENDED for most consumers). Each fire spawns an isolated Claude Code session in Anthropic's cloud with its own fresh checkout of the repo, on the declared cron. Billed to the operator's Claude subscription — no Anthropic API key and no separate API billing. Prerequisite: the operator's GitHub account is connected to claude.ai (the Claude GitHub App, https://claude.ai/code/onboarding?magic=github-app-setup) with access to the repo — without it, registration fails with "Connect your GitHub account before saving a routine that uses a GitHub repository." The cloud session starts with ZERO context: the composed prompt must be self-contained (see step 4b). Runs are visible at https://claude.ai/code/routines with per-run logs — that page is the liveness signal for this runtime.

Read the full file on GitHub · 142 lines

Files

What ships with it

3 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.

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. 4d ago First seen · 142 lines · 46 tokens per session scan A 81008bd85ec6

Subscribe to this mod's changes

schedule-process is a skill published in the GitHub repository Koroqe/OPOS (2 stars, last pushed 2d ago), licensed MIT. It adds 46 tokens to every session and 5,076 once invoked, about $0.0002 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.