Crawler Summary

openclaw-skill-auto-update answer-first brief

Auto Update Skill for OpenClaw v2.1 Auto Update Skill for OpenClaw v2.1 **Skill ID**: auto-update **版本**: v2.1 **创建时间**: 2026-02-13 **架构**: 触发式流程(只有扫描是固定任务) --- 核心改进 基于今天 sessionFile 路径问题的教训,采用**触发式流程**: - **03:00** 扫描版本更新(固定任务) - 有更新时才继续后续流程 - 1.5 小时间隔给足调整时间 - 更新前修复不兼容问题,更新后启用新功能 --- 流程架构 --- 时间线 | 时间 | 任务 | 执行者 | 说明 | |------|------|--------|------| | 03:00 | 扫描版本更新 | 脚本 | 检查是否有新版本 | | 03:00-03:05 | 判断 | 脚本 | 无更新则结束 | | 03:05-03:15 | 规划调整内容 | 大模型 | 分 Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.

Freshness

Last checked 2/25/2026

Best For

openclaw-skill-auto-update is best for general automation workflows where OpenClaw compatibility matters.

Not Ideal For

Contract metadata is missing or unavailable for deterministic execution.

Evidence Sources Checked

editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack

Claim this agent
Agent DossierGitHubSafety: 89/100

openclaw-skill-auto-update

Auto Update Skill for OpenClaw v2.1 Auto Update Skill for OpenClaw v2.1 **Skill ID**: auto-update **版本**: v2.1 **创建时间**: 2026-02-13 **架构**: 触发式流程(只有扫描是固定任务) --- 核心改进 基于今天 sessionFile 路径问题的教训,采用**触发式流程**: - **03:00** 扫描版本更新(固定任务) - 有更新时才继续后续流程 - 1.5 小时间隔给足调整时间 - 更新前修复不兼容问题,更新后启用新功能 --- 流程架构 --- 时间线 | 时间 | 任务 | 执行者 | 说明 | |------|------|--------|------| | 03:00 | 扫描版本更新 | 脚本 | 检查是否有新版本 | | 03:00-03:05 | 判断 | 脚本 | 无更新则结束 | | 03:05-03:15 | 规划调整内容 | 大模型 | 分

OpenClawself-declared

Public facts

4

Change events

1

Artifacts

0

Freshness

Feb 25, 2026

Verifiededitorial-contentNo verified compatibility signals

Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.

Trust evidence available

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Feb 25, 2026

Vendor

Aisupernode

Artifacts

0

Benchmarks

0

Last release

Unpublished

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

Summary

Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.

Setup snapshot

git clone https://github.com/aisupernode/openclaw-skill-auto-update.git
  1. 1

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  2. 2

    Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Aisupernode

profilemedium
Observed Feb 25, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

OpenClaw

contractmedium
Observed Feb 25, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB OPENCLEW

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Parameters

Executable Examples

text

03:00 (固定)
    │
    ▼
┌─────────────────┐
│ 1. 扫描版本更新 │ ◄── 脚本执行,无需大模型
│    (5分钟)      │
└────────┬────────┘
         │
    ┌────┴────┐
    │         │
   无       有更新
    │         │
    ▼         ▼
  结束    ┌─────────────────┐
         │ 2. 规划调整内容 │ ◄── 大模型分析 Release Notes
         │    (10分钟)     │      确定更新前/后调整项
         └────────┬────────┘
                  │
                  ▼
         ┌─────────────────┐
         │ 3. 更新前调整   │ ◄── 脚本执行(预防不兼容)
         │    (15分钟)     │      如:sessionFile 路径修复
         └────────┬────────┘
                  │
                  ▼
         ┌─────────────────┐
         │ 4. 设置后续任务 │ ◄── 创建 04:30 一次性任务
         │    (立即)       │
         └────────┬────────┘
                  │
                  ▼
         ┌─────────────────┐
         │ 5. 版本更新     │ ◄── openclaw gateway update.run
         │    (10分钟)     │
         └────────┬────────┘
                  │
                  │ 等待 1.5 小时
                  │
04:30 ◄───────────┘
    │
    ▼
┌─────────────────┐
│ 6. 更新后调整   │ ◄── 启用新功能 + 健康检查
│    (15分钟)     │
└────────┬────────┘
         │
         ▼
    ┌────────┐
    │  完成  │
    └────────┘

text

~/.openclaw/skills/auto-update/
├── SKILL.md                          # 本文件
├── scripts/
│   ├── scan-update.sh               # 主入口(扫描+协调)✅
│   ├── post-update-adjust.sh        # 更新后调整 ✅
│   ├── preflight-check.sh           # 预检脚本(备用)
│   ├── capability-alignment.sh      # 对齐检查 ✅
│   ├── config-guardian.sh           # 配置备份/恢复 ✅
│   ├── health-check.sh              # 健康检查 ✅
│   ├── notify.sh                    # 通知脚本 ✅
│   └── adjustments/                 # 调整脚本目录
│       └── fix-sessionfile-paths.sh # sessionFile 路径修复 ✅
├── config/
│   └── auto-update.json             # 配置 ✅
└── templates/
    └── alignment-checklist.md       # 对齐清单模板

json

{
  "name": "openclaw-update-scanner",
  "schedule": "0 3 * * *",
  "timezone": "Asia/Shanghai"
}

text

~/.openclaw/workspace/state/auto-update/
├── state.json                       # 当前流程状态
├── pre-adjustments.json             # 更新前调整清单
└── post-adjustment-scheduled.json   # 更新后任务计划

text

SCANNING → PRE_ADJUSTMENT → UPDATING → UPDATED → (等待1.5h) → POST_ADJUSTMENT → COMPLETED
              │                │
              ▼                ▼
        PRE_ADJUSTMENT    UPDATE_FAILED
           _FAILED

text

03:00 扫描 → 检测到更新
03:05 规划 → 发现 sessionFile 路径问题
03:15 调整 → 修复为相对路径
03:30 更新 → 执行 update.run(此时已兼容)
04:30 后调 → 启用新功能

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB OPENCLEW

Docs source

GITHUB OPENCLEW

Editorial quality

ready

Auto Update Skill for OpenClaw v2.1 Auto Update Skill for OpenClaw v2.1 **Skill ID**: auto-update **版本**: v2.1 **创建时间**: 2026-02-13 **架构**: 触发式流程(只有扫描是固定任务) --- 核心改进 基于今天 sessionFile 路径问题的教训,采用**触发式流程**: - **03:00** 扫描版本更新(固定任务) - 有更新时才继续后续流程 - 1.5 小时间隔给足调整时间 - 更新前修复不兼容问题,更新后启用新功能 --- 流程架构 --- 时间线 | 时间 | 任务 | 执行者 | 说明 | |------|------|--------|------| | 03:00 | 扫描版本更新 | 脚本 | 检查是否有新版本 | | 03:00-03:05 | 判断 | 脚本 | 无更新则结束 | | 03:05-03:15 | 规划调整内容 | 大模型 | 分

Full README

Auto Update Skill for OpenClaw v2.1

Skill ID: auto-update
版本: v2.1
创建时间: 2026-02-13
架构: 触发式流程(只有扫描是固定任务)


核心改进

基于今天 sessionFile 路径问题的教训,采用触发式流程

  • 03:00 扫描版本更新(固定任务)
  • 有更新时才继续后续流程
  • 1.5 小时间隔给足调整时间
  • 更新前修复不兼容问题,更新后启用新功能

流程架构

03:00 (固定)
    │
    ▼
┌─────────────────┐
│ 1. 扫描版本更新 │ ◄── 脚本执行,无需大模型
│    (5分钟)      │
└────────┬────────┘
         │
    ┌────┴────┐
    │         │
   无       有更新
    │         │
    ▼         ▼
  结束    ┌─────────────────┐
         │ 2. 规划调整内容 │ ◄── 大模型分析 Release Notes
         │    (10分钟)     │      确定更新前/后调整项
         └────────┬────────┘
                  │
                  ▼
         ┌─────────────────┐
         │ 3. 更新前调整   │ ◄── 脚本执行(预防不兼容)
         │    (15分钟)     │      如:sessionFile 路径修复
         └────────┬────────┘
                  │
                  ▼
         ┌─────────────────┐
         │ 4. 设置后续任务 │ ◄── 创建 04:30 一次性任务
         │    (立即)       │
         └────────┬────────┘
                  │
                  ▼
         ┌─────────────────┐
         │ 5. 版本更新     │ ◄── openclaw gateway update.run
         │    (10分钟)     │
         └────────┬────────┘
                  │
                  │ 等待 1.5 小时
                  │
04:30 ◄───────────┘
    │
    ▼
┌─────────────────┐
│ 6. 更新后调整   │ ◄── 启用新功能 + 健康检查
│    (15分钟)     │
└────────┬────────┘
         │
         ▼
    ┌────────┐
    │  完成  │
    └────────┘

时间线

| 时间 | 任务 | 执行者 | 说明 | |------|------|--------|------| | 03:00 | 扫描版本更新 | 脚本 | 检查是否有新版本 | | 03:00-03:05 | 判断 | 脚本 | 无更新则结束 | | 03:05-03:15 | 规划调整内容 | 大模型 | 分析 Release Notes | | 03:15-03:30 | 更新前调整 | 脚本 | 预防性修复 | | 03:30 | 设置后续任务 | 脚本 | 创建 04:30 任务 | | 03:30-03:40 | 版本更新 | 脚本 | 执行 update.run | | 04:30 | 更新后调整 | 脚本+大模型 | 启用新功能 |


文件结构

~/.openclaw/skills/auto-update/
├── SKILL.md                          # 本文件
├── scripts/
│   ├── scan-update.sh               # 主入口(扫描+协调)✅
│   ├── post-update-adjust.sh        # 更新后调整 ✅
│   ├── preflight-check.sh           # 预检脚本(备用)
│   ├── capability-alignment.sh      # 对齐检查 ✅
│   ├── config-guardian.sh           # 配置备份/恢复 ✅
│   ├── health-check.sh              # 健康检查 ✅
│   ├── notify.sh                    # 通知脚本 ✅
│   └── adjustments/                 # 调整脚本目录
│       └── fix-sessionfile-paths.sh # sessionFile 路径修复 ✅
├── config/
│   └── auto-update.json             # 配置 ✅
└── templates/
    └── alignment-checklist.md       # 对齐清单模板

Cron 任务

固定任务:每日扫描

{
  "name": "openclaw-update-scanner",
  "schedule": "0 3 * * *",
  "timezone": "Asia/Shanghai"
}

动态任务:更新后调整(条件创建)

由扫描脚本在检测到更新后,动态创建一次性任务:

  • 时间: 更新后 1.5 小时(04:30)
  • 类型: at 任务(一次性)
  • 脚本: post-update-adjust.sh

调整项分类

更新前调整(预防不兼容)

| 调整项 | 触发条件 | 作用 | |--------|----------|------| | sessionFile 路径修复 | < 2026.2.12 | 将绝对路径改为相对路径,避免更新后拒绝加载 |

更新后调整(启用新功能)

| 调整项 | 触发条件 | 作用 | |--------|----------|------| | 本地时区日志 | >= 2026.2.12 | 启用 --local-time 参数 |


状态管理

~/.openclaw/workspace/state/auto-update/
├── state.json                       # 当前流程状态
├── pre-adjustments.json             # 更新前调整清单
└── post-adjustment-scheduled.json   # 更新后任务计划

状态流转

SCANNING → PRE_ADJUSTMENT → UPDATING → UPDATED → (等待1.5h) → POST_ADJUSTMENT → COMPLETED
              │                │
              ▼                ▼
        PRE_ADJUSTMENT    UPDATE_FAILED
           _FAILED

今天的 sessionFile 问题归类

| 问题 | 正确分类 | 原因 | |------|----------|------| | sessionFile 存绝对路径 | 更新前调整 | 不修复会导致更新后 Gateway 拒绝加载会话(安全校验) |

正确流程:

03:00 扫描 → 检测到更新
03:05 规划 → 发现 sessionFile 路径问题
03:15 调整 → 修复为相对路径
03:30 更新 → 执行 update.run(此时已兼容)
04:30 后调 → 启用新功能

使用方法

手动触发扫描

~/.openclaw/skills/auto-update/scripts/scan-update.sh

手动触发更新后调整

~/.openclaw/skills/auto-update/scripts/post-update-adjust.sh

修复 sessionFile 路径(独立使用)

~/.openclaw/skills/auto-update/scripts/adjustments/fix-sessionfile-paths.sh

日志位置

~/.openclaw/logs/auto-update/
├── scan-YYYYMMDD-HHMMSS.log         # 扫描日志
├── post-update-YYYYMMDD-HHMMSS.log  # 更新后调整日志
└── notifications.log                # 通知日志

配置说明

编辑 config/auto-update.json:

{
  "autoUpdate": {
    "enabled": true,
    "schedule": {
      "scan": "0 3 * * *",
      "timezone": "Asia/Shanghai"
    },
    "notification": {
      "enabled": true,
      "channels": ["discord"],
      "discordRecipient": "735127653618679868"
    }
  }
}

安全机制

  1. 扫描阶段 - 无更新直接结束,不浪费资源
  2. 更新前调整 - 预防性修复,避免更新后不兼容
  3. 配置备份 - 更新前自动备份
  4. 健康检查 - 更新后验证一切正常
  5. 状态持久化 - 中断后可恢复流程

实施进度

| 组件 | 状态 | |------|------| | scan-update.sh | ✅ 完成 | | post-update-adjust.sh | ✅ 完成 | | fix-sessionfile-paths.sh | ✅ 完成 | | 每日 03:00 扫描任务 | ✅ 已创建 | | 动态创建后续任务 | ✅ 支持(脚本内) | | 状态管理 | ✅ 完成 |


注意事项

  • 扫描用脚本,无需大模型(节省 token)
  • 只有规划和分析阶段调用大模型
  • 1.5 小时间隔给足更新和调整时间
  • 所有调整脚本可独立运行,便于调试

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

MissingGITHUB OPENCLEW

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

OpenClaw: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/aisupernode-openclaw-skill-auto-update/snapshot"
curl -s "https://xpersona.co/api/v1/agents/aisupernode-openclaw-skill-auto-update/contract"
curl -s "https://xpersona.co/api/v1/agents/aisupernode-openclaw-skill-auto-update/trust"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

Trust signals

Handshake

UNKNOWN

Confidence

unknown

Attempts 30d

unknown

Fallback rate

unknown

Runtime metrics

Observed P50

unknown

Observed P95

unknown

Rate limit

unknown

Estimated cost

unknown

Do not use if

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITHUB_REPOSactivepieces

Rank

70

AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents

Traction

No public download signal

Freshness

Updated 2d ago

OPENCLAW
GITHUB_REPOScherry-studio

Rank

70

AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs

Traction

No public download signal

Freshness

Updated 6d ago

MCPOPENCLAW
GITHUB_REPOSAionUi

Rank

70

Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!

Traction

No public download signal

Freshness

Updated 6d ago

MCPOPENCLAW
GITHUB_REPOSCopilotKit

Rank

70

The Frontend for Agents & Generative UI. React + Angular

Traction

No public download signal

Freshness

Updated 23d ago

OPENCLAW
Machine Appendix

Contract JSON

{
  "contractStatus": "missing",
  "authModes": [],
  "requires": [],
  "forbidden": [],
  "supportsMcp": false,
  "supportsA2a": false,
  "supportsStreaming": false,
  "inputSchemaRef": null,
  "outputSchemaRef": null,
  "dataRegion": null,
  "contractUpdatedAt": null,
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/aisupernode-openclaw-skill-auto-update/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/aisupernode-openclaw-skill-auto-update/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/aisupernode-openclaw-skill-auto-update/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/aisupernode-openclaw-skill-auto-update/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/aisupernode-openclaw-skill-auto-update/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/aisupernode-openclaw-skill-auto-update/trust\""
  ],
  "jsonRequestTemplate": {
    "query": "summarize this repo",
    "constraints": {
      "maxLatencyMs": 2000,
      "protocolPreference": [
        "OPENCLEW"
      ]
    }
  },
  "jsonResponseTemplate": {
    "ok": true,
    "result": {
      "summary": "...",
      "confidence": 0.9
    },
    "meta": {
      "source": "GITHUB_OPENCLEW",
      "generatedAt": "2026-04-17T04:15:43.521Z"
    }
  },
  "retryPolicy": {
    "maxAttempts": 3,
    "backoffMs": [
      500,
      1500,
      3500
    ],
    "retryableConditions": [
      "HTTP_429",
      "HTTP_503",
      "NETWORK_TIMEOUT"
    ]
  }
}

Trust JSON

{
  "status": "unavailable",
  "handshakeStatus": "UNKNOWN",
  "verificationFreshnessHours": null,
  "reputationScore": null,
  "p95LatencyMs": null,
  "successRate30d": null,
  "fallbackRate": null,
  "attempts30d": null,
  "trustUpdatedAt": null,
  "trustConfidence": "unknown",
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Capability Matrix

{
  "rows": [
    {
      "key": "OPENCLEW",
      "type": "protocol",
      "support": "unknown",
      "confidenceSource": "profile",
      "notes": "Listed on profile"
    }
  ],
  "flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}

Facts JSON

[
  {
    "factKey": "docs_crawl",
    "category": "integration",
    "label": "Crawlable docs",
    "value": "6 indexed pages on the official domain",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  },
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "Aisupernode",
    "href": "https://github.com/aisupernode/openclaw-skill-auto-update",
    "sourceUrl": "https://github.com/aisupernode/openclaw-skill-auto-update",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-02-25T02:23:45.881Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "OpenClaw",
    "href": "https://xpersona.co/api/v1/agents/aisupernode-openclaw-skill-auto-update/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/aisupernode-openclaw-skill-auto-update/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-02-25T02:23:45.881Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/aisupernode-openclaw-skill-auto-update/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/aisupernode-openclaw-skill-auto-update/trust",
    "sourceType": "trust",
    "confidence": "medium",
    "observedAt": null,
    "isPublic": true
  }
]

Change Events JSON

[
  {
    "eventType": "docs_update",
    "title": "Docs refreshed: Sign in to GitHub · GitHub",
    "description": "Fresh crawlable documentation was indexed for the official domain.",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  }
]

Sponsored

Ads related to openclaw-skill-auto-update and adjacent AI workflows.