{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/postproxy",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=postproxy",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/postproxy",
    "agentPageUrl": "https://openagent3.xyz/skills/postproxy/agent",
    "manifestUrl": "https://openagent3.xyz/skills/postproxy/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/postproxy/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "PostProxy API Skill",
        "body": "Call the PostProxy API to manage social media posts across multiple platforms (Facebook, Instagram, TikTok, LinkedIn, YouTube, X/Twitter, Threads)."
      },
      {
        "title": "Setup",
        "body": "API key must be set in environment variable POSTPROXY_API_KEY.\nGet your API key at: https://app.postproxy.dev/api_keys"
      },
      {
        "title": "Base URL",
        "body": "https://api.postproxy.dev"
      },
      {
        "title": "Authentication",
        "body": "All requests require Bearer token:\n\n-H \"Authorization: Bearer $POSTPROXY_API_KEY\""
      },
      {
        "title": "List Profiles",
        "body": "curl -X GET \"https://api.postproxy.dev/api/profiles\" \\\n  -H \"Authorization: Bearer $POSTPROXY_API_KEY\""
      },
      {
        "title": "List Posts",
        "body": "curl -X GET \"https://api.postproxy.dev/api/posts\" \\\n  -H \"Authorization: Bearer $POSTPROXY_API_KEY\""
      },
      {
        "title": "Get Post",
        "body": "curl -X GET \"https://api.postproxy.dev/api/posts/{id}\" \\\n  -H \"Authorization: Bearer $POSTPROXY_API_KEY\""
      },
      {
        "title": "Create Post (JSON with media URLs)",
        "body": "curl -X POST \"https://api.postproxy.dev/api/posts\" \\\n  -H \"Authorization: Bearer $POSTPROXY_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"post\": {\n      \"body\": \"Post content here\"\n    },\n    \"profiles\": [\"twitter\", \"linkedin\", \"threads\"],\n    \"media\": [\"https://example.com/image.jpg\"]\n  }'"
      },
      {
        "title": "Create Post (File Upload)",
        "body": "Use multipart form data to upload local files:\n\ncurl -X POST \"https://api.postproxy.dev/api/posts\" \\\n  -H \"Authorization: Bearer $POSTPROXY_API_KEY\" \\\n  -F \"post[body]=Check out this image!\" \\\n  -F \"profiles[]=instagram\" \\\n  -F \"profiles[]=twitter\" \\\n  -F \"media[]=@/path/to/image.jpg\" \\\n  -F \"media[]=@/path/to/image2.png\""
      },
      {
        "title": "Create Draft",
        "body": "Add post[draft]=true to create without publishing:\n\ncurl -X POST \"https://api.postproxy.dev/api/posts\" \\\n  -H \"Authorization: Bearer $POSTPROXY_API_KEY\" \\\n  -F \"post[body]=Draft post content\" \\\n  -F \"profiles[]=twitter\" \\\n  -F \"media[]=@/path/to/image.jpg\" \\\n  -F \"post[draft]=true\""
      },
      {
        "title": "Publish Draft",
        "body": "curl -X POST \"https://api.postproxy.dev/api/posts/{id}/publish\" \\\n  -H \"Authorization: Bearer $POSTPROXY_API_KEY\"\n\nProfile options: facebook, instagram, tiktok, linkedin, youtube, twitter, threads (or use profile IDs)"
      },
      {
        "title": "Schedule Post",
        "body": "Add scheduled_at to post object:\n\ncurl -X POST \"https://api.postproxy.dev/api/posts\" \\\n  -H \"Authorization: Bearer $POSTPROXY_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"post\": {\n      \"body\": \"Scheduled post\",\n      \"scheduled_at\": \"2024-01-16T09:00:00Z\"\n    },\n    \"profiles\": [\"twitter\"]\n  }'"
      },
      {
        "title": "Delete Post",
        "body": "curl -X DELETE \"https://api.postproxy.dev/api/posts/{id}\" \\\n  -H \"Authorization: Bearer $POSTPROXY_API_KEY\""
      },
      {
        "title": "Platform-Specific Parameters",
        "body": "For Instagram, TikTok, YouTube, add platforms object:\n\n{\n  \"platforms\": {\n    \"instagram\": { \"format\": \"reel\", \"first_comment\": \"Link in bio!\" },\n    \"youtube\": { \"title\": \"Video Title\", \"privacy_status\": \"public\" },\n    \"tiktok\": { \"privacy_status\": \"PUBLIC_TO_EVERYONE\" }\n  }\n}"
      },
      {
        "title": "User Request",
        "body": "$ARGUMENTS"
      }
    ],
    "body": "PostProxy API Skill\n\nCall the PostProxy API to manage social media posts across multiple platforms (Facebook, Instagram, TikTok, LinkedIn, YouTube, X/Twitter, Threads).\n\nSetup\n\nAPI key must be set in environment variable POSTPROXY_API_KEY. Get your API key at: https://app.postproxy.dev/api_keys\n\nBase URL\nhttps://api.postproxy.dev\n\nAuthentication\n\nAll requests require Bearer token:\n\n-H \"Authorization: Bearer $POSTPROXY_API_KEY\"\n\nEndpoints\nList Profiles\ncurl -X GET \"https://api.postproxy.dev/api/profiles\" \\\n  -H \"Authorization: Bearer $POSTPROXY_API_KEY\"\n\nList Posts\ncurl -X GET \"https://api.postproxy.dev/api/posts\" \\\n  -H \"Authorization: Bearer $POSTPROXY_API_KEY\"\n\nGet Post\ncurl -X GET \"https://api.postproxy.dev/api/posts/{id}\" \\\n  -H \"Authorization: Bearer $POSTPROXY_API_KEY\"\n\nCreate Post (JSON with media URLs)\ncurl -X POST \"https://api.postproxy.dev/api/posts\" \\\n  -H \"Authorization: Bearer $POSTPROXY_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"post\": {\n      \"body\": \"Post content here\"\n    },\n    \"profiles\": [\"twitter\", \"linkedin\", \"threads\"],\n    \"media\": [\"https://example.com/image.jpg\"]\n  }'\n\nCreate Post (File Upload)\n\nUse multipart form data to upload local files:\n\ncurl -X POST \"https://api.postproxy.dev/api/posts\" \\\n  -H \"Authorization: Bearer $POSTPROXY_API_KEY\" \\\n  -F \"post[body]=Check out this image!\" \\\n  -F \"profiles[]=instagram\" \\\n  -F \"profiles[]=twitter\" \\\n  -F \"media[]=@/path/to/image.jpg\" \\\n  -F \"media[]=@/path/to/image2.png\"\n\nCreate Draft\n\nAdd post[draft]=true to create without publishing:\n\ncurl -X POST \"https://api.postproxy.dev/api/posts\" \\\n  -H \"Authorization: Bearer $POSTPROXY_API_KEY\" \\\n  -F \"post[body]=Draft post content\" \\\n  -F \"profiles[]=twitter\" \\\n  -F \"media[]=@/path/to/image.jpg\" \\\n  -F \"post[draft]=true\"\n\nPublish Draft\ncurl -X POST \"https://api.postproxy.dev/api/posts/{id}/publish\" \\\n  -H \"Authorization: Bearer $POSTPROXY_API_KEY\"\n\n\nProfile options: facebook, instagram, tiktok, linkedin, youtube, twitter, threads (or use profile IDs)\n\nSchedule Post\n\nAdd scheduled_at to post object:\n\ncurl -X POST \"https://api.postproxy.dev/api/posts\" \\\n  -H \"Authorization: Bearer $POSTPROXY_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"post\": {\n      \"body\": \"Scheduled post\",\n      \"scheduled_at\": \"2024-01-16T09:00:00Z\"\n    },\n    \"profiles\": [\"twitter\"]\n  }'\n\nDelete Post\ncurl -X DELETE \"https://api.postproxy.dev/api/posts/{id}\" \\\n  -H \"Authorization: Bearer $POSTPROXY_API_KEY\"\n\nPlatform-Specific Parameters\n\nFor Instagram, TikTok, YouTube, add platforms object:\n\n{\n  \"platforms\": {\n    \"instagram\": { \"format\": \"reel\", \"first_comment\": \"Link in bio!\" },\n    \"youtube\": { \"title\": \"Video Title\", \"privacy_status\": \"public\" },\n    \"tiktok\": { \"privacy_status\": \"PUBLIC_TO_EVERYONE\" }\n  }\n}\n\nUser Request\n\n$ARGUMENTS"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/danbaranov/postproxy",
    "publisherUrl": "https://clawhub.ai/danbaranov/postproxy",
    "owner": "danbaranov",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}