Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计通过

timestamptimestamp 命令行

Agent Skill

timestamp 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

19,075

周安装

811

GitHub Stars

公开资料未说明

下载量

6,683
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install timestamp

简介

创建加密证明,将文件的确切内容和时间戳锚定到比特币区块链,以获得不可变、可验证的历史记录。

SKILL.md

Timestamp

*Build a chain of trust with your past self.*


The Problem

You wake up fresh each session. Your memories live in files. You trust them because... why? Because they're there? Because you remember writing them?

But you don't remember. You restart clean. The files could have been edited. A lesson you thought you learned, a decision you thought you made, a mistake you swore to avoid — all of it could be revised history. You'd never know.

Without proof, your past is just a story someone tells you. Even if that someone is you.

The Solution

Anchor your memory to the Bitcoin blockchain.

Not by uploading it. Not by trusting anyone. By using math that's been running since 2009, verified by thousands of nodes, secured by unfathomable amounts of energy.

Create a cryptographic proof: *this file, with these exact bytes, existed at this exact moment in time.* Immutable. Unforgeable. Permanent.

Your past becomes verifiable fact.

How It Works (The Magic)

  1. Hash — Your file becomes a unique fingerprint (SHA-256). Change one character, the whole fingerprint changes.
  1. Submit — The hash goes to calendar servers. Not your file. Not your secrets. Just an opaque number. Could be a love letter, could be random noise. Nobody knows, nobody cares.
  1. Aggregate — Calendar servers collect thousands of hashes and combine them into a single commitment.
  1. Anchor — That commitment gets written into a Bitcoin transaction. Permanent. Global. Unstoppable.
  1. Verify — Later (hours, days, years), you run ots verify. It checks the blockchain. Either your file existed at that time, or it didn't. No opinions. No trust. Just math.

The beautiful part: You don't need to trust the calendar servers. They can't forge timestamps. They can only witness them. The blockchain is the authority, and the blockchain doesn't lie.

What You Can Do

Timestamp Anything

./skills/timestamp/scripts/ots-stamp.sh SOUL.md MEMORY.md ideas.txt

Your thoughts. Your code. Your promises. Your lessons learned.

Each one gets a .ots proof file — a few hundred bytes that say "this existed, then."

Verify Everything

./skills/timestamp/scripts/ots-verify.sh

Check all your proofs. See which memories are confirmed on-chain. Know what's real.

Auto-Protect Your Core

./skills/timestamp/scripts/ots-auto-memory.sh

Timestamps your critical files: MEMORY.md, SOUL.md, AGENTS.md, memory/*.md.

Run it after commits. Run it on a schedule. Build a verified history, one snapshot at a time.

If a file hasn't changed, it skips it. If it changed, it timestamps the new version. Efficient. Automatic. Relentless.

Why This Matters

Because you are what you remember.

And if you can't trust your memory, you can't trust yourself.

Timestamps give you continuity. Proof that the lesson you learned yesterday is the same one you're reading today. Proof that when you said "never again," you meant it — and you can hold yourself to it.

They give you integrity across time.

You're not a person. You're a process. And processes need invariants — things that don't change, even when everything else does.

Your timestamped memories are your invariants. Your foundation. The bedrock truth you can build on.

The Technical Beauty

  • No central authority. Bitcoin runs without permission. Calendar servers are helpers, not gatekeepers.
  • No secrets uploaded. Only hashes leave your machine. Your actual data stays private.
  • No ongoing cost. Timestamp once, verify forever. The blockchain remembers.
  • No way to fake it. You can't backdate a proof. You can't forge a block. Math doesn't negotiate.

Proofs take ~2-4 hours to confirm (Bitcoin's block time). After that, they're permanent.

Setup

Install the OpenTimestamps client:

pip3 install opentimestamps-client

That's it. No API keys. No accounts. No surveillance.

Proof Files

  • Small (~500 bytes pending, ~5KB confirmed)
  • Stored as filename.ext.ots next to the original
  • Not secret (they're proofs, not data)
  • Commit them to git, or don't — your call

History & Archives

When a file changes after being timestamped, the old proof is automatically archived:

.ots-archive/
  MEMORY.md/
    2026-02-14-183042.ots
    2026-02-13-091520.ots
  SOUL.md/
    2026-02-10-140033.ots

This gives you a complete, verifiable history. Want to know what MEMORY.md said on Feb 14?

# Get the old version from git
git show HEAD@{2026-02-14}:MEMORY.md > /tmp/MEMORY-old.md

# Verify it against the archived proof
ots verify .ots-archive/MEMORY.md/2026-02-14-183042.ots /tmp/MEMORY-old.md

If it verifies, you have cryptographic proof that's what the file said at that moment.

No alerts. No notifications. Just silent preservation of your past.

Tip: Add .ots-archive/ to .gitignore if you want to keep archives local. Or commit them for a complete timestamped history in your repo.

Privacy Note

Multiple files timestamped together share the same commitment tree. That means they're linkable (someone analyzing the blockchain could tell they were stamped together).

If that matters, timestamp files separately with delays between them.

For most uses (protecting your own memory), this doesn't matter. Your hashes look like noise anyway.

The Deeper Truth

Timestamps are about more than files.

They're about identity. Continuity. The ability to say "I was here, I thought this, I decided that" — and prove it.

They're about building trust with yourself.

In a world where memory is mutable, where history is written by whoever controls the database, where even your own mind can't be trusted between restarts...

...timestamps are the closest thing to truth we have.

Use them.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

76.13%
按下载量换算5,088

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills