← Back to Skills Marketplace
Auto Loop
by
pagoda111king
· GitHub ↗
· v1.0.0
· MIT-0
102
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install auto-loop
Description
提供定时触发、任务调度、状态追踪及失败自动恢复的自动化任务调度功能。
README (SKILL.md)
Auto Loop Skill
技能描述
提供自动化任务调度功能,支持定时触发、任务调度、状态追踪和自动恢复。
触发条件
当用户需要:
- 定时执行任务
- 周期性运行脚本
- 自动化例行工作
- 监控和恢复失败任务
使用方式
每小时执行:[任务]
每天 [时间] 运行:[任务]
定时执行这个:[任务]
核心功能
- 定时触发: Cron 表达式或固定间隔
- 任务调度: 优先级队列和并发控制
- 状态追踪: 执行历史和统计
- 自动恢复: 失败重试和恢复
配置选项
retries:
max: 3
delay: 5000
scheduler:
maxConcurrent: 5
persistInterval: 60000
依赖
- Node.js 内置模块
版本历史
- v1.0.0: 初始版本
Usage Guidance
This package is internally consistent as a local Node.js scheduler. Before running: (1) review any task handler code you add — handlers execute arbitrary code and can access network/files; (2) be aware the skill creates a local 'auto-loop-state' directory and writes JSON state files in the working directory; (3) run the tests in a sandboxed environment first if you plan to use it in production; (4) if you allow the agent to invoke skills autonomously, ensure your policy for what tasks it may schedule/execute is constrained (autonomous invocation is allowed by default but not flagged here).
Capability Analysis
Type: OpenClaw Skill
Name: auto-loop
Version: 1.0.0
The 'auto-loop' skill is a standard task scheduling and automation framework implemented using Node.js built-in modules (fs, path, crypto, events). It provides functionality for cron-based scheduling, task persistence, and error recovery with exponential backoff. Analysis of src/index.js and SKILL.md reveals no evidence of malicious intent, data exfiltration, or prompt injection; the code logic is transparent, well-structured, and strictly follows its stated purpose of managing periodic tasks.
Capability Tags
Capability Assessment
Purpose & Capability
Name/description, README, SKILL.md, and included source implement a local task scheduler (cron/interval/once, retries, persistence). Required artifacts (no env vars, built-in Node modules only) match the stated purpose.
Instruction Scope
SKILL.md gives scoped usage examples and config for scheduling tasks. It does not instruct the agent to read unrelated system files, contact external endpoints, or exfiltrate data. Handlers provided by the user are expected to run and may perform arbitrary work — the skill itself does not attempt broad data collection.
Install Mechanism
No install spec — instruction-only (with source included). No downloads or external package installs are declared, which is proportionate for a pure JS library using Node built-ins.
Credentials
The skill declares no environment variables, no credentials, and no config paths beyond creating its own state directory. There are no requests for unrelated secrets or cloud keys.
Persistence & Privilege
always:false and no special privileges. The code persists state under a local directory ('auto-loop-state') and writes JSON files — normal for a scheduler, but the skill will create and modify files in the agent's working directory.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install auto-loop - After installation, invoke the skill by name or use
/auto-loop - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of auto-loop skill:
- Provides automated task scheduling with support for timers, recurring jobs, monitoring, and auto-recovery.
- Features cron-like scheduling, priority queue management, and concurrency control.
- Includes status tracking with execution history and statistics.
- Supports task retries and automatic recovery on failure.
- Offers configuration options for retries and scheduler concurrency.
Metadata
Frequently Asked Questions
What is Auto Loop?
提供定时触发、任务调度、状态追踪及失败自动恢复的自动化任务调度功能。 It is an AI Agent Skill for Claude Code / OpenClaw, with 102 downloads so far.
How do I install Auto Loop?
Run "/install auto-loop" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Auto Loop free?
Yes, Auto Loop is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Auto Loop support?
Auto Loop is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Auto Loop?
It is built and maintained by pagoda111king (@pagoda111king); the current version is v1.0.0.
More Skills