atomic-framework-queue-scheduler-telemetry

Manage Atomic Framework queue jobs, scheduled tasks, and telemetry diagnostics.

9|1|Updated Apr 29, 2026
One-click install
npx skills add https://github.com/MADEVAL/Atomic-Framework-Skills --skill atomic-framework-queue-scheduler-telemetry
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: atomic-framework-queue-scheduler-telemetry
Source: https://github.com/MADEVAL/Atomic-Framework-Skills/tree/main/atomic-framework-queue-scheduler-telemetry
Command: npx skills add https://github.com/MADEVAL/Atomic-Framework-Skills --skill atomic-framework-queue-scheduler-telemetry

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill removes the guesswork from building reliable background processing, scheduled automation, and runtime diagnostics in Atomic Framework.

Core Features & Use Cases

  • Queue Operations: Push jobs, process workers, retry failures, delete jobs, and inspect queue state across database or Redis drivers.
  • Scheduler Automation: Define cron-style tasks with frequency rules, conditional execution, and overlap protection for safe recurring work.
  • Telemetry Diagnostics: Inspect jobs, events, logs, hive data, and runtime snapshots through the /telemetry panel and related routes.
  • Use Case: A team can enqueue email and image-processing jobs, run nightly cleanup tasks, and quickly investigate failures from the telemetry dashboard.

Quick Start

Use this skill to show how to enqueue a job, define a protected scheduled task, and open the telemetry panel for troubleshooting.

Frequently Asked Questions about atomic-framework-queue-scheduler-telemetry

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

FAQPage Schema
How do I schedule cron jobs in PHP with overlap protection?

To schedule cron jobs with overlap protection in PHP, define cron-style tasks with frequency rules and mutex-backed locks. This ensures safe recurring work by preventing concurrent executions of the same scheduled task.

How do I push and retry failed queue jobs in PHP workers?

Push and retry failed queue jobs by enqueuing deterministic handlers via database or Redis drivers, then processing them with workers. Failed jobs are captured automatically and can be retried or deleted through CLI commands.

What is the best way to monitor PHP background job failures and runtime logs?

Monitor PHP background job failures and runtime logs through a dedicated telemetry panel. Inspect job states, events, hive data, and filtered log views to quickly investigate and troubleshoot processing issues.

Can I run queue workers and scheduled tasks from the CLI in Atomic Framework?

Yes, you can run queue workers and scheduled tasks from the CLI. The framework supports CLI execution for processing jobs and dispatching cron-style tasks alongside production guardrails for safe operations.

Does Atomic Framework queue scheduling support both database and Redis drivers?

Atomic Framework queue scheduling supports both database and Redis drivers. You can push, process, and inspect jobs across either driver while maintaining deterministic handler execution and retry management.