技能详情(站内镜像,无评论)
作者:Ilya @al1enjesus
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 996 · 3 current installs · 3 all-time installs
⭐ 0
安装量(当前) 3
🛡 VirusTotal :可疑 · OpenClaw :良性
Package:al1enjesus/instagram-poster
安全扫描(ClawHub)
- VirusTotal :可疑
- OpenClaw :良性
OpenClaw 评估
The skill's requests and code are consistent with an Instagram autoposter: it legitimately asks for Instagram credentials, uses a residential browser skill, and saves a local session; nothing in the provided files indicates clear misdirection or exfiltration.
目的
Name/description (Instagram autoposter) match the declared requirements: IG_USERNAME/IG_PASSWORD, dependency on human-browser (residential proxy). The included scripts and README show code paths needed to log in and post images; these requirements are proportionate to the stated purpose.
说明范围
SKILL.md and scripts instruct the agent to download images (HTTP/HTTPS), launch the human-browser skill, log in, and interact with Instagram UI. This stays within the posting scope, but the skill will download arbitrary URLs (user-supplied) and will read/write a session file (~/.openclaw/ig-session.json). If an agent or user supplies an internal URL, the skill could retrieve and upload that content — expected for a poster but worth noting.
安装机制
No install spec (instruction-only with shipped script) — lowest install risk. The code requires the human-browser skill to exist at a relative path; that dependency is declared. Nothing is downloaded from arbitrary URLs during install.
证书
Only IG_USERNAME and IG_PASSWORD are required (plus optional IG_SESSION_PATH), which is appropriate for logging in. The skill saves session cookies locally; environment variables or config entries could store credentials in plaintext — a user-consent/secret-management consideration but proportionate to purpose.
持久
always:false (normal). The skill saves session cookies to ~/.openclaw/ig-session.json so subsequent runs avoid re-login — expected for convenience. This is a persistent file in the user's home directory but does not modify other skills or system-wide settings.
综合结论
This skill appears coherent for automating Instagram posts, but review these before installing: - Trust the human-browser service: it provides the residential proxy and fingerprinting; the skill relies on that external provider to bypass bot detection. - Protect your Instagram credentials: the skill requires IG_USERNAME/IG_PASSWORD and may be stored in your OpenClaw config or environment; prefer using a saved session file if you want to avoid …
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Instagram Poster」。简介:Post images to Instagram automatically via Telegram. Generates images with Wave…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/al1enjesus/instagram-poster/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: instagram-poster
description: >
Post images to Instagram automatically via Telegram. Generates images with WaveSpeed or uses
your own. Bypasses Instagram bot detection using residential proxy. Use when: user wants to
post to Instagram, auto-post image, share photo on Instagram, instagram autoposter, schedule
instagram post, publish to instagram, post reel image. Requires IG_USERNAME + IG_PASSWORD env vars
or a saved session. Needs human-browser skill for residential proxy.
metadata:
openclaw:
emoji: 📸
os: [linux, darwin, win32]
requires:
skills: [human-browser]
env: [IG_USERNAME, IG_PASSWORD]
---
# instagram-poster
Post images to Instagram directly from your AI agent — bypasses bot detection with a real residential IP.
## Quick start
```bash
node {baseDir}/scripts/post.js
--image ./photo.jpg
--caption "Good morning 🌅 #photography"
--user YOUR_USERNAME
--pass YOUR_PASSWORD
```
Post a WaveSpeed-generated image:
```bash
# 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
| Flag | Env | Description |
|------|-----|-------------|
| `--image` | `IG_IMAGE` | Local file path or HTTPS URL |
| `--caption` | `IG_CAPTION` | Post caption (optional) |
| `--user` | `IG_USERNAME` | Instagram username |
| `--pass` | `IG_PASSWORD` | Instagram password |
| `--session` | `IG_SESSION_PATH` | Cookie 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
```json5
{
skills: {
entries: {
"instagram-poster": {
env: {
IG_USERNAME: "your_username",
IG_PASSWORD: "your_password"
}
}
}
}
}
```
## How it works
1. Launches a stealth browser with a **Romanian residential IP** (via human-browser)
2. Logs into Instagram as a real iPhone user — passes all bot checks
3. Uploads your image and submits the caption
4. Saves session cookies so you stay logged in
## Requirements
- [human-browser](https://clawhub.ai/skills/human-browser) skill installed
- Human Browser subscription (residential proxy) → [humanbrowser.dev](https://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 🌅"
```