.agents/skills/scheduler/SKILL.md
| name | description | license | tags | |------|-------------|---------|------| | scheduler | Create, manage, and optimize scheduled tasks and recurring jobs. Supports cron expressions, interval-based triggers, time zone handling, and dependency chains between jobs. Use for automating periodic workflows. | MIT | --- scheduling automation cron jobs workflow | # Scheduler ## Overview Create and manage scheduled tasks, recurring jobs, and time-based automation workflows with support for cron exp
npx skillsauth add Greenmamba29/skillsdotmd_web .agents/skills/schedulerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
| name | description | license | tags | |------|-------------|---------|------| | scheduler | Create, manage, and optimize scheduled tasks and recurring jobs. Supports cron expressions, interval-based triggers, time zone handling, and dependency chains between jobs. Use for automating periodic workflows. | MIT | --- scheduling automation cron jobs workflow |
Create and manage scheduled tasks, recurring jobs, and time-based automation workflows with support for cron expressions, interval triggers, timezone handling, and job dependency chains.
DEFAULT_TIMEZONE=UTC
MAX_RETRIES=3
BACKOFF_STRATEGY=exponential
CONFLICT_CHECK=true
NOTIFY_ON_FAILURE=true
Input:
job_name: daily-report-generator
schedule: "0 9 * * 1-5"
timezone: America/New_York
command: python generate_report.py
depends_on: data-sync-job
retries: 2
Output:
Scheduled Job Created: daily-report-generator
Cron: 0 9 * * 1-5 (America/New_York -> 14:00 UTC)
Next runs:
Mon Feb 19 09:00 EST (14:00 UTC)
Tue Feb 20 09:00 EST (14:00 UTC)
Wed Feb 21 09:00 EST (14:00 UTC)
Dependency: waits for data-sync-job completion
Retry policy: 2 retries with exponential backoff
Conflicts: none detected
tools
Automate end-to-end new customer onboarding for SaaS and marketplace platforms. Use when onboarding new customers after signup or contract signing, including account provisioning in CRM (HubSpot/Salesforce), sending personalized welcome email sequences via SendGrid, creating and tracking onboarding checklists, scheduling kickoff calls via Calendly/Cal.com, monitoring customer health scores, and generating time-to-value reports. Triggers on tasks involving new customer setup, onboarding automation, welcome sequences, CSM task assignment, or onboarding health tracking.
development
Migrates Zapier zaps to Make.com scenarios automatically. Use when asked to convert, port, or recreate Zapier workflows in Make.com.
development
Routes, transforms and fans out webhook payloads across multiple services. Use when you need to receive an incoming webhook and dispatch it to multiple downstream endpoints with payload transformation.
tools
| name | description | license | tags | |------|-------------|---------|------| | webapp-testing | Generate and execute comprehensive test suites for web applications. Covers unit, integration, E2E, and visual regression tests. Analyzes application structure to create meaningful test cases with high coverage. | MIT | --- testing qa automation e2e playwright jest | # Webapp Testing ## Overview Generate and execute comprehensive test suites for web applications covering unit, integration, end-t