# Send PrivateBin Upload Skill 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": "privatebin-upload",
    "name": "PrivateBin Upload Skill",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/KafCoppelia/privatebin-upload",
    "canonicalUrl": "https://clawhub.ai/KafCoppelia/privatebin-upload",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/privatebin-upload",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=privatebin-upload",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "package.json",
      "README.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "privatebin-upload",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T02:42:43.131Z",
      "expiresAt": "2026-05-08T02:42:43.131Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=privatebin-upload",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=privatebin-upload",
        "contentDisposition": "attachment; filename=\"privatebin-upload-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "privatebin-upload"
      },
      "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/privatebin-upload"
    },
    "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/privatebin-upload",
    "downloadUrl": "https://openagent3.xyz/downloads/privatebin-upload",
    "agentUrl": "https://openagent3.xyz/skills/privatebin-upload/agent",
    "manifestUrl": "https://openagent3.xyz/skills/privatebin-upload/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/privatebin-upload/agent.md"
  }
}
```
## Documentation

### When to Use

Use this skill when:

User wants to upload/share text, code, reports, or files via a paste link
User mentions "paste", "privatebin", "shareable link", "burn after reading", or "password-protect"
User needs expiry-controlled or one-time viewing sharing

Do NOT use this skill when:

User only wants to read an existing paste (use privatebin show <url> directly)
No content or file has been identified to upload
User is asking about PrivateBin in general without intent to upload

### Input / Output

Input:
  content:    string | file_path   # text/code to upload, or file path
  formatter?: plaintext | markdown | syntaxhighlighting  # default: plaintext
  expire?:    5min | 10min | 1hour | 1day | 1week | 1month | 1year | never
  burn_after_reading?: boolean     # default: false
  password?:  string               # ask user if requested
  attachment?: boolean             # true for binary/image/archive files
  bin?:       string               # named instance from config

Output:
  paste_url:  string   # shareable link to present
  expire:     string   # expiry setting used
  password?:  string   # echoed back if set

### Steps

Check CLI — Run privatebin --version. If not found, install privatebin-cli and stop until user resolves it.


Check config — Verify ~/.config/privatebin/config.json exists. If missing, run:
privatebin init                                 # default: privatebin.net
privatebin init --host https://bin.example.com  # custom host



Determine parameters — Infer formatter, expiry, attachment from context. Use defaults (plaintext, 1day) if unspecified. Ask for password only if user requested it.


Run upload — Use --output=json as global flag (before create):
# Text/code via stdin
printf '%s' "<content>" | privatebin --output=json create [flags]

# From file
privatebin --output=json create --filename=/path/to/file [flags]

# File attachment
privatebin --output=json create --attachment --filename=/path/to/file [flags]



Parse response — Extract paste_url from JSON:
{ "paste_id": "...", "paste_url": "https://bin.example.com?id#key", "delete_token": "..." }



Confirm — Present paste_url, expiry, and password (if set) to user.

### Common Flags

FlagExampleUse CaseFormatter--formatter=markdownMarkdown reportsExpiry--expire=10minQuick shareBurn--burn-after-readingOne-time secretPassword--password=secretAccess controlAttachment--attachmentBinary/image files

### On Failure

ErrorActionCLI not foundGuide user to install (see README.md)no privatebin instance configuredRun privatebin init --host <url> --forceRate limitWait 10s, retry once. If fails again, report to userUpload errorShow error message. Check host URL, network, config
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: KafCoppelia
- 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-05-01T02:42:43.131Z
- Expires at: 2026-05-08T02:42:43.131Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/privatebin-upload)
- [Send to Agent page](https://openagent3.xyz/skills/privatebin-upload/agent)
- [JSON manifest](https://openagent3.xyz/skills/privatebin-upload/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/privatebin-upload/agent.md)
- [Download page](https://openagent3.xyz/downloads/privatebin-upload)