openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > timeback-machine

Provides automated and manual rollback of long-running OpenClaw tasks by saving and restoring state snapshots to handle errors or unexpected issues.

开发与 DevOps

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 59 · 1 current installs · 1 all-time installs

0

安装量(当前) 1

🛡 VirusTotal :良性 · OpenClaw :良性

Package:cortez-1/timeback-machine

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill's code and instructions are coherent with its stated purpose (saving/restoring in-memory state and prompting for rollback) and request no unusual privileges or credentials.

目的

Name, description, SKILL.md, and the included index.js align: the skill saves an in-memory snapshot (via configurable onSaveState), starts a timer, prompts the user, and restores via onRestoreState. There are no unrelated requirements (no network, no filesystem, no cloud creds).

说明范围

SKILL.md and index.js limit actions to starting/stopping a timer, storing a snapshot in memory, prompting the user (via OpenClaw UI if available or confirm), and calling provided callbacks to save/restore state. The instructions do not reference arbitrary files, environment variables, or external endpoints.

安装机制

Registry metadata shows no install spec (instruction-only), but SKILL.md contains an example 'npx clawhub install @Cortez_1/time-machine' snippet (the block in SKILL.md appears truncated). No downloadable archives or remote installers are used, so installation risk is low; verify how you obtain the package (official registry vs. third-party).

证书

The skill requests no environment variables, no credentials, and no config paths. Its functionality (in-memory snapshots and callbacks) does not require additional secrets or privileged access.

持久

Flags show normal privileges (always: false, model invocation allowed). The skill does not persist data to disk or modify other skills' configurations; saved state is kept in-memory and cleared on cleanup.

综合结论

This skill appears to do exactly what it says: an in-memory rollback helper with a user-confirmation prompt. Before installing: (1) confirm you are obtaining the package from a trusted source/registry; (2) review or control the callbacks you pass as onSaveState/onRestoreState — those functions determine what gets captured/restored and could read or write sensitive data if implemented that way; (3) note the JSON-based deep-clone will not serial…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「timeback-machine」。简介:Provides automated and manual rollback of long-running OpenClaw tasks by saving…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/cortez-1/timeback-machine/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

# Time Machine (时光机)

一个为 OpenClaw 设计的“时光机”技能。它为长时间运行的任务提供了一个可靠的“后悔药”机制。当任务执行超过设定时间(默认5分钟)或您手动触发时,它会提示您是否要回滚到任务开始前的状态,以轻松应对意外情况或错误。

## 功能

- **自动回滚提醒**:在任务开始后启动一个可配置的倒计时,时间到后自动弹出确认框。
- **手动回滚**:提供API让您随时手动触发回滚流程。
- **状态快照**:在任务开始时保存当前状态,支持自定义保存和恢复逻辑。
- **简单易用**:通过简单的 API 集成到您的 OpenClaw 流程中。

## 安装

```bash
npx clawhub install @Cortez_1/time-machine