Auto Loop

v1.0.0

提供定时触发、任务调度、状态追踪及失败自动恢复的自动化任务调度功能。

0· 96·1 current·1 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for pagoda111king/auto-loop.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Auto Loop" (pagoda111king/auto-loop) from ClawHub.
Skill page: https://clawhub.ai/pagoda111king/auto-loop
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install auto-loop

ClawHub CLI

Package manager switcher

npx clawhub@latest install auto-loop
Security Scan
Capability signals
Crypto
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
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.
Assessment
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).

Like a lobster shell, security has layers — review code before you run it.

latestvk9753xwh6nf7aes3ej1w5ef53h84rdjm
96downloads
0stars
1versions
Updated 2w ago
v1.0.0
MIT-0

Auto Loop Skill

技能描述

提供自动化任务调度功能,支持定时触发、任务调度、状态追踪和自动恢复。

触发条件

当用户需要:

  • 定时执行任务
  • 周期性运行脚本
  • 自动化例行工作
  • 监控和恢复失败任务

使用方式

每小时执行:[任务]
每天 [时间] 运行:[任务]
定时执行这个:[任务]

核心功能

  1. 定时触发: Cron 表达式或固定间隔
  2. 任务调度: 优先级队列和并发控制
  3. 状态追踪: 执行历史和统计
  4. 自动恢复: 失败重试和恢复

配置选项

retries:
  max: 3
  delay: 5000
  
scheduler:
  maxConcurrent: 5
  persistInterval: 60000

依赖

  • Node.js 内置模块

版本历史

  • v1.0.0: 初始版本

Comments

Loading comments...