config-schedule

config-schedule is a skill for Claude Code from vibesurf-ai/claude-surf. It costs 32 tokens per session (737 once invoked), scanned A, original, MIT.

A scheduler for VibeSurf workflows. It uses cron expressions, a format for describing recurring times, to run workflows automatically.

In plain words
What is it for?
Use it to create, view, update, or manage schedules such as running a workflow every weekday at 9 AM.
Why use it?
It removes the need to start recurring workflows by hand and provides a way to enable, disable, or change their timing.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the surf plugin — 21 skills, 1 hook shipped together

Good fit Use it to create, view, update, or manage schedules such as running a workflow every weekday at 9 AM.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vibesurf-ai/claude-surf/config-schedule
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 vibesurf-ai/claude-surf --skill config-schedule
Clone the repo
git clone --depth 1 https://github.com/vibesurf-ai/claude-surf

Made for: Claude Code.

Or install surf, the plugin that ships this one along with the rest of its 21 skills, 1 hook.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/vibesurf-ai/claude-surf/config-schedule/github.svg)](https://agentmods.dev/skills/vibesurf-ai/claude-surf/config-schedule)
Your own site
<a href="https://agentmods.dev/skills/vibesurf-ai/claude-surf/config-schedule"><img src="https://agentmods.dev/badge/skills/vibesurf-ai/claude-surf/config-schedule/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 config-schedule

Your own site · 80×15
<a href="https://agentmods.dev/skills/vibesurf-ai/claude-surf/config-schedule"><img src="https://agentmods.dev/badge/skills/vibesurf-ai/claude-surf/config-schedule.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 737 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.00032 $0.00737
Opus 5 $0.00016 $0.00368
Sonnet 5 $0.00006 $0.00147
Haiku 4.5 $0.00003 $0.00074

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

Security

Grade A, and why

config-schedule 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 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.

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.

skills/config-schedule/SKILL.md · 98 lines

How it starts

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

Config Schedule - Workflow Schedule Management

Overview

Manage scheduled workflow executions using cron expressions. Schedule workflows to run automatically at specified times.

When to Use

  • User wants to schedule a workflow to run automatically
  • User needs to set up cron-based workflow triggers
  • User wants to enable/disable existing schedules
  • User needs to view or update workflow schedules
  • User wants to see which workflows have schedules configured

API Endpoints

Base path: $VIBESURF_ENDPOINT/api/schedule

Schedule Management

Action Method Endpoint Description
List Schedules GET /api/schedule Get all workflow schedules
Get Schedule GET /api/schedule/{flow_id} Get schedule for specific workflow
Create Schedule POST /api/schedule Create new schedule for a workflow
Update Schedule PUT /api/schedule/{flow_id} Update existing schedule

Request Examples

Create Schedule

POST /api/schedule
{
  "flow_id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
  "cron_expression": "0 9 * * 1-5",
  "is_enabled": true,
  "description": "Run every weekday at 9 AM"
}

Update Schedule

PUT /api/schedule/{flow_id}
{
  "cron_expression": "0 12 * * *",
  "is_enabled": true,
  "description": "Run daily at noon"
}

Enable/Disable Schedule

PUT /api/schedule/{flow_id}
{
  "is_enabled": false
}

Schedule Fields

Field Type Required Description
flow_id string Yes Workflow/Flow ID to schedule
cron_expression string No Cron expression (e.g., '0 9 * * 1-5')
is_enabled bool No Whether the schedule is active
description string No Description of the schedule

Cron Expression Format

Standard cron format: minute hour day_of_month month day_of_week

Expression Description
0 9 * * 1-5 Every weekday at 9:00 AM
0 12 * * * Every day at 12:00 PM
0 */6 * * * Every 6 hours
0 0 * * 0 Every Sunday at midnight
0 8,20 * * * At 8:00 AM and 8:00 PM daily

Read the full file on GitHub · 98 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 · 98 lines · 32 tokens per session scan A 73a1bb5a940b

Subscribe to this mod's changes

config-schedule is a skill published in the GitHub repository vibesurf-ai/claude-surf (24 stars, last pushed 7mo ago), licensed MIT. It adds 32 tokens to every session and 737 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-30.

Related

Other skills, from other repositories

moai-workflow-worktree

Git worktree management for parallel SPEC development with isolated workspaces, automatic branch registration, and seamless MoAI-ADK integration. Use when setting up parallel development environments.

modu-ai/moai-adk · 41 tokens

moai-kanban-foreman

One unattended kanban foreman iteration: watch the backlog queue, dispatch the next operator-picked card to an isolated worker, collect completion evidence on read (not on claims), and report. This is the body the project's loop.md driver invokes each iteration of a bare /loop; it can also be invoked directly to test…

modu-ai/moai-adk · 76 tokens

moai-workflow-project

Integrated project management system covering documentation, language initialization, template optimization, docs generation, and JIT document loading. Absorbed from moai-workflow-templates, moai-docs-generation, and moai-workflow-jit-docs.

modu-ai/moai-adk · 55 tokens

memstack-business-client-onboarding

Use this skill when the user says 'client onboarding', 'new client', 'onboard client', 'kickoff meeting', 'intake form', 'welcome email', or needs welcome sequences, questionnaires, and setup checklists for new clients. Do NOT use for contracts or invoicing.

cwinvestments/memstack · 65 tokens

memstack-product-roadmap-builder

Use this skill when the user says 'roadmap', 'product roadmap', 'quarterly plan', 'now/next/later', 'OKRs', or needs strategic planning with themes, milestones, resource allocation, and stakeholder-ready views. Do NOT use for MVP scoping or sprint-level planning.

cwinvestments/memstack · 67 tokens

memstack-product-user-story-generator

Use this skill when the user says 'user stories', 'write stories', 'backlog', 'sprint planning', 'acceptance criteria', or needs prioritized stories with Given/When/Then criteria and story point estimates. Do NOT use for full PRDs or detailed feature specs.

cwinvestments/memstack · 64 tokens