# Send github-image-hosting 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": "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": {
    "downloadUrl": "/downloads/github-image-hosting",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=github-image-hosting",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "github-image-hosting",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T02:30:37.929Z",
      "expiresAt": "2026-05-19T02:30:37.929Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=github-image-hosting",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=github-image-hosting",
        "contentDisposition": "attachment; filename=\"github-image-hosting-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "github-image-hosting"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Image Upload for GitHub

Upload an image to img402.dev's free tier and embed the returned URL in GitHub markdown.

### Quick reference

# Upload (multipart)
curl -s -X POST https://img402.dev/api/free -F image=@/tmp/screenshot.png

# Response
# {"url":"https://i.img402.dev/aBcDeFgHiJ.png","id":"aBcDeFgHiJ","contentType":"image/png","sizeBytes":182400,"expiresAt":"2026-02-17T..."}

### Workflow

Get image: Use an existing file, or capture a screenshot:
screencapture -x /tmp/screenshot.png        # macOS — full screen
screencapture -xw /tmp/screenshot.png       # macOS — frontmost window


Verify size: Must be under 1MB. If larger, resize:
sips -Z 1600 /tmp/screenshot.png  # macOS — scale longest edge to 1600px


Upload:
curl -s -X POST https://img402.dev/api/free -F image=@/tmp/screenshot.png


Embed the returned url in GitHub markdown:
![Screenshot description](https://i.img402.dev/aBcDeFgHiJ.png)

### GitHub integration

Use gh CLI to embed images in PRs and issues:

# Add to PR description
gh pr edit --body "$(gh pr view --json body -q .body)

![Screenshot](https://i.img402.dev/aBcDeFgHiJ.png)"

# Add as PR comment
gh pr comment --body "![Screenshot](https://i.img402.dev/aBcDeFgHiJ.png)"

# Add to issue
gh issue comment 123 --body "![Screenshot](https://i.img402.dev/aBcDeFgHiJ.png)"

### Constraints

Max size: 1MB
Retention: 7 days — suitable for PR reviews, not permanent docs
Formats: PNG, JPEG, GIF, WebP
Rate limit: 1,000 free uploads/day (global)
No auth required

### Tips

Prefer PNG for UI screenshots (sharp text). Use JPEG for photos.
If a screenshot is too large, reduce dimensions with sips -Z 1600 before uploading.
When adding to a PR body or comment, use gh pr comment or gh pr edit with the image markdown.

### Paid tier

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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: rahulgi
- 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-12T02:30:37.929Z
- Expires at: 2026-05-19T02:30:37.929Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/github-image-hosting)
- [Send to Agent page](https://openagent3.xyz/skills/github-image-hosting/agent)
- [JSON manifest](https://openagent3.xyz/skills/github-image-hosting/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/github-image-hosting/agent.md)
- [Download page](https://openagent3.xyz/downloads/github-image-hosting)