Skylv Cron Parser

v1.0.0

Parses, validates, and explains cron expressions. Converts between human-readable and cron format. Triggers: parse cron, validate cron, cron expression.

0· 107·0 current·1 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for sky-lv/skylv-cron-parser.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Skylv Cron Parser" (sky-lv/skylv-cron-parser) from ClawHub.
Skill page: https://clawhub.ai/sky-lv/skylv-cron-parser
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Canonical install target

openclaw skills install sky-lv/skylv-cron-parser

ClawHub CLI

Package manager switcher

npx clawhub@latest install skylv-cron-parser
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name and description match the SKILL.md content (parsing/validation/explanation of cron expressions). No unrelated environment variables, binaries, or install steps are requested.
Instruction Scope
SKILL.md contains only cron format, examples, and validation rules; it does not instruct the agent to read files, access environment variables, call external endpoints, or perform any privileged operations.
Install Mechanism
No install spec or code files are present; this is an instruction-only skill so nothing is written to disk or fetched at install time.
Credentials
The skill requires no credentials, config paths, or environment variables — appropriate for a local parser/explainer.
Persistence & Privilege
always is false and the skill does not request persistent/privileged presence or modify other skills or system settings.
Assessment
This skill appears safe and coherent: it only documents cron syntax and validation rules and requests no access to your system or secrets. Before installing, consider whether you want the agent to be able to edit or install cron jobs on your system — if you do, that would require additional permissions that this skill does not request. If a future version adds network access, file paths (e.g., /etc/crontab), or environment variables for system credentials, treat those changes as higher risk and re-evaluate.

Like a lobster shell, security has layers — review code before you run it.

latestvk97dvmxft3g2s1mp7hmfs6amtn856h4p
107downloads
0stars
1versions
Updated 1w ago
v1.0.0
MIT-0

Cron Expression Parser

Overview

Parses, validates, and explains cron expressions.

Cron Format


| | | | | | | | | day of week | | | month | | day of month | hour minute

Common Patterns

          • Every minute 0 * * * * Every hour 0 0 * * * Daily at midnight 0 9 * * 1-5 Weekdays at 9 AM */5 * * * * Every 5 minutes 0 0 1 * * First day of month

Popular Crontab

@yearly = 0 0 1 1 * @monthly = 0 0 1 * * @weekly = 0 0 * * 0 @daily = 0 0 * * * @hourly = 0 * * * *

Validation

Minute: 0-59, Hour: 0-23, Day: 1-31, Month: 1-12, Weekday: 0-6 Use - for ranges (1-5), , for lists (1,3,5), / for steps (*/5)

Comments

Loading comments...