loop

Schedule commands to run at regular intervals for recurring tasks.

Updated May 15, 2026
One-click install
npx skills add https://github.com/qazz92/glm-code --skill loop-qazz92
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: loop
Source: https://github.com/qazz92/glm-code/tree/main/packages/core/src/skills/bundled/loop
Command: npx skills add https://github.com/qazz92/glm-code --skill loop-qazz92

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill automates the scheduling of recurring tasks, saving you time and ensuring regular maintenance or checks without manual intervention.

Core Features & Use Cases

  • Recurring Task Scheduling: Schedule tasks to run at specified intervals (e.g., every 5 minutes, every hour, every day).
  • Task Execution: Execute a prompt or command at the scheduled interval.
  • List and Clear Jobs: Provides commands to list all scheduled tasks and clear them if needed.
  • Use Case: Use /loop to schedule regular checks of your system or to run automated tests at specific intervals.

Quick Start

Set up a recurring loop to check the build every 10 minutes with the command: /loop 10m check the build.

Frequently Asked Questions about loop

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

FAQPage Schema
How do I schedule recurring tasks to run at regular intervals?

Recurring task scheduling automates commands to execute at specified intervals like every 10 minutes or daily. You can set up regular checks or maintenance operations using simple interval syntax without manual intervention.

What is task automation and when do I need it for repetitive checks?

Task automation executes predetermined commands at regular intervals to ensure consistency. You need it when performing repetitive system checks or maintenance operations that require scheduled execution without manual effort.

How do I automate a prompt to run every 10 minutes for build checks?

To automate a prompt at a 10-minute interval, use the loop command with the duration and task description. For example, schedule a recurring build check by specifying 10m as the interval followed by your desired command.

Can I list all scheduled tasks and clear them when needed?

Yes, you can list all scheduled tasks and clear them using provided commands. These functions allow you to view active recurring jobs and remove them when maintenance operations are no longer required.

Does prompt scheduling work for running automated tests at specific intervals?

Prompt scheduling supports running automated tests at specified intervals like hourly or daily. It executes your test commands at the scheduled times, ensuring regular verification without manual intervention.

What are the limitations of using cron-style scheduling for recurring task execution?

Cron-style scheduling automates recurring commands but requires commands to be valid and executable at runtime. Complex dependencies between scheduled tasks are not managed, so each scheduled job runs independently without conditional logic.