Use when drafting, sending, or preserving email correspondence for an existing ClawHub content rights case.
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-clawhub-content-rights-correspondence-8df668c0f343 ,按照其中的说明把「clawhub-content-rights-correspondence」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
Use ClawHub's authenticated admin CLI commands directly. Do not use helper scripts, direct Hermit calls, or direct R2 access for correspondence.
CHR-... case. Never create cases with this skill.bun run admin -- email send for outbound email.bun run admin -- content-rights record-correspondence to preserve the
exact correspondence in Hermit.--attachment files are archived with the correspondence. The generic email
template does not send file attachments.Hello ...
or Hi ... to the body file.--title, and do not duplicate the title in the body file.Use this subject:
ClawHub skill removal notice
Use this body, replacing only the skill URL:
We removed the following ClawHub skill after receiving a content rights request involving Rednote/Xiaohongshu platform rights:
https://clawhub.ai/<owner>/<slug>
If you believe this removal was made in error, please submit a response using this form:
https://forms.openclaw.ai/clawhub-content-rights
Preview the email:
bun run admin -- email send \
--user <publisher-handle> \
--subject "ClawHub skill removal notice" \
--body-file /tmp/body.txt
Send only after explicit signoff:
bun run admin -- email send \
--user <publisher-handle> \
--subject "ClawHub skill removal notice" \
--body-file /tmp/body.txt \
--send \
--confirm-user-request \
--confirm-user-signoff \
--json
Record the exact sent correspondence:
bun run admin -- content-rights record-correspondence CHR-000007 \
--direction outbound \
--to "<publisher-handle-or-email>" \
--from "ClawHub <noreply@notifications.openclaw.ai>" \
--subject "ClawHub skill removal notice" \
--body-file /tmp/body.txt \
--provider-message-id "<providerId-from-send-response>" \
--json
For requester updates or closure notes, use direct email and avoid exposing the internal case id in the subject unless the user explicitly asks.
bun run admin -- email send \
--to requester@example.com \
--username Requester \
--subject "Update on ClawHub content rights request" \
--body-file /tmp/body.txt
After explicit signoff, send:
bun run admin -- email send \
--to requester@example.com \
--username Requester \
--subject "Update on ClawHub content rights request" \
--body-file /tmp/body.txt \
--send \
--confirm-user-request \
--confirm-user-signoff \
--json
Then record the successful send with the provider id:
bun run admin -- content-rights record-correspondence CHR-000007 \
--direction outbound \
--to "Requester Name <requester@example.com>" \
--from "ClawHub <noreply@notifications.openclaw.ai>" \
--subject "Update on ClawHub content rights request" \
--body-file /tmp/body.txt \
--provider-message-id "<providerId-from-send-response>"
Verify the case now includes the correspondence:
bun run admin -- content-rights get CHR-000007 --json
Run from the ClawHub repository root with the normal authenticated admin CLI.