Token导航 LogoToken导航TokenDH.com
开发执行命令clawhub未标认证来源可访问clear审计提醒

undoundo 开发

Agent Skill

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

总安装

3,560

周安装

144

GitHub Stars

公开资料未说明

下载量

1,117
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install undo

简介

undo 为文件编辑提供时间机器式的快照和回滚能力。

  • 每次写入或 Shell 操作后自动生成变更记录。
  • 支持撤消/恢复功能,防止误操作导致数据丢失。
  • 适用于频繁修改文件的开发场景。undo 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 建议定期清理旧快照以节省存储空间。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
undo
description
|
homepage
https://github.com/yourname/undo-skill
user-invocable
true
metadata
openclaw
emoji
requires
{ bins: ['node'] }
primaryEnv

Undo.skill — File Edit Time Machine

CRITICAL: After EVERY file modification (Write, Edit, MultiEdit, Shell commands that change files), you MUST run the snapshot script. This is non-negotiable — without snapshots, undo is impossible.

Base Directory

All scripts are located in this skill's directory. Use {baseDir} to reference them:

SCRIPTS="{baseDir}/scripts"

Quick Reference

CommandPurpose
node "$SCRIPTS/init.js" /path/to/projectStart tracking a project
node "$SCRIPTS/snapshot.js" /path/to/project "Description"Record current state
node "$SCRIPTS/undo.js" /path/to/project --steps 1Undo last change
node "$SCRIPTS/undo.js" /path/to/project --to <name>Undo to checkpoint
node "$SCRIPTS/undo.js" /path/to/project --timestamp "2026-04-10T14:00"Undo to time
node "$SCRIPTS/list.js" /path/to/projectList change history
node "$SCRIPTS/checkpoint.js" /path/to/project "name"Create named checkpoint
node "$SCRIPTS/watcher.js" /path/to/project &Start background watcher

Output Format

Every script outputs exactly one line of JSON. Parse it with your environment's JSON parser — do NOT read the human text.

init.js

{"action":"init","status":"success","initialized":true,"project":"/abs/path","storagePath":"~/.local/share/...","message":"Tracking initialized"}
{"action":"init","status":"success","initialized":false,"project":"/abs/path","storagePath":"~/.local/share/...","message":"Already tracked"}

snapshot.js

{"action":"snapshot","status":"success","committed":true,"project":"/abs/path","description":"Added error handling","hash":"abc1234","changedFiles":["src/index.js"],"fileCount":1}
{"action":"snapshot","status":"success","committed":false,"project":"/abs/path","description":"..."}

(committed=false means no changes since last snapshot)

list.js

{
  "action":"list",
  "status":"success",
  "project":"/abs/path",
  "count":3,
  "commits":[
    {
      "hash":"abc1234",
      "date":"2026-04-10 14:05:12 +0800",
      "timestamp":"2026-04-10T06:05:12.000Z",
      "description":"Added error handling",
      "files":[{"status":"M","path":"src/index.js"}],
      "isCheckpoint":false,
      "isInitial":false
    }
  ],
  "checkpoints":[{"name":"checkpoint/before-refactor","hash":"def5678"}]
}

undo.js

{"action":"undo","status":"success","undone":true,"mode":"steps","project":"/abs/path","steps":1,"targetHash":"abc1234","checkpointBranch":"checkpoint/undo-1712736312000"}
{"action":"undo","status":"error","error":"not_enough_history","mode":"steps","project":"/abs/path","requested":5}

checkpoint.js

{"action":"checkpoint","status":"success","project":"/abs/path","checkpoint":"before-refactor","branch":"checkpoint/before-refactor"}

watcher.js

On start:

{"action":"watcher-start","status":"success","project":"/abs/path","pid":12345,"debounceMs":5000,"pollMs":2000}

On each auto-snapshot:

{"action":"watcher-snapshot","status":"success","committed":true,"project":"/abs/path","hash":"abc1234","description":"[watcher] added: 1, modified: 2","timestamp":"2026-04-10T06:05:12.000Z","files":{"added":["new.js"],"changed":["index.js"],"deleted":[]}}

On stop:

{"action":"watcher-stop","status":"stopped","project":"/abs/path"}

Error Codes

error codemeaningaction
missing_project_pathNo path argument givenPass absolute path
git_not_foundGit not installed and auto-install failedInstall git manually (see detail.manual_install_hint, try apt-get install git / brew install git / pkg install git)
not_trackedProject not initializedRun init.js first
no_changesNothing changed since last snapshotSafe to skip
not_enough_historyNot enough snapshots to undo requested depthUse fewer steps
checkpoint_not_foundNamed checkpoint doesn't existCheck list.js output
checkpoint_existsCheckpoint name already takenUse a different name
invalid_timestampTimestamp format invalidUse ISO 8601
no_commits_before_timestampNo snapshots before that timeUse earlier time or different approach

First-Time Setup

After installing this skill, run init.js on the user's project before any other commands:

node "$SCRIPTS/init.js" /path/to/project

This attempts to auto-install git if missing, then initializes tracking. If git auto-install fails, it returns a structured error with platform details and install hints — use that info to guide manual installation.

Core Workflow

Rule 1: Snapshot After Every File Change

After ANY Write/Edit/Shell that modifies files, immediately run:

node "$SCRIPTS/snapshot.js" /path/to/project "Brief description of what changed"

Description guidelines:

  • Specific: "Refactored auth middleware to use JWT" not "changed files"
  • Mention key files
  • Include intent
  • Under 80 chars for the summary

Rule 2: Checkpoint Before Major Operations

node "$SCRIPTS/checkpoint.js" /path/to/project "before-refactor"

Rule 3: List History When Asked

node "$SCRIPTS/list.js" /path/to/project

Parse the commits array. Each entry has hash, timestamp, description, files, and isCheckpoint flag.

Rule 4: Undo on Request

# Undo last N changes
node "$SCRIPTS/undo.js" /path/to/project --steps 3

# Undo to named checkpoint
node "$SCRIPTS/undo.js" /path/to/project --to before-refactor

# Undo to specific time (ISO 8601)
node "$SCRIPTS/undo.js" /path/to/project --timestamp "2026-04-10T14:00"

After successful undo, inform the user that previous state is preserved on the branch from the JSON's checkpointBranch field.

Rule 5: Watcher for Long Sessions

node "$SCRIPTS/watcher.js" /path/to/project &

Auto-snapshots if you forget. PID in startup JSON. Stop with kill <PID>.

How It Works (Architecture)

~/.local/share/undo-skill/repos/
├── abc123def456/          # Bare git repo (MD5 hash of project path, 12 chars)
│   ├── HEAD
│   ├── refs/heads/main    # Latest snapshot
│   ├── refs/heads/checkpoint/undo-1712736312000
│   ├── refs/heads/checkpoint/before-refactor
│   └── _worktree/         # Temp working directory (auto-managed)
└── projects.json           # hash → absolute path mapping
  • Storage: External bare git repo, indexed by MD5 of absolute project path
  • Project isolation: The project's own .git is NEVER touched
  • Branch strategy: main = current state; checkpoint/* = preserved states (never deleted)
  • Undo: Creates checkpoint branch at HEAD → resets to target → force-pushes main

Important Notes

  1. ALWAYS snapshot after writes — #1 rule, no exceptions
  2. Output is JSON — parse the JSON line, ignore any other text
  3. Don't double-snapshot — one change = one snapshot
  4. Describe accurately — the description is how users and future AI understand history
  5. Absolute paths only — always pass full absolute path
  6. Undo preserves history — previous states live forever as checkpoint/* branches

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

74.63%
按下载量换算834

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install undo 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills