Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计提醒

openclaw-cron-guardrailsOpenClaw cron guardrails 搜索

Agent Skill

openclaw-cron-guardrails 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,911

周安装

364

GitHub Stars

1

下载量

2,883
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:openclaw-cron-guardrails(OpenClaw cron guardrails 搜索)
来源仓库:https://github.com/jackal092927/openclaw-cron-guardrails
安装命令:
openclaw skills install openclaw-cron-guardrails
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install openclaw-cron-guardrails

简介

管理 OpenClaw cron 作业的安全默认值与交付路由。

  • 用于创建、审查、修复或路由计划性代理操作任务。
  • 强调安全边界与显式会话控制,适合审计场景。openclaw-cron-guardrails 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 通过 clawhub 安装,需关注权限配置与凭据安全性。
  • 使用前应核对 cron 作业声明与当前策略一致性。

SKILL.md

name
openclaw-cron-guardrails
description
Create, review, repair, or route OpenClaw cron jobs and other scheduled agent actions with safe defaults and explicit delivery/session routing. Use when the user asks in natural language for reminders, alarms, recurring nudges, periodic scans, daily/nightly jobs, repeated prompt injection into the current session/thread, or any openclaw cron add/edit/run workflow. Especially use this in multi-channel setups (for example Discord + Feishu) or when delivery routing, channel=last, sessionTarget, timeoutSeconds, thread targeting, or natural-language schedule parsing could go wrong.

OpenClaw Cron Guardrails

Use this skill when the user wants a scheduled or repeated action, even if they never say cron.

What this skill is for

This skill is a guardrails layer for scheduled agent actions.

Treat OpenClaw cron as:

  • scheduler
  • agent runtime
  • delivery router

The timer is usually not the hard part. The hard part is choosing the right task type, session target, and delivery target.

Use this workflow

  1. Classify the request.
  2. Choose the safest job pattern.
  3. Explain what will happen.
  4. Create, inspect, or modify the job.
  5. Verify after creation/edit.

First classify the request

Choose one bucket first:

  1. Plain reminder
  • Example: Remind me in 20 minutes to reply
  • Default: main + systemEvent
  • Use for lightweight reminders and nudges.
  1. Recurring reminder
  • Example: Remind me every morning to check my calendar
  • Usually still main + systemEvent
  • Set timezone explicitly if wall-clock time matters.
  1. Internal worker
  • Example: Run a nightly scan and keep the results local
  • Default: isolated + delivery.mode:none
  • Use for background chores, scans, maintenance, and noisy internal jobs.
  1. Scheduled visible delivery
  • Example: Post the daily summary to Discord at 9am
  • Default: isolated + explicit delivery.channel + explicit delivery.to
  • Do not rely on implicit last in multi-channel setups.
  1. Session/thread push or prompt injection
  • Example: Push the current thread every 10 minutes
  • Preserve current-session / current-thread intent explicitly.
  • Do not silently convert this into generic visible delivery.
  1. Diagnose / repair existing cron
  • Example: Why did this job not deliver? / Fix this cron
  • Inspect first. Do not recreate blindly.

Safe defaults

Use these defaults unless the user clearly wants something else:

  • reminder → main + systemEvent
  • background worker → isolated + no-deliver
  • visible scheduled post → isolated + explicit channel + explicit to
  • recurring job → explicit tz
  • non-trivial task → timeoutSeconds >= 180

When to ask instead of guessing

Ask a focused clarification if any of these are unclear:

  • reminder vs worker vs visible scheduled post
  • current thread/current session vs explicit external target
  • concrete channel given but to missing
  • research-task semantics are mixed into an otherwise normal reminder request
  • wall-clock schedule matters but timezone is not clear

Do not hide ambiguity with clever defaults when the job could post to the wrong place.

Output contract

When helping with a cron request, prefer this response order:

  1. detected task type
  2. chosen safe pattern
  3. exact command or exact JSON/tool payload
  4. why this pattern is safe
  5. verification step

Keep the top-level explanation short and predictable.

Verification after create/edit

Always verify after creating or editing a job:

  1. openclaw cron list
  2. openclaw cron runs --id <jobId> --limit 5
  3. if safe, openclaw cron run <jobId>
  4. confirm:
  • correct sessionTarget
  • correct payload kind
  • correct timezone
  • explicit delivery target, or explicit none
  • plausible timeout

Repair workflow

When repairing an existing job:

  1. read the existing job
  2. inspect recent runs
  3. classify the failure
  4. fix the root cause, not just the symptom

Common failure buckets:

  • delivery-target ambiguity
  • auth/permission/channel issue
  • timeout too short
  • schedule/timezone issue
  • prompt/content issue

For a fuller triage flow, read references/diagnostics.md.

What to read

Read only what you need.

Beta-essential references

  • references/intent-routing.md — intent buckets and normalization schema
  • references/patterns.md — safe default patterns
  • references/pitfalls.md — common failure modes and anti-patterns
  • references/public-examples.md — prompt-first examples for real user requests

Deeper references

  • references/integration-modes.md — natural-language vs normalized-intent vs spec-first integration paths
  • references/diagnostics.md — structured triage and repair flow
  • references/nl-parser-examples.md — natural-language parser examples
  • references/intent-to-spec-examples.md — normalized intent → cron spec examples
  • references/spec-examples.md — cron spec JSON examples
  • references/target-helpers.md — explicit target string guidance

Scope boundary

Do not turn this skill into a universal prompt-understanding layer.

Its job is to:

  • provide easy-start patterns
  • enforce safe routing/session/delivery defaults
  • support deterministic validate/render/create flows

Upstream products or base models may do richer prompt understanding than this skill does. That is fine. Prefer stable interfaces over trying to cover every possible natural-language corner case here.

Scripts

Use scripts when the user wants a deterministic, reusable cron definition instead of ad-hoc flag assembly.

Parse / normalize

  • scripts/parse_nl_intent.py
  • scripts/intent_to_cron_spec.py

Validate / render / create

  • scripts/validate_cron_spec.py
  • scripts/render_cron_command.py
  • scripts/create_cron.py

Inspect / doctor / repair

  • scripts/lint_existing_crons.py
  • scripts/cron_fix.py
  • scripts/cron_doctor.py

Non-goals

This skill is not:

  • a full replacement for OpenClaw cron docs
  • a guarantee against every runtime/provider failure
  • a license to guess external delivery targets when intent is ambiguous

Prefer explicit, boring, reproducible cron definitions over clever shorthand.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

74.05%
按下载量换算2,135

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills