Token导航 LogoToken导航TokenDH.com
研究检索external-serviceunknown未标认证来源可访问许可证需确认审计未展示

instagramInstagram 运营

Agent Skill

instagram 用于查找、检索和筛选相关信息,适合在 Local Agent 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

198

周安装

8

下载量

62
Local Agent

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:instagram(Instagram 运营)
来源仓库:https://cbskills.xcloudzen.com
仓库路径:instagram
安装命令:
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

instagram 用于查找、检索和筛选相关信息。

  • 适合在 Local Agent 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 chrome-bridge MCP 实现浏览器自动化,需确保已登录 Chrome 会话并拥有有效 cookies。
  • 安装方式未知,使用前建议确认权限范围和维护状态,避免触发未授权的联网或文件操作。
  • instagram 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Instagram — Engagement via chrome-bridge MCP

Instagram is a client-rendered React SPA. The logged-in Chrome session is assumed — the bridge profile has cookies. Do not attempt programmatic login. If you hit a login wall, stop and tell the user.

How this skill is laid out

Each capability has a focused JS file under scripts/. To use one:

  1. Read the script file to load it as a string.
  2. Pass the contents as the code argument to mcp__chrome-bridge__execute_script.
  3. The script returns a structured object — see the header comment at the top of each file for the exact return shape.

Some scripts have a value embedded inline (e.g. the comment text in comment_textarea.js) — edit before passing.

Capability map

TaskPre-conditionScriptNotes
Profile metadata (followers, picture)navigate('https://www.instagram.com/<handle>/') + 5sscripts/profile_meta.jsReads OG meta tags. page_schema() returns [] on profile pages.
Profile posts gridsame as abovescripts/profile_posts.jsUp to 12 latest posts/reels, scoped to <main> to skip sidebar/suggestions.
Like a post (idempotent)navigate('https://www.instagram.com/p/<shortcode>/') + 4sscripts/like_post.jsReturns {state}already_liked / clicked / button_not_found. Scoped to section so comment-likes don't get matched.
Verify a like landedran like_post.js, waited ~1sscripts/like_verify.jsReturns boolean.
Type a commentcomment box visible (click svg[aria-label="Comment"] first if needed, wait ~1s)scripts/comment_textarea.jsEdit the comment text inline. Native-setter pattern fires the input event React needs.
Submit a commentran comment_textarea.jsscripts/comment_submit.jsMatches Post button by innerText (button or div[role=button]).
Follow / Follow Backnavigate('https://www.instagram.com/<handle>/') + 5sscripts/follow_button.jsIdempotent. Returns followed / already_following / follow button not found.
Expand truncated captionon a post pagescripts/caption_expand.jsClick the "... more" link.
Read caption textafter caption_expand.js (or if no truncation)scripts/caption_read.jsReads article h1.

Profile overview workflow

navigate(url='https://www.instagram.com/natgeo/')
# wait ~5s — Instagram takes a moment to hydrate
meta = execute_script(code=<contents of scripts/profile_meta.js>)
posts = execute_script(code=<contents of scripts/profile_posts.js>)

The post grid is under <main>. Don't query a[href*="/p/"] globally — the sidebar and suggestions use the same pattern.

Like a post workflow

Instagram renders action icons as svg[aria-label]. The actual click target is the ancestor <button> (or nearest clickable parent). After clicking Like, the aria-label flips to "Unlike" — like_post.js checks for that first so re-running the script is safe.

navigate(url='https://www.instagram.com/p/<shortcode>/')
# wait ~4s
result = execute_script(code=<contents of scripts/like_post.js>)
# wait ~1s
liked = execute_script(code=<contents of scripts/like_verify.js>)

Comment on a post workflow

Instagram uses a <textarea> (not contentEditable) for the comment box, which is why dom_fill usually works — but the submit button only enables after input dispatches correctly, so the native-setter trick in comment_textarea.js is safer.

# Open the comment field by clicking the comment icon (some layouts auto-focus, some need the click)
dom_click('svg[aria-label="Comment"]')   # or the post-specific scoped variant
# wait ~1s

# Edit the comment text inside scripts/comment_textarea.js, then:
execute_script(code=<contents of scripts/comment_textarea.js>)
execute_script(code=<contents of scripts/comment_submit.js>)

Read full caption workflow

Captions truncate with a "... more" link. Expand before extracting:

execute_script(code=<contents of scripts/caption_expand.js>)
# wait ~1s
caption = execute_script(code=<contents of scripts/caption_read.js>)

Rate limiting

Instagram aggressively throttles automation. Hard rules:

  • Likes: wait 3–5s between
  • Comments: wait 10–30s between
  • Follows: wait 5–10s between
  • Per session: cap at 20–30 actions, then pause 5–10 minutes

If you see "Try Again Later", "Action Blocked", or a rate-limit dialog, stop immediately and tell the user. Don't retry.

Critical rules

  1. Scope selectors to main / article / section — Instagram's DOM has look-alikes in the sidebar and suggestions.
  2. Check state before acting. Clicking "Like" when already liked will *unlike*. The like_post.js script does this for you.
  3. Wait after navigation — Instagram needs 4–6s after navigate before the DOM is stable.
  4. Never log in. If you hit /accounts/login, tell the user.
  5. Close tabs when done. Instagram tabs are heavy.
  6. One action per pass. Don't chain like + comment + follow in a single script — Instagram's client state can lag.

Example: like the 3 latest posts of a profile

# 1. Discover
navigate(url='https://www.instagram.com/natgeo/')
# wait ~5s
posts = execute_script(code=<contents of scripts/profile_posts.js>)[:3]

# 2. Per post — open, like, verify
for p in posts:
    navigate(url=p['url'])
    # wait ~4s
    result = execute_script(code=<contents of scripts/like_post.js>)
    # wait ~1s
    liked = execute_script(code=<contents of scripts/like_verify.js>)
    # wait ~3-5s before next post (rate limit)

Common failures

SignalCauseFix
svg[aria-label="Like"] matches but click does nothingMatched a comment-like, not the post-likelike_post.js already scopes to section; if it still happens, the layout changed
Comment posted but didn't show upSubmit button was still disabled when clickedWait ~1s between comment_textarea.js and comment_submit.js so React state catches up
DOM empty after navigatePage not hydratedWait 5–6s; or activate tab if it was opened in background
"Try Again Later"Rate limitedStop; tell the user; don't retry in the same session
Login wallSession expiredStop; tell the user to re-authenticate in Chrome manually

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Local Agent

94.21%
按下载量换算58

安全审计

暂无安全审计结果可展示。

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills