delayed-command

Schedule and execute Bash commands after user-defined delays.

69|3|Updated Feb 5, 2026
One-click install
npx skills add https://github.com/PaulRBerg/agent-skills --skill delayed-command
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: delayed-command
Source: https://github.com/PaulRBerg/agent-skills/tree/main/skills/delayed-command
Command: npx skills add https://github.com/PaulRBerg/agent-skills --skill delayed-command

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill enables you to schedule and execute shell commands after a user-specified delay, turning manual waiting into automated execution.

Core Features & Use Cases

  • Delayed execution: Schedule any Bash command to run after a given duration (e.g., 5m, 1h30m).
  • Flexible timing: Supports common duration formats and optional in-background execution for long delays.
  • Use Case: Wait 15 minutes and run a build script, or delay a deployment in a development workflow to test timing.

Quick Start

Wait 10 minutes and run npm test.

Frequently Asked Questions about delayed-command

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

FAQPage Schema
How do I schedule a shell command to run after a delay?

Schedule shell commands to run after a delay by specifying the duration and command. The Skill automates execution after your defined wait time, supporting formats like 5m or 1h30m, and handles both synchronous execution for short delays and background execution for longer ones.

What duration formats does delayed command execution support?

Delayed command execution supports common duration formats including minutes (5m), hours (1h), and combined formats (1h30m). The Skill parses these formats and schedules your bash command to run precisely after the specified time elapses.

Can I run a command in the background while waiting for a delay?

Yes, the Skill supports optional background execution for longer delays, allowing your workflow to continue without blocking. For short delays it runs synchronously, and for longer delays you can execute in the background and receive a task identifier for status tracking.

What are common use cases for delayed command execution in development workflows?

Delayed execution suits CI-like tasks and personal automation: wait before running tests, pause before triggering builds, or stagger deployments in development environments. Any scenario requiring time-based task sequencing benefits from automated delay scheduling instead of manual waiting.

How do I check the status of a delayed command after it completes?

The Skill returns a task identifier and status upon completion, allowing you to track execution results. Query this identifier to monitor whether your delayed command finished successfully or encountered errors.