WeChat Read CN
通过截图与OCR技术在macOS上读取微信聊天记录。
通过API上传PDF并设置编辑、打印、复制等权限,返回加密后的下载链接。
openclaw skills install @crossservicesolutions/change-pdf-permissions命令、参数、文件名以原文为准
此技能用于修改 PDF 文件的权限标志(例如是否允许打印、编辑或复制内容),具体流程如下:
API 需要使用 API Key 作为 Bearer Token 认证:
Authorization: Bearer <API_KEY>获取 API Key 的方式:
安全规则: 严禁在日志或输出中显示或记录 API Key。
基础 URL:
https://api.xss-cross-service-solutions.com/solutions/solutions创建权限修改任务:
POST /api/75multipart/form-data - file — 必填 — PDF 文件(二进制)
- canModify — 必填 — "true" 或 "false"
- canModifyAnnotations — 必填 — "true" 或 "false"
- canPrint — 必填 — "true" 或 "false"
- canPrintHighQuality — 必填 — "true" 或 "false"
- canAssembleDocument — 必填 — "true" 或 "false"
- canFillInForm — 必填 — "true" 或 "false"
- canExtractContent — 必填 — "true" 或 "false"
- canExtractForAccessibility — 必填 — "true" 或 "false"
通过任务 ID 获取结果:
GET /api/<ID>任务完成后,响应体包含:
output.files[] 数组,每个元素为 { name, path },其中 path 是可下载的文件链接。 - canModify
- canModifyAnnotations
- canPrint
- canPrintHighQuality
- canAssembleDocument
- canFillInForm
- canExtractContent
- canExtractForAccessibility
若用户未指定权限,采用保守默认策略:禁止修改和内容提取,但允许打印:
canModify: falsecanModifyAnnotations: falsecanPrint: truecanPrintHighQuality: truecanAssembleDocument: falsecanFillInForm: true (若文档含表单,此为合理默认)canExtractContent: falsecanExtractForAccessibility: true (通常对无障碍访问有益)默认值可根据具体产品策略进行调整。
返回结构化结果:
job_id(数字)— 任务编号status(字符串)— 当前状态(如 "done")download_url(字符串)— 任务完成后可用的下载链接file_name(字符串)— 输出文件名(可用时)permissions(对象)— 反映最终提交的权限设置示例输出:
{
"job_id": 7501,
"status": "done",
"download_url": "https://.../permissions.pdf",
"file_name": "permissions.pdf",
"permissions": {
"canModify": false,
"canModifyAnnotations": false,
"canPrint": true,
"canPrintHighQuality": true,
"canAssembleDocument": false,
"canFillInForm": true,
"canExtractContent": false,
"canExtractForAccessibility": true
}
}已收录 1 个 Skill