cron-auto-delivery

Automate cron job deliveries to configured targets without duplicate messages.

4|Updated May 14, 2026
One-click install
npx skills add https://github.com/liumeixin/hermes-skills --skill cron-auto-delivery
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: cron-auto-delivery
Source: https://github.com/liumeixin/hermes-skills/tree/main/devops/cron-auto-delivery
Command: npx skills add https://github.com/liumeixin/hermes-skills --skill cron-auto-delivery

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill streamlines the delivery of cron job outputs to configured targets, ensuring that messages are not duplicated and automatically delivered, while also providing a direct response output.

Core Features & Use Cases

  • Avoid Duplicate Messages: Prevents sending send_message_tool() to the same target as the cron job's auto-delivery, thus avoiding duplicates.
  • Direct Response Output: Prints the report content directly as the final response, leveraging the cron delivery mechanism.
  • Use Case: For cron jobs that require both auto-delivery and additional messaging to different targets or channels, this Skill ensures that the process is efficient and accurate.

Quick Start

Configure your cron job to auto-deliver messages and include the intended message content in the final print statement or response.

Frequently Asked Questions about cron-auto-delivery

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

FAQPage Schema
How do I avoid duplicate messages when using cron job auto-delivery?

To avoid duplicate messages in cron job auto-delivery, you can use a script that prevents sending send_message_tool() to the same target already configured for auto-delivery, printing the report content directly as the final response instead.

What is the best way to manage cron job deliveries to multiple targets without duplicates?

The best way to manage cron job deliveries without duplicates is to let the cron delivery mechanism handle the primary target via direct response output, while reserving send_message_tool() for additional targets or channels only.

How do I configure a cron job to auto-deliver output content directly?

To configure a cron job for auto-delivery, set up the job with auto-delivery enabled and include the intended message content in the final print statement or response, allowing the cron delivery mechanism to output the report directly.

Why does my cron job send duplicate messages to the same target?

Your cron job likely sends duplicate messages because it uses both an auto-delivery configuration and a send_message_tool() call targeting the same destination, rather than relying on the direct response output mechanism.

Can I use send_message_tool for different channels while keeping cron auto-delivery active?

Yes, you can use send_message_tool for different channels while keeping cron auto-delivery active, as this approach prevents duplicates by ensuring the tool is not sending to the same target already covered by the auto-delivery mechanism.

When do I need a script to handle cron job message delivery?

You need a script to handle cron job message delivery when your cron jobs require both auto-delivery to a primary target and additional messaging to different targets, ensuring efficient and accurate duplicate avoidance.