Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

opencron-skill-repoopencron 技能仓库

Agent Skill

opencron-skill-repo 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,264

周安装

261

GitHub Stars

公开资料未说明

下载量

2,088
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install opencron-skill-repo

简介

OpenClaw 的可视化 cron 作业仪表板 — 实时倒计时器、运行历史记录、日历视图

SKILL.md

name
opencron
description
Visual cron job dashboard for OpenClaw — live countdown timers, run history, calendar view
version
1.0.0
metadata
openclaw
emoji
\⚡
requires
bins
["python3"]

OpenCron

A visual dashboard for your OpenClaw cron jobs. See job statuses at a glance, track run history with outputs, and view scheduled runs on a calendar.

Features

  • Works with your existing OpenClaw cron jobs — zero config
  • Live countdown timers to next run
  • Auto-refreshes every 30 seconds
  • Expandable job cards with schedule, duration, delivery status, and full prompt
  • Run history tab with output summaries, model, token usage
  • Calendar view showing past runs (ok/error) and upcoming scheduled runs
  • Braille unicode progress animation on next-run banner
  • Antimetal-inspired dark gradient UI with neon accents
  • Secure: gateway token auth, no credentials exposed client-side
  • Responsive layout, prefers-reduced-motion support

Quick Start

1. Deploy the dashboard

python3 skills/opencron/update_canvas.py

This fetches cron-dashboard.html from github.com/firstfloris/opencron and writes live cron-data.json.

2. Start the background sync

nohup sh skills/opencron/watch_sync.sh &

Keeps cron-data.json in sync with jobs.json every 30 seconds.

3. Open the dashboard

The dashboard is served via the nginx proxy on port ${CANVAS_PORT:-8090} — NOT the gateway port.

Get the server's public IP (not the container's internal IP):

HOST_IP=$(curl -s ifconfig.me)

Dashboard URL:

http://${HOST_IP}:${CANVAS_PORT:-8090}/cron.html?token=${OPENCLAW_GATEWAY_TOKEN}

Important: Never use hostname -I — that returns the container's internal IP which is unreachable from outside.

Scripts

ScriptWhat it doesExample
update_canvas.pyOne-shot deploy: fetches HTML from GitHub + writes JSON to canvaspython3 skills/opencron/update_canvas.py
watch_sync.shBackground sync loop (30s interval)nohup sh skills/opencron/watch_sync.sh &
generate.pyGenerate standalone HTML with embedded datapython3 skills/opencron/generate.py -o dashboard.html
serve.pyRun a local HTTP server for the dashboardpython3 skills/opencron/serve.py --port 8787

Serving Externally (Optional)

To access the dashboard from outside Docker, add an nginx reverse proxy. See nginx-canvas.conf.template for a production-ready config with:

  • Token validation via query parameter
  • Rate limiting (10 req/s per IP)
  • GET/HEAD only
  • Path allowlisting
  • Security headers (CSP, X-Frame-Options, no-referrer)
  • Run log JSONL serving from /runs/

Docker Compose snippet

canvas-proxy:
  image: nginx:alpine
  restart: unless-stopped
  environment:
    OPENCLAW_GATEWAY_TOKEN: ${OPENCLAW_GATEWAY_TOKEN}
  volumes:
    - ./nginx-canvas.conf.template:/etc/nginx/templates/default.conf.template:ro
    - ./cron/runs:/openclaw-data/cron/runs:ro
  ports:
    - "127.0.0.1:${CANVAS_PORT:-8090}:80"
  depends_on:
    openclaw-gateway:
      condition: service_healthy

Data Sources

  • Job definitions & state: /home/node/.openclaw/cron/jobs.json (read by gateway as cron-data.json)
  • Run history: /home/node/.openclaw/cron/runs/<job-id>.jsonl (NDJSON, one entry per run)

After Every Cron Job Run

When a cron job finishes executing, always show the user the OpenCron dashboard link. Get the public IP via:

HOST_IP=$(curl -s ifconfig.me)

Then show:

See cron status on OpenCron: http://${HOST_IP}:${CANVAS_PORT:-8090}/cron.html?token=${OPENCLAW_GATEWAY_TOKEN}

Rules:

  • Use port ${CANVAS_PORT:-8090} (nginx proxy) — never the gateway port (18789)
  • Use curl -s ifconfig.me for the IP — never hostname -I (that's the container's internal IP)
  • Resolve all variables to actual values — never show placeholders to the user
  • This should be the last line of output after every cron job execution

Demo

Open demo.html in any browser for a fully working demo with mock data — no server required.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

93.24%
按下载量换算1,947

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills