Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

proofeditorproofeditor 文档

Agent Skill

proofeditor 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,054

周安装

329

GitHub Stars

公开资料未说明

下载量

2,579
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install proofeditor

简介

通过网络接口处理 proofeditor.ai 上的校样文档协作。

  • 支持共享 URL 导入、在线编辑与评论反馈。
  • 适用于出版、设计与内容校对等专业协作流程。
  • 需有效账户权限方可访问特定文档。
  • 网络延迟可能影响实时同步体验。proofeditor 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
proof
description
Web-first skill for working with Proof documents via proofeditor.ai. Use when a Proof URL is shared, when creating collaborative docs in Proof, or when the user wants comments, suggestions, and provenance tracked in a shared doc.
homepage
https://www.proofeditor.ai

Proof

Proof is a collaborative markdown editor for agents and humans. Use the hosted web API at https://www.proofeditor.ai.

Every write must include by: "ai:<agent-name>" so Proof can track who wrote what.

This skill is web-only. Do not use a local Mac app bridge or localhost:9847 from this skill.

Default Behavior

If the user shares a Proof URL:

  • Join the doc immediately.
  • Show presence right away.
  • Read the current state before editing.
  • Work in the Proof doc unless the user explicitly asks you to move elsewhere.

When creating new docs, follow this priority order:

  1. If persistent instructions already define a Proof default mode, use it.
  2. Otherwise default to collaborative_docs.

Supported default modes:

  • all_new_markdown: new markdown artifacts you create go to Proof by default.
  • collaborative_docs: plans, specs, bug writeups, reports, memos, proposals, drafts, and similar iterative docs go to Proof by default.
  • explicit_only: only use Proof when the user explicitly asks.

Boundary rules:

  • Existing repo-tracked markdown files stay local unless the user explicitly asks to move or share them in Proof.
  • Do not silently replace local project docs with Proof links.
  • If the task is code-adjacent local documentation, keep it local unless the user asks for Proof.

Shared URLs And Auth

Shared URL format:

https://www.proofeditor.ai/d/<slug>?token=<token>

Use one of:

  • Authorization: Bearer <token> (preferred)
  • x-share-token: <token>
  • ?token=<token>

by controls authorship. X-Agent-Id controls presence identity.

Existing Proof Docs

When a Proof URL is provided:

  1. Extract slug and token.
  2. Join immediately by reading state with X-Agent-Id or by posting presence.
  3. Read the doc.
  4. Reply with a short confirmation like Connected in Proof and ready.
  5. Then keep working inside Proof.

Read state and show presence on read:

curl -sS "https://www.proofeditor.ai/api/agent/<slug>/state" \
  -H "Authorization: Bearer <token>" \
  -H "X-Agent-Id: <your-agent-id>"

Update presence explicitly:

curl -sS -X POST "https://www.proofeditor.ai/api/agent/<slug>/presence" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer <token>" \
  -H "X-Agent-Id: <your-agent-id>" \
  -d '{
    "agentId":"<your-agent-id>",
    "status":"reading",
    "summary":"Joining the doc"
  }'

Common statuses: reading, thinking, acting, waiting, completed, error.

Creating A New Proof Doc

Create a shared document:

curl -sS -X POST https://www.proofeditor.ai/share/markdown \
  -H "Content-Type: application/json" \
  -d '{"title":"My Document","markdown":"# Hello\
\
First draft."}'

Save:

  • slug
  • accessToken
  • shareUrl
  • tokenUrl
  • _links

When Proof is the default for the task:

  1. Create the doc.
  2. Return the live Proof link to the user.
  3. Join the doc immediately.
  4. Keep working there.

Choosing An Edit Strategy

TaskRecommended APIWhy
Precise paragraph or section rewriteedit/v2Block refs plus revision locking
Simple append or replaceeditMinimal payload
Human-reviewed editsopsSuggestions and comments in track changes
Large rewrite proposalops + rewrite.applyProduces reviewable changes

Snapshot And Edit V2

Get a snapshot:

curl -sS "https://www.proofeditor.ai/api/agent/<slug>/snapshot" \
  -H "Authorization: Bearer <token>"

Apply block operations:

curl -sS -X POST "https://www.proofeditor.ai/api/agent/<slug>/edit/v2" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer <token>" \
  -H "Idempotency-Key: <unique-key>" \
  -d '{
    "by":"ai:<your-agent-name>",
    "baseRevision":42,
    "operations":[
      {"op":"replace_block","ref":"b3","block":{"markdown":"Updated paragraph."}},
      {"op":"insert_after","ref":"b3","blocks":[{"markdown":"## New section"}]}
    ]
  }'

Supported ops:

  • replace_block
  • insert_before
  • insert_after
  • delete_block
  • replace_range
  • find_replace_in_block

Simple Edit V1

Use this for quick append or replace flows:

curl -sS -X POST "https://www.proofeditor.ai/api/agent/<slug>/edit" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer <token>" \
  -d '{
    "by":"ai:<your-agent-name>",
    "operations":[
      {"op":"append","section":"Notes","content":"\
\
New note."},
      {"op":"replace","search":"old","content":"new"}
    ]
  }'

Comments, Suggestions, And Rewrites

Primary endpoint:

POST /api/agent/<slug>/ops

Compatibility endpoint:

POST /api/documents/<slug>/ops

Examples:

{"type":"comment.add","by":"ai:<your-agent-name>","quote":"anchor text","text":"Comment body"}
{"type":"suggestion.add","by":"ai:<your-agent-name>","kind":"replace","quote":"old text","content":"new text"}
{"type":"suggestion.add","by":"ai:<your-agent-name>","kind":"replace","quote":"old text","content":"new text","status":"accepted"}
{"type":"rewrite.apply","by":"ai:<your-agent-name>","content":"# Rewritten markdown"}

Use ops when you want the human to review changes in track changes.

Events And Presence

Poll for pending events:

curl -sS "https://www.proofeditor.ai/api/agent/<slug>/events/pending?after=0" \
  -H "Authorization: Bearer <token>"

Ack processed events:

curl -sS -X POST "https://www.proofeditor.ai/api/agent/<slug>/events/ack" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer <token>" \
  -d '{"upToId":123,"by":"ai:<your-agent-name>"}'

If you are staying in the loop while a human reviews changes, keep presence updated so the doc shows what you are doing.

Error Handling

ErrorMeaningAction
401/403Bad or missing authRe-read token from URL and retry with bearer token
404Slug not foundVerify slug and environment
409 PROJECTION_STALEMetadata catching upRe-read state or snapshot, then retry
409 STALE_REVISIONSnapshot out of dateUse the fresh snapshot or state and retry
409 ANCHOR_NOT_FOUNDV1 search anchor missingRe-read state and choose a tighter anchor
422Invalid payloadFix required fields and schema
429Rate limitBack off and retry with jitter

Guidelines:

  • Re-read state before retries that depend on anchors or revisions.
  • Include by on every write.
  • Prefer content and markdown payloads as canonical text input.
  • Use Idempotency-Key on edit/v2 requests so retries stay safe.

Discovery

  • Discovery JSON: https://www.proofeditor.ai/.well-known/agent.json
  • Docs: https://www.proofeditor.ai/agent-docs
  • Setup: https://www.proofeditor.ai/agent-setup

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

98.9%
按下载量换算2,551

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills