{
  "schemaVersion": "1.0",
  "item": {
    "slug": "github-image-hosting",
    "name": "github-image-hosting",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/rahulgi/github-image-hosting",
    "canonicalUrl": "https://clawhub.ai/rahulgi/github-image-hosting",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/github-image-hosting",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=github-image-hosting",
    "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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/github-image-hosting"
    },
    "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/github-image-hosting",
    "agentPageUrl": "https://openagent3.xyz/skills/github-image-hosting/agent",
    "manifestUrl": "https://openagent3.xyz/skills/github-image-hosting/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/github-image-hosting/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": "Image Upload for GitHub",
        "body": "Upload an image to img402.dev's free tier and embed the returned URL in GitHub markdown."
      },
      {
        "title": "Quick reference",
        "body": "# Upload (multipart)\ncurl -s -X POST https://img402.dev/api/free -F image=@/tmp/screenshot.png\n\n# Response\n# {\"url\":\"https://i.img402.dev/aBcDeFgHiJ.png\",\"id\":\"aBcDeFgHiJ\",\"contentType\":\"image/png\",\"sizeBytes\":182400,\"expiresAt\":\"2026-02-17T...\"}"
      },
      {
        "title": "Workflow",
        "body": "Get image: Use an existing file, or capture a screenshot:\nscreencapture -x /tmp/screenshot.png        # macOS — full screen\nscreencapture -xw /tmp/screenshot.png       # macOS — frontmost window\n\n\nVerify size: Must be under 1MB. If larger, resize:\nsips -Z 1600 /tmp/screenshot.png  # macOS — scale longest edge to 1600px\n\n\nUpload:\ncurl -s -X POST https://img402.dev/api/free -F image=@/tmp/screenshot.png\n\n\nEmbed the returned url in GitHub markdown:\n![Screenshot description](https://i.img402.dev/aBcDeFgHiJ.png)"
      },
      {
        "title": "GitHub integration",
        "body": "Use gh CLI to embed images in PRs and issues:\n\n# Add to PR description\ngh pr edit --body \"$(gh pr view --json body -q .body)\n\n![Screenshot](https://i.img402.dev/aBcDeFgHiJ.png)\"\n\n# Add as PR comment\ngh pr comment --body \"![Screenshot](https://i.img402.dev/aBcDeFgHiJ.png)\"\n\n# Add to issue\ngh issue comment 123 --body \"![Screenshot](https://i.img402.dev/aBcDeFgHiJ.png)\""
      },
      {
        "title": "Constraints",
        "body": "Max size: 1MB\nRetention: 7 days — suitable for PR reviews, not permanent docs\nFormats: PNG, JPEG, GIF, WebP\nRate limit: 1,000 free uploads/day (global)\nNo auth required"
      },
      {
        "title": "Tips",
        "body": "Prefer PNG for UI screenshots (sharp text). Use JPEG for photos.\nIf a screenshot is too large, reduce dimensions with sips -Z 1600 before uploading.\nWhen adding to a PR body or comment, use gh pr comment or gh pr edit with the image markdown."
      },
      {
        "title": "Paid tier",
        "body": "For permanent images (1 year, 5MB max), use the paid endpoint at $0.01 USDC via x402. See https://img402.dev/blog/paying-x402-apis for details."
      }
    ],
    "body": "Image Upload for GitHub\n\nUpload an image to img402.dev's free tier and embed the returned URL in GitHub markdown.\n\nQuick reference\n# Upload (multipart)\ncurl -s -X POST https://img402.dev/api/free -F image=@/tmp/screenshot.png\n\n# Response\n# {\"url\":\"https://i.img402.dev/aBcDeFgHiJ.png\",\"id\":\"aBcDeFgHiJ\",\"contentType\":\"image/png\",\"sizeBytes\":182400,\"expiresAt\":\"2026-02-17T...\"}\n\nWorkflow\nGet image: Use an existing file, or capture a screenshot:\nscreencapture -x /tmp/screenshot.png        # macOS — full screen\nscreencapture -xw /tmp/screenshot.png       # macOS — frontmost window\n\nVerify size: Must be under 1MB. If larger, resize:\nsips -Z 1600 /tmp/screenshot.png  # macOS — scale longest edge to 1600px\n\nUpload:\ncurl -s -X POST https://img402.dev/api/free -F image=@/tmp/screenshot.png\n\nEmbed the returned url in GitHub markdown:\n![Screenshot description](https://i.img402.dev/aBcDeFgHiJ.png)\n\nGitHub integration\n\nUse gh CLI to embed images in PRs and issues:\n\n# Add to PR description\ngh pr edit --body \"$(gh pr view --json body -q .body)\n\n![Screenshot](https://i.img402.dev/aBcDeFgHiJ.png)\"\n\n# Add as PR comment\ngh pr comment --body \"![Screenshot](https://i.img402.dev/aBcDeFgHiJ.png)\"\n\n# Add to issue\ngh issue comment 123 --body \"![Screenshot](https://i.img402.dev/aBcDeFgHiJ.png)\"\n\nConstraints\nMax size: 1MB\nRetention: 7 days — suitable for PR reviews, not permanent docs\nFormats: PNG, JPEG, GIF, WebP\nRate limit: 1,000 free uploads/day (global)\nNo auth required\nTips\nPrefer PNG for UI screenshots (sharp text). Use JPEG for photos.\nIf a screenshot is too large, reduce dimensions with sips -Z 1600 before uploading.\nWhen adding to a PR body or comment, use gh pr comment or gh pr edit with the image markdown.\nPaid tier\n\nFor permanent images (1 year, 5MB max), use the paid endpoint at $0.01 USDC via x402. See https://img402.dev/blog/paying-x402-apis for details."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/rahulgi/github-image-hosting",
    "publisherUrl": "https://clawhub.ai/rahulgi/github-image-hosting",
    "owner": "rahulgi",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/github-image-hosting",
    "downloadUrl": "https://openagent3.xyz/downloads/github-image-hosting",
    "agentUrl": "https://openagent3.xyz/skills/github-image-hosting/agent",
    "manifestUrl": "https://openagent3.xyz/skills/github-image-hosting/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/github-image-hosting/agent.md"
  }
}