hermes-cron-management

Automate recurring Hermes cron jobs using cron expressions and CLI.

Updated Apr 15, 2026
One-click install
npx skills add https://github.com/juliuss1907/knowledge-base --skill hermes-cron-management
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: hermes-cron-management
Source: https://github.com/juliuss1907/knowledge-base/tree/main/.hermes/skills/devops/hermes-cron-management
Command: npx skills add https://github.com/juliuss1907/knowledge-base --skill hermes-cron-management

SYSTEM DOCUMENTATION & REQUIREMENTS

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

What problem does it solve?

This Skill simplifies the creation and management of recurring Hermes cron jobs, allowing users to automate tasks at specific wall-clock times without manual intervention.

Core Features & Use Cases

  • Cron Job Creation: Create and schedule recurring cron jobs that run at specific times.
  • Cron Expression Handling: Utilize cron expressions to define the timing of the job.
  • CLI Integration: Interact with the cron jobs using the hermes cron create CLI.
  • Use Case: Automate daily tasks like running validation checks or generating reports without manual scheduling.

Quick Start

Run the following command on the VPS terminal to create a daily output validator job:

hermes cron create --name "Output Validator" --deliver origin --skill output-validator "0 23 * * *" "cd /home/julius/knowledge-base && Chạy Output Validator: đọc toàn bộ wiki/sources/*.md và wiki/concepts/*.md, validate content quality theo 4 dimensions. Viết report, gửi Telegram. Read-only. Giới hạn top 20 issues."

Frequently Asked Questions about hermes-cron-management

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

FAQPage Schema
How do I automate recurring Hermes tasks at specific wall-clock times?

You can automate recurring Hermes tasks by using the Hermes cron management skill to schedule time-bound operations like system maintenance and report generation without manual intervention.

What do I need to set up before scheduling cron jobs in Hermes?

Before scheduling cron jobs in Hermes, you need the Hermes platform and the croniter dependency installed in your environment to enable cron expression parsing and task scheduling.

How do I create a daily cron job using the Hermes CLI?

To create a daily cron job using the Hermes CLI, run the `hermes cron create` command with your job name, delivery origin, target skill, and a cron expression like "0 23 * * *" to define the execution schedule.

Can I use standard cron expressions to schedule Hermes maintenance tasks?

Yes, you can use standard cron expressions to schedule Hermes maintenance tasks, utilizing the croniter dependency to define exact timing intervals for your recurring operations.

What is the best way to manage time-bound operations like data validation in Hermes?

The best way to manage time-bound operations like data validation in Hermes is by creating recurring scheduled cron jobs that trigger automatically at specified times, eliminating the need for manual execution.