remove-password-from-pdf
⚠Review·Scanned 2/17/2026
This skill uploads a user-provided PDF and its password to https://api.xss-cross-service-solutions.com/solutions/solutions, polls the remove-password job, and returns the unlocked file URL. It requires a Bearer token in SOLUTIONS_API_KEY and includes a CLI invocation python scripts/remove-password-from-pdf.py.
from clawhub.ai·v9aa8bca·11.8 KB·0 installs
Scanned from 1.0.0 at 9aa8bca · Transparency log ↗
$ vett add clawhub.ai/crossservicesolutions/remove-password-from-pdfReview findings below
README.md
# remove-password-from-pdf (OpenClaw Skill)
Remove password protection from a PDF using the Solutions API and return a download URL for the unlocked file.
## What you need
- A password-protected PDF file
- The current password (used as `password`)
- A Solutions API key (Bearer token)
- Register / get key: https://login.cross-service-solutions.com/register
## How it works
1) Upload PDF + current password to:
`POST https://api.xss-cross-service-solutions.com/solutions/solutions/api/33`
2) Poll:
`GET https://api.xss-cross-service-solutions.com/solutions/solutions/api/<job_id>`
3) Return `output.files[0].path` as the download URL
## Script (CLI)
```bash
python scripts/remove_password_from_pdf.py \
--pdf "/path/to/protected.pdf" \
--password "CurrentPasswordHere" \
--api-key "$SOLUTIONS_API_KEY"