create-cron

Create cron jobs with cron expressions and execute JavaScript in a sandbox.

Updated Jun 12, 2026
One-click install
npx skills add https://github.com/Alif-N/fe-sima-arome --skill create-cron
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: create-cron
Source: https://github.com/Alif-N/fe-sima-arome/tree/main/.agents/skills/create-cron
Command: npx skills add https://github.com/Alif-N/fe-sima-arome --skill create-cron

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill solves the problem of needing to run scheduled tasks and background processing automatically. It allows for the creation and management of cron jobs, which are executed at predetermined times without the need for manual intervention.

Core Features & Use Cases

  • Cron Job Creation: Set up recurring jobs with cron expressions for tasks like backups, data synchronization, and report generation.
  • Sandboxed Execution: Run JavaScript code in a secure sandbox environment, ensuring that no malicious actions can be performed.
  • Timezone Support: Configure cron jobs to run in any timezone, making it suitable for global operations.
  • Execution History: Track the history of job runs, including success and error details.
  • Overlap Protection: Ensure that no two cron jobs run simultaneously to avoid conflicts.
  • Use Case: Use this Skill to schedule a nightly backup of your database, or to sync your calendar with an external service at regular intervals.

Quick Start

Use the create-cron skill to set up a daily backup of your database. Run the following command: create-cron create name:"daily-backup" description:"Backup the database daily" schedule:"0 2 * * *" timezone:"UTC" code:"const db = await services.db(); await db.backup();"

Frequently Asked Questions about create-cron

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate recurring tasks with cron expressions and JavaScript?

To automate recurring tasks, you create cron jobs using cron expressions and execute JavaScript code in a sandboxed environment. This allows tasks to run at predetermined intervals without manual intervention.

Can I run scheduled background processing in a specific timezone?

Yes, scheduled background processing supports timezone-specific scheduling. You can configure cron jobs to run in any timezone, making it suitable for global operations and synchronized data synchronization.

Does sandboxed JavaScript execution protect against malicious code during task automation?

Sandboxed JavaScript execution ensures that no malicious actions can be performed during task automation. Code runs in a secure sandbox environment, preventing unauthorized access while executing scheduled cron jobs.

What is the best way to prevent overlapping cron jobs during background processing?

The best way to prevent overlapping cron jobs is using built-in overlap protection. This ensures that no two cron jobs run simultaneously, avoiding conflicts during background processing and data synchronization.

How do I track execution history for scheduled cron jobs?

You can track execution history for scheduled cron jobs by viewing built-in execution logs. The history tracks job runs including success and error details, providing visibility into background processing outcomes.