schedule-host-job

Schedule one-off or recurring container commands on the host via atd.

6|Updated Feb 15, 2026
One-click install
npx skills add https://github.com/verkyyi/always-on-claude --skill schedule-host-job
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: schedule-host-job
Source: https://github.com/verkyyi/always-on-claude/tree/main/scripts/runtime/codex-home/skills/schedule-host-job
Command: npx skills add https://github.com/verkyyi/always-on-claude --skill schedule-host-job

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Use the always-on-claude schedule bridge to submit commands from the container to the host. The host validates requests, submits them to atd, and later runs the command inside the claude-dev container with docker compose exec.

Core Features & Use Cases

  • Schedule one-off or recurring commands to run on the host from within a Claude container session.
  • Supports at-based (one-time) and cron-style (recurring) schedules, with optional working directory and command, and status/logs retrieval.
  • Safe, with host validation and guidance to avoid unsafe actions (no host shell access when not allowed).

Quick Start

Run the schedule bridge to enqueue a one-off or recurring job from your container session.

Frequently Asked Questions about schedule-host-job

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

FAQPage Schema
How do I schedule a cron job to run on the host from inside a container session?

To schedule a cron job from a container session, you can use a host scheduling bridge to validate and submit commands to the host's atd service, which later runs them inside the container.

Can I run one-off commands on the host at a specific time from a Claude container?

Yes, you can run one-off commands at a specific time by submitting at-based schedules through the host bridge, which queues the task in the atd service for execution.

What is needed to execute scheduled host tasks from a claude-dev container?

Executing scheduled host tasks requires a host scheduling bridge for validation, the atd service running on the host, and the ability to run docker compose exec inside the claude-dev container.

How do I retrieve the status and logs of a scheduled container session command?

You can retrieve the status and logs of scheduled container session commands by querying the schedule bridge, which tracks the execution results of tasks submitted to the host.

Is it safe to allow container sessions to schedule and execute commands on the host?

Yes, the host scheduling bridge validates requests and provides guidance to avoid unsafe actions, ensuring no host shell access is allowed when not permitted.

How do I set up recurring overnight automation tasks from my Claude container?

You can set up recurring overnight automation by submitting cron-style schedules through the schedule bridge, which enqueues the recurring job on the host to run inside the container.