scheduled-jobs
Installation
SKILL.md
Scheduled Job Development
Overview
This skill covers creating and managing ServiceNow scheduled jobs for automated background processing:
- Scheduled Script Executions (
sysauto_script) - Recurring jobs with cron-like scheduling - System Triggers (
sys_trigger) - One-time or conditional job executions - Run frequency patterns - Daily, weekly, monthly, and cron expressions
- Conditional execution - Run only when specific conditions are met
- Performance optimization - Filter to records needing processing (critical!)
- Error handling - Robust error management and notifications
- Monitoring and debugging - Track execution history and troubleshoot issues
When to use: When you need to automate recurring tasks, batch processing, data cleanup, notifications, or any background operations that run on a schedule.
Who should use this: Developers and administrators who need to automate ServiceNow operations without user intervention.