erpnext-impl-scheduler
Installation
SKILL.md
ERPNext Scheduler - Implementation
This skill helps you implement scheduled tasks and background jobs. For exact syntax, see erpnext-syntax-scheduler.
Version: v14/v15/v16 compatible
Main Decision: What Are You Trying to Do?
┌─────────────────────────────────────────────────────────────────────┐
│ SCHEDULER DECISION │
├─────────────────────────────────────────────────────────────────────┤
│ │
│ Run at fixed intervals or times? │
│ ├── YES → Scheduler Event (hooks.py) │
│ │ See: references/workflows.md §1-2 │
│ │ │
│ └── NO → Run in response to user action? │
│ ├── YES → frappe.enqueue() │
Related skills