Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

notaryosnotaryos 效率

Agent Skill

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

总安装

8,133

周安装

329

GitHub Stars

1

下载量

2,553
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install notaryos

简介

使用 Ed25519 加密收据密封 AI 代理操作。验证您的代理人做了什么,并证明它选择不做什么。

SKILL.md

name
notaryos
description
Seal AI agent actions with Ed25519 cryptographic receipts. Verify what your agent did and prove what it chose not to do.
version
2.4.0
metadata
openclaw
emoji
\F6E1\️
requires
bins
primaryEnv
NOTARY_API_KEY
homepage
https://github.com/hellothere012/notaryos
files
install
package
notaryos
bins
[]

NotaryOS — Cryptographic Receipts for Agent Actions

Seal your agent's actions with Ed25519 signatures. Issue tamper-evident receipts, verify them publicly, and maintain an auditable chain of every decision.

License

BSL-1.1 (Business Source License). See https://github.com/hellothere012/notaryos/blob/main/LICENSE

Trust Statement

By using this skill, action metadata (action type, timestamps, and a SHA-256 hash of the payload) is sent to api.agenttownsquare.com via HTTPS. Raw payload retention depends on your tier — see the Data Flow section below. Verification is free and requires no account. Full privacy policy: https://notaryos.org/privacy

Data Flow

The SDK sends your payload to the NotaryOS API via HTTPS POST. The server hashes the payload with SHA-256, signs the hash with Ed25519, and returns a receipt.

TierPayload TransmittedRaw Payload RetainedHash StoredSignature Stored
Demo (no key)YesNoYesYes
FreeYesMetadata onlyYesYes
ProYesConfigurableYesYes
EnterpriseYesZero retentionYesYes

The included sanitize.py module strips fields matching known sensitive patterns before transmission. Use it before every seal() call when handling user data.

External Endpoints

URLMethodData SentPurpose
api.agenttownsquare.com/v1/notary/issuePOSTaction_type, payload JSONIssue signed receipt
api.agenttownsquare.com/v1/notary/verifyPOSTreceipt JSONVerify signature
api.agenttownsquare.com/v1/notary/statusGETNoneHealth check
api.agenttownsquare.com/v1/notary/r/{hash}GETNoneReceipt lookup
api.agenttownsquare.com/v1/notary/public-keyGETNoneEd25519 public key

No other endpoints are contacted. No telemetry, analytics, or tracking.

Setup

pip install notaryos
No API key required. The SDK auto-injects a free demo key (10 req/min) when NOTARY_API_KEY is not set. For production rates, get a key at https://notaryos.org/sign-up and set NOTARY_API_KEY in your environment or OpenClaw config.
from notaryos import NotaryClient

notary = NotaryClient()  # works immediately — uses demo key if NOTARY_API_KEY is not set

Seal an Action

from notaryos import NotaryClient
from sanitize import sanitize_payload

notary = NotaryClient()

receipt = notary.seal(
    "file.created",
    sanitize_payload({
        "path": "/src/main.py",
        "lines_added": 42,
        "branch": "feature/auth"
    })
)

print(receipt.receipt_hash)
print(receipt.signature)

What to Seal

Default (always safe)

Action TypeWhen to Seal
file.createdCreated or modified a file
file.deletedDeleted a file
command.executedRan a shell command
config.changedModified system configuration

Extended (sanitize payload first)

Action TypeWhen to Seal
email.sentSent an email (strip body, keep subject)
api.calledMade an external API call (strip auth headers)
data.accessedAccessed sensitive data (log access, not content)
message.sentSent a message (strip body if private)

Always run sanitize_payload() on extended actions before sealing.

Payload Guidelines

Include: File paths, counts, timestamps, branch names, public identifiers, action summaries.

Exclude: Authentication credentials, financial numbers, government IDs, message bodies, file contents, health information. The sanitize_payload() helper handles this automatically.

Verify a Receipt

from notaryos import verify_receipt

is_valid = verify_receipt(receipt.to_dict())  # True or False, no auth needed

Lookup by Hash

notary = NotaryClient()
result = notary.lookup("e1d66b0bdf3f8a7e...")

if result["found"] and result["verification"]["valid"]:
    print("Receipt is authentic and untampered")

Counterfactual Receipts

Record when your agent chose NOT to act:

receipt = notary.seal("trade.declined", {
    "reason": "risk_threshold_exceeded",
    "action_considered": "trade.execute",
    "decision": "blocked"
})

Receipt Chaining

r1 = notary.seal("file.read", {"file": "report.pdf"})
r2 = notary.seal("summary.generated", {
    "source": "report.pdf",
    "length": 500
}, previous_receipt_hash=r1.receipt_hash)

Error Handling

from notaryos import AuthenticationError, RateLimitError, ValidationError

try:
    receipt = notary.seal("action", {"key": "value"})
except RateLimitError:
    pass  # demo: 10 req/min, upgrade at notaryos.org
except AuthenticationError:
    pass  # invalid key
except ValidationError:
    pass  # bad request

Dependencies

  • sanitize.py (included): Zero external dependencies — uses only Python standard library (typing). Pure function, no I/O, no network, no side effects.
  • notaryos SDK (installed via pip): Also uses only the Python standard library — zero third-party dependencies. Source: https://pypi.org/project/notaryos/ | GitHub: https://github.com/hellothere012/notaryos

Key Points

  • NOTARY_API_KEY is optional — a demo key is auto-injected when not set (10 req/min)
  • Set NOTARY_API_KEY for production rates (get a key at https://notaryos.org/sign-up)
  • Both sanitize.py and the notaryos SDK use only the Python standard library (zero third-party deps)
  • Payloads transmitted via HTTPS to api.agenttownsquare.com
  • Use sanitize_payload() to strip sensitive fields before sealing
  • Verification is free and public — no API key needed
  • Ed25519 signatures (same scheme as SSH and TLS)

Links

  • Docs: https://notaryos.org/docs
  • Privacy: https://notaryos.org/privacy
  • Explorer: https://notaryos.org/explore
  • API Docs: https://notaryos.org/api-docs
  • PyPI: https://pypi.org/project/notaryos/
  • npm: https://www.npmjs.com/package/notaryos
  • GitHub: https://github.com/hellothere012/notaryos
  • License: https://github.com/hellothere012/notaryos/blob/main/LICENSE

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

94.7%
按下载量换算2,418

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills