| name | clinstagram |
| description | Full Instagram CLI — posting, DMs, stories, analytics, followers, hashtags, likes, comments. Supports Meta Graph API (official, safe) and private API (full features). Three compliance modes: official-only, hybrid-safe, private-enabled.
|
| metadata | {"openclaw":{"requires":{"bins":["clinstagram"],"env":["CLINSTAGRAM_CONFIG_DIR"]},"primaryEnv":"CLINSTAGRAM_CONFIG_DIR","emoji":"📸","homepage":"https://github.com/paperfoot/clinstagram","install":[{"pip":"clinstagram"}]}} |
clinstagram
Hybrid Instagram CLI for AI agents. Routes between Meta Graph API and instagrapi private API based on compliance policy.
Install
pip install clinstagram
Critical: Global Flags Before Subcommand
clinstagram --json --account main dm inbox
clinstagram dm inbox --json
Global flags: --json, --account NAME, --backend auto|graph_ig|graph_fb|private, --proxy URL, --dry-run, --enable-growth-actions
Quick Start
clinstagram --json auth status
clinstagram --json auth probe
clinstagram config mode official-only
clinstagram config mode hybrid-safe
clinstagram config mode private-enabled
clinstagram auth connect-ig --token ...
clinstagram auth connect-fb --token ...
clinstagram auth login
Commands
| Group | Commands | Notes |
|---|
agent-info | agent-info, info (alias) | Bare JSON manifest (ACF compliant) |
doctor | doctor [--deep] [--account NAME] | Check environment and session health |
update | update [--check] [--yes] [--pre] | Check for or perform clinstagram updates |
auth | status, login, connect-ig, connect-fb, probe, logout | status is configured-only; probe is live validation |
post | photo, video, reel, carousel | Local write media requires private-enabled or a public URL |
dm | inbox, thread ID|@user, send @user "text", send-media, search | Cold DMs = private API only; numeric target = reply |
story | list [@user], post-photo, post-video, viewers ID | |
comments | list MEDIA_ID, add, reply, delete | pass the comment_ref from comments list |
analytics | profile, post ID|latest, hashtag TAG | |
followers | list, following, follow @user, unfollow @user | follow/unfollow need --enable-growth-actions |
user | info @user, search QUERY, posts @user | official search is username-style lookup, broad search is private |
hashtag | top TAG, recent TAG | |
like | post MEDIA_ID, undo MEDIA_ID | Needs --enable-growth-actions |
config | show, mode MODE, set KEY VAL | Modes: official-only, hybrid-safe, private-enabled |
JSON Output
Success:
{"exit_code": 0, "data": {}, "backend_used": "graph_fb"}
Error:
{"exit_code": 2, "error": "session_expired", "remediation": "Run: clinstagram auth login", "retry_after": null}
Exit Codes
| Code | Meaning | Action |
|---|
| 0 | Success | Parse data |
| 1 | Bad arguments | Fix syntax |
| 2 | Auth error | Run remediation command |
| 3 | Rate limited | Wait retry_after seconds |
| 4 | API error | Retry |
| 5 | Challenge required | Check challenge_type, prompt user |
| 6 | Policy blocked | Change compliance mode |
| 7 | Capability unavailable | Connect another backend |
Agent Workflow
clinstagram --json auth status
clinstagram --json auth probe
clinstagram --dry-run --json post photo https://example.com/img.jpg --caption "test"
clinstagram --json dm inbox --unread --limit 20
Growth Actions (Disabled by Default)
Follow, unfollow, like, unlike, comment add/reply require --enable-growth-actions. This is a safety gate — confirm with user before enabling.
Backend Capability Matrix
| Feature | graph_ig | graph_fb | private |
|---|
| Post | Y | Y | Y |
| DM inbox | - | Y | Y |
| Cold DM | - | - | Y |
| Stories | - | Y | Y |
| Comments | Y | Y | Y |
| Analytics | Y | Y | Y |
| Follow/Unfollow | - | - | Y |
| Hashtag | Y | Y | Y |
Preference order: graph_ig > graph_fb > private. Override with --backend.
Overrides are still checked against compliance mode.
Examples
clinstagram --json dm inbox --unread
clinstagram --json dm send 123456789 "Thanks!"
clinstagram config mode private-enabled
clinstagram --json post photo /path/to/img.jpg --caption "Hello world"
clinstagram --json analytics post latest
clinstagram --json user search "coffee shops"
clinstagram --json hashtag top photography --limit 10
Config
File: ~/.clinstagram/config.toml. Override dir with CLINSTAGRAM_CONFIG_DIR env var.