将文本水印添加到一个或多个 PDF,方法是将它们上传到解决方案 API,轮询直至完成,然后返回带水印的 PDF 的下载 URL(如果有多个,则返回 ZIP)。
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install add-watermark-to-pdf或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install add-watermark-to-pdf⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/add-watermark-to-pdf/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: add-watermark-to-pdf description: Add a text watermark to one or multiple PDFs by uploading them to the Solutions API, polling until completion, then returning download URL(s) for the watermarked PDF(s) (or a ZIP if multiple). license: MIT compatibility: agentskills: ">=0.1.0" metadata: category: document-processing tags: - pdf - watermark - batch - cross-service-solutions provider: Cross-Service-Solutions (Solutions API) allowed-tools: - http - files ---
This skill adds a text watermark to one or multiple PDFs by: 1) accepting one or multiple PDF files from the user, 2) accepting a watermark text string, 3) uploading them to the Solutions API, 4) polling the job status until it is finished, 5) returning download URL(s) for the resulting file(s). If multiple PDFs are processed, the output may include multiple PDFs and/or a ZIP for download.
The API requires an API key used as a Bearer token:
Authorization: Bearer
How the user gets an API key:
Rule: never echo or log the API key.
Base URL:
https://api.xss-cross-service-solutions.com/solutions/solutions
Create watermark job:
POST /api/61
multipart/form-data parameters:
- files — required — multiple PDF files (multiple_files)
- text — required — string (watermark text)
Get result by ID:
GET /api/
When done, the response contains:
output.files[] with { name, path } where path is a downloadable URL (PDFs and/or ZIP).
text, string)
Return a structured result:
job_id (number)
status (string)
outputs (array) containing { name, path } for each output file
- download_url (string) if exactly one output exists
- download_urls (array of strings) for all outputs
input_files (array of strings)
watermark_text (string) — returned only if safe; do not return if user considers it sensitive
Example output:
{
"job_id": 6101,
"status": "done",
"outputs": [
{ "name": "watermarked.pdf", "path": "https://.../watermarked.pdf" }
],
"download_url": "https://.../watermarked.pdf",
"download_urls": ["https://.../watermarked.pdf"],
"input_files": ["input.pdf"]
}安装 为 PDF 添加水印 后,可以对 AI 说这些话来触发它
Help me get started with Add watermark to PDF
Explains what Add watermark to PDF does, walks through the setup, and runs a quick demo based on your current project
Use Add watermark to PDF to add a text watermark to one or multiple PDFs by uploading them to t...
Invokes Add watermark to PDF with the right parameters and returns the result directly in the conversation
What can I do with Add watermark to PDF in my documents & notes workflow?
Lists the top use cases for Add watermark to PDF, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/add-watermark-to-pdf/ 目录(个人级,所有项目可用),或 .claude/skills/add-watermark-to-pdf/(项目级)。重启 AI 客户端后,用 /add-watermark-to-pdf 主动调用,或让 AI 根据上下文自动发现并使用。
为 PDF 添加水印 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
为 PDF 添加水印 可免费安装使用。请查阅仓库了解许可证信息。
将文本水印添加到一个或多个 PDF,方法是将它们上传到解决方案 API,轮询直至完成,然后返回带水印的 PDF 的下载 URL(如果有多个,则返回 ZIP)。
为 PDF 添加水印 属于「Documents & Notes」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my documents & notes tasks using Add watermark to PDF
Identifies repetitive steps in your workflow and sets up Add watermark to PDF to handle them automatically