# Send Compress PDF to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "compress-pdf",
    "name": "Compress PDF",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/CrossServiceSolutions/compress-pdf",
    "canonicalUrl": "https://clawhub.ai/CrossServiceSolutions/compress-pdf",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/compress-pdf",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=compress-pdf",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "requirements.txt",
      "SKILL.md",
      "scripts/compress-pdf.py",
      "examples/request.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "compress-pdf",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T13:53:05.196Z",
      "expiresAt": "2026-05-06T13:53:05.196Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=compress-pdf",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=compress-pdf",
        "contentDisposition": "attachment; filename=\"compress-pdf-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "compress-pdf"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/compress-pdf"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/compress-pdf",
    "downloadUrl": "https://openagent3.xyz/downloads/compress-pdf",
    "agentUrl": "https://openagent3.xyz/skills/compress-pdf/agent",
    "manifestUrl": "https://openagent3.xyz/skills/compress-pdf/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/compress-pdf/agent.md"
  }
}
```
## Documentation

### Purpose

This skill compresses a PDF by:

accepting a PDF file from the user,
uploading it to the Cross-Service-Solutions compression API,
polling the job status until it is finished,
returning the compressed file download URL.

### Credentials

The API requires an API key used as a Bearer token:

Authorization: Bearer <API_KEY>

How the user gets an API key:

They can sign up and get their key at:
https://login.cross-service-solutions.com/register
Or they can provide an API key directly to the bot.

Rule: never echo or log the API key.

### API endpoints

Base URL:

https://api.xss-cross-service-solutions.com/solutions/solutions

Create compression job:

POST /api/29
multipart/form-data parameters:

file (PDF Dokument) — required — PDF file
imageQuality — required — number 0..100 (default 75)
dpi — required — number 72..300 (default 144)

Get result by ID:

GET /api/<ID>

When done, the response contains:

output.files[] with { name, path } where path is a downloadable URL.

### Required

A PDF file (binary)
An API key (string)

### Optional

imageQuality (0..100), default 75
dpi (72..300), default 144

### Output

Return a structured result:

job_id (number)
status (string)
download_url (string, when done)
file_name (string, when available)
settings (object)

Example output:

{
  "job_id": 123,
  "status": "done",
  "download_url": "https://.../compressed.pdf",
  "file_name": "compressed.pdf",
  "settings": { "imageQuality": 75, "dpi": 144 }
}
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: CrossServiceSolutions
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T13:53:05.196Z
- Expires at: 2026-05-06T13:53:05.196Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/compress-pdf)
- [Send to Agent page](https://openagent3.xyz/skills/compress-pdf/agent)
- [JSON manifest](https://openagent3.xyz/skills/compress-pdf/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/compress-pdf/agent.md)
- [Download page](https://openagent3.xyz/downloads/compress-pdf)