# Send Postproxy 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "postproxy",
    "name": "Postproxy",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/danbaranov/postproxy",
    "canonicalUrl": "https://clawhub.ai/danbaranov/postproxy",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/postproxy",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=postproxy",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "postproxy",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T08:38:34.207Z",
      "expiresAt": "2026-05-14T08:38:34.207Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=postproxy",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=postproxy",
        "contentDisposition": "attachment; filename=\"postproxy-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "postproxy"
      },
      "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/postproxy"
    },
    "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/postproxy",
    "downloadUrl": "https://openagent3.xyz/downloads/postproxy",
    "agentUrl": "https://openagent3.xyz/skills/postproxy/agent",
    "manifestUrl": "https://openagent3.xyz/skills/postproxy/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/postproxy/agent.md"
  }
}
```
## Documentation

### PostProxy API Skill

Call the PostProxy API to manage social media posts across multiple platforms (Facebook, Instagram, TikTok, LinkedIn, YouTube, X/Twitter, Threads).

### Setup

API key must be set in environment variable POSTPROXY_API_KEY.
Get your API key at: https://app.postproxy.dev/api_keys

### Base URL

https://api.postproxy.dev

### Authentication

All requests require Bearer token:

-H "Authorization: Bearer $POSTPROXY_API_KEY"

### List Profiles

curl -X GET "https://api.postproxy.dev/api/profiles" \\
  -H "Authorization: Bearer $POSTPROXY_API_KEY"

### List Posts

curl -X GET "https://api.postproxy.dev/api/posts" \\
  -H "Authorization: Bearer $POSTPROXY_API_KEY"

### Get Post

curl -X GET "https://api.postproxy.dev/api/posts/{id}" \\
  -H "Authorization: Bearer $POSTPROXY_API_KEY"

### Create Post (JSON with media URLs)

curl -X POST "https://api.postproxy.dev/api/posts" \\
  -H "Authorization: Bearer $POSTPROXY_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "post": {
      "body": "Post content here"
    },
    "profiles": ["twitter", "linkedin", "threads"],
    "media": ["https://example.com/image.jpg"]
  }'

### Create Post (File Upload)

Use multipart form data to upload local files:

curl -X POST "https://api.postproxy.dev/api/posts" \\
  -H "Authorization: Bearer $POSTPROXY_API_KEY" \\
  -F "post[body]=Check out this image!" \\
  -F "profiles[]=instagram" \\
  -F "profiles[]=twitter" \\
  -F "media[]=@/path/to/image.jpg" \\
  -F "media[]=@/path/to/image2.png"

### Create Draft

Add post[draft]=true to create without publishing:

curl -X POST "https://api.postproxy.dev/api/posts" \\
  -H "Authorization: Bearer $POSTPROXY_API_KEY" \\
  -F "post[body]=Draft post content" \\
  -F "profiles[]=twitter" \\
  -F "media[]=@/path/to/image.jpg" \\
  -F "post[draft]=true"

### Publish Draft

curl -X POST "https://api.postproxy.dev/api/posts/{id}/publish" \\
  -H "Authorization: Bearer $POSTPROXY_API_KEY"

Profile options: facebook, instagram, tiktok, linkedin, youtube, twitter, threads (or use profile IDs)

### Schedule Post

Add scheduled_at to post object:

curl -X POST "https://api.postproxy.dev/api/posts" \\
  -H "Authorization: Bearer $POSTPROXY_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "post": {
      "body": "Scheduled post",
      "scheduled_at": "2024-01-16T09:00:00Z"
    },
    "profiles": ["twitter"]
  }'

### Delete Post

curl -X DELETE "https://api.postproxy.dev/api/posts/{id}" \\
  -H "Authorization: Bearer $POSTPROXY_API_KEY"

### Platform-Specific Parameters

For Instagram, TikTok, YouTube, add platforms object:

{
  "platforms": {
    "instagram": { "format": "reel", "first_comment": "Link in bio!" },
    "youtube": { "title": "Video Title", "privacy_status": "public" },
    "tiktok": { "privacy_status": "PUBLIC_TO_EVERYONE" }
  }
}

### User Request

$ARGUMENTS
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: danbaranov
- Version: 0.1.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-07T08:38:34.207Z
- Expires at: 2026-05-14T08:38:34.207Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/postproxy)
- [Send to Agent page](https://openagent3.xyz/skills/postproxy/agent)
- [JSON manifest](https://openagent3.xyz/skills/postproxy/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/postproxy/agent.md)
- [Download page](https://openagent3.xyz/downloads/postproxy)