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

### instagram-poster

Post images to Instagram directly from your AI agent — bypasses bot detection with a real residential IP.

### Quick start

node {baseDir}/scripts/post.js \\
  --image ./photo.jpg \\
  --caption "Good morning 🌅 #photography" \\
  --user YOUR_USERNAME \\
  --pass YOUR_PASSWORD

Post a WaveSpeed-generated image:

# 1. Generate image
node /workspace/.agents/skills/wavespeed/scripts/wavespeed.js generate \\
  --model flux-schnell --prompt "sunset over mountains" --output /tmp/post.png

# 2. Post to Instagram
node {baseDir}/scripts/post.js \\
  --image /tmp/post.png \\
  --caption "Golden hour 🏔️ #nature #photography"

### Options

FlagEnvDescription--imageIG_IMAGELocal file path or HTTPS URL--captionIG_CAPTIONPost caption (optional)--userIG_USERNAMEInstagram username--passIG_PASSWORDInstagram password--sessionIG_SESSION_PATHCookie session file (default: ~/.openclaw/ig-session.json)

### Session caching

On first run, logs in and saves cookies to ~/.openclaw/ig-session.json.
Subsequent runs reuse the session — no re-login needed.

### Config in openclaw.json

{
  skills: {
    entries: {
      "instagram-poster": {
        env: {
          IG_USERNAME: "your_username",
          IG_PASSWORD: "your_password"
        }
      }
    }
  }
}

### How it works

Launches a stealth browser with a Romanian residential IP (via human-browser)
Logs into Instagram as a real iPhone user — passes all bot checks
Uploads your image and submits the caption
Saves session cookies so you stay logged in

### Requirements

human-browser skill installed
Human Browser subscription (residential proxy) → humanbrowser.dev
Instagram account credentials

### Agent usage example

User: Post this sunset photo to Instagram with caption "Golden hour 🌅"
Agent: node {baseDir}/scripts/post.js --image /tmp/sunset.jpg --caption "Golden hour 🌅"
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: al1enjesus
- 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-04-30T07:37:01.570Z
- Expires at: 2026-05-07T07:37:01.570Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/instagram-poster)
- [Send to Agent page](https://openagent3.xyz/skills/instagram-poster/agent)
- [JSON manifest](https://openagent3.xyz/skills/instagram-poster/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/instagram-poster/agent.md)
- [Download page](https://openagent3.xyz/downloads/instagram-poster)