OPOS: Skill for Claude Code

.claude/skills/list-scheduled-processes/SKILL.md

list-scheduled-processes is a skill for Claude Code from Koroqe/OPOS. It costs 58 tokens per session (1,628 once invoked), scanned A, original, MIT.

A read-only checker that compares declared schedules with the live scheduled jobs and reports missing, disabled, extra, changed, or invalid entries.

In plain words
What is it for?
Use it to inventory scheduled processes and investigate schedule drift across Claude Code CronList, cloud triggers, or GitHub Actions workflows.
Why use it?
It shows when written scheduling plans no longer match what is actually registered, including overlapping run times.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths; mentions Claude Code.

This is Koroqe/OPOS's own configuration. It tells Claude Code how to work on OPOS 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 OPOS configures →

View source ↗ Koroqe/OPOS
Reuse

Borrowing it

Nothing to install: this file belongs to Koroqe/OPOS. 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/Koroqe/OPOS/main/.claude/skills/list-scheduled-processes/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Koroqe/OPOS

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 list-scheduled-processes

README.md
[![agentmods](https://agentmods.dev/badge/skills/koroqe/opos/list-scheduled-processes/github.svg)](https://agentmods.dev/skills/koroqe/opos/list-scheduled-processes)
Your own site
<a href="https://agentmods.dev/skills/koroqe/opos/list-scheduled-processes"><img src="https://agentmods.dev/badge/skills/koroqe/opos/list-scheduled-processes/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 list-scheduled-processes

Your own site · 80×15
<a href="https://agentmods.dev/skills/koroqe/opos/list-scheduled-processes"><img src="https://agentmods.dev/badge/skills/koroqe/opos/list-scheduled-processes.svg" alt="Reviewed on agentmods" width="80" 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,628 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.01628
Opus 5 $0.00029 $0.00814
Sonnet 5 $0.00012 $0.00326
Haiku 4.5 $0.00006 $0.00163

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

Security

Grade A, and why

list-scheduled-processes 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 9d 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/list-scheduled-processes/SKILL.md · 72 lines

How it starts

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

list-scheduled-processes

When to use

To inventory the current scheduling state of the company OR to detect drift between PROCESS.md declarations and Claude Code's live cron registrations. Invoke as /list-scheduled-processes (no arguments).

Read-only. Does NOT modify cron registrations, the local cache, or any PROCESS.md. Safe to run on a fresh machine — CronList is the authoritative source of live registrations for runtime: claude-schedule, NOT the local .claude/scheduled-processes.json cache. For runtime: cloud (v0.14) the authoritative source is RemoteTrigger {action: "list"}: a declared-cloud process is LIVE when a routine named opos-<process-name> exists AND is enabled (disabled → report DISABLED, not MISSING — it was unscheduled, not lost); cross-check its cron_expression against the declaration (remembering the UTC shift + jitter) for DRIFT; surface next_run_at and, for failure triage, point at {action: "list_runs", trigger_id}{action: "get_run_log", session_id}. For runtime: gha (v0.10) the authoritative source is the workflow file: a declared-gha process is LIVE when .github/workflows/opos-<process-name>.yml exists (cross-check its cron against the declaration for DRIFT); best-effort, also surface the last run's conclusion via gh run list --workflow opos-<name>.yml --limit 1 and warn when the ANTHROPIC_API_KEY secret is absent (gh secret list).

Prerequisite: the user must be logged into Claude Code (claude login). CronList authenticates against the user's subscription.

Inputs

None.

Steps

  1. Glob and parse PROCESS.md candidates. Glob **/PROCESS.md rooted at repo root. For each, parse frontmatter and categorize:
    • Declared (valid): all 4 scheduling fields present AND ui.scheduling.validate_frontmatter returns (True, []). Record process_name, schedule, authority, path.
    • Declared (invalid): at least 1 scheduling field present but validate_frontmatter returned errors. Record process_name, path, and the error list.
    • Undeclared: none of the 4 scheduling fields present. Skip (manual-only process — not relevant to this inventory).

Read the full file on GitHub · 72 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. 9d ago First seen · 72 lines · 58 tokens per session scan A 11591de16e30

Subscribe to this mod's changes

list-scheduled-processes is a skill published in the GitHub repository Koroqe/OPOS (2 stars, last pushed 7d ago), licensed MIT. It adds 58 tokens to every session and 1,628 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