localsetup-cron-orchestrator

Coordinate repo-local cron triggers and tasks into crontab fragments.

3|2|Updated Dec 25, 2025
One-click install
npx skills add https://github.com/cptnfren/localsetup --skill localsetup-cron-orchestrator
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: localsetup-cron-orchestrator
Source: https://github.com/cptnfren/localsetup/tree/main/_localsetup/skills/localsetup-cron-orchestrator
Command: npx skills add https://github.com/cptnfren/localsetup --skill localsetup-cron-orchestrator

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires pyyaml, and includes scripts (resource) components.

What problem does it solve?

Repo-local cron orchestration provides a centralized manifest to manage time-based and on-boot cron tasks within a project, ensuring repeatable automation and predictable execution across environments.

Core Features & Use Cases

  • Define triggers with schedules or on-boot delays in a single cron manifest.
  • Add, remove, reorder, enable, and disable tasks for precise control over execution order.
  • Install generated cron fragments into system crontab for seamless integration with local development or deployment workflows.

Quick Start

Create a manifest at cron/manifest.yaml defining triggers and tasks, then run the run_trigger script to execute a chosen trigger.

Frequently Asked Questions about localsetup-cron-orchestrator

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

FAQPage Schema
What is a cron manifest and when do I need it for task scheduling?

A cron manifest centralizes time-based and on-boot task scheduling within a project. It is needed when you require predictable task execution, on-boot delays, and precise control over execution order across multiple automation steps.

Can I schedule cron tasks with on-boot delays for local development workflows?

Yes, you can schedule cron tasks with on-boot delays by defining them as triggers in the cron manifest. This allows precise orchestration of automation steps that must wait for the system to boot before executing.

How do I reorder or disable scheduled tasks in my automation workflow?

You reorder or disable scheduled tasks by editing the cron manifest file. This centralized manifest lets you add, remove, reorder, enable, and disable tasks to maintain precise control over the execution order of your automation workflow.

What's the best way to orchestrate multi-step task execution using cron?

The best way to orchestrate multi-step task execution is using a centralized cron manifest with a runner script. This approach coordinates triggers and sequences tasks predictably, avoiding manual crontab editing for complex local automation workflows.