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
Crawler Summary
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
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 | 规划调整内容 | 大模型 | 分
Public facts
4
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 25, 2026
Vendor
Aisupernode
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
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.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
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.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Aisupernode
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
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
_FAILEDtext
03:00 扫描 → 检测到更新 03:05 规划 → 发现 sessionFile 路径问题 03:15 调整 → 修复为相对路径 03:30 更新 → 执行 update.run(此时已兼容) 04:30 后调 → 启用新功能
Full documentation captured from public sources, including the complete README when available.
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 | 规划调整内容 | 大模型 | 分
Skill ID: auto-update
版本: v2.1
创建时间: 2026-02-13
架构: 触发式流程(只有扫描是固定任务)
基于今天 sessionFile 路径问题的教训,采用触发式流程:
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 # 对齐清单模板
{
"name": "openclaw-update-scanner",
"schedule": "0 3 * * *",
"timezone": "Asia/Shanghai"
}
由扫描脚本在检测到更新后,动态创建一次性任务:
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 存绝对路径 | 更新前调整 | 不修复会导致更新后 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
~/.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"
}
}
}
| 组件 | 状态 | |------|------| | scan-update.sh | ✅ 完成 | | post-update-adjust.sh | ✅ 完成 | | fix-sessionfile-paths.sh | ✅ 完成 | | 每日 03:00 扫描任务 | ✅ 已创建 | | 动态创建后续任务 | ✅ 支持(脚本内) | | 状态管理 | ✅ 完成 |
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
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"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
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
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
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
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
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
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
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.