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

linkedinLinkedIn 职场运营

Agent Skill

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

总安装

196

周安装

8

下载量

63
Local Agent

安装说明

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

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

简介

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

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

SKILL.md

LinkedIn — Engagement via chrome-bridge MCP

LinkedIn is a React SPA on top of a logged-in Chrome session. The bridge profile has cookies. Do not attempt programmatic login. If redirected to /login or /checkpoint, 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.

Capability map

TaskPre-conditionScriptNotes
Login state checknavigate('https://www.linkedin.com/feed/') + 5sscripts/login_check.jsLogged in → url stays at /feed/, title is "Feed \LinkedIn".
Profile articles via schemanavigate('https://www.linkedin.com/in/<handle>/') + 5suse page_schema() directlyReturns Article entries with headline, datePublished, like counts. Cheapest enumeration of Pulse articles. Does NOT include short feed posts.
Lazy-load the feednavigated to a feed pagescripts/scroll_for_feed.jsLinkedIn renders nothing until ~1000px scroll. Call then wait ~3s.
Enumerate visible feed postsscroll_for_feed.js then ~3sscripts/enumerate_posts.jsUp to 10 {index, urn, author, excerpt, liked, reactionLabel}.
Like first un-liked post in viewfeed is loadedscripts/like_first_unliked.jsIdempotent — checks aria-pressed first. Verify after ~1s by re-querying.
Open the Reaction picker (non-Like reaction)feed post in viewscripts/reaction_hover.jsAfter ~1s: dom_click('button[aria-label="Celebrate"]') (or Like / Support / Love / Insightful / Funny).
Open the comment editorfeed post in viewscripts/comment_open.jsAfter ~2s for editor to mount: dom_type('[role="textbox"][aria-label*="comment" i]', '<text>').
Submit a commenttyped via dom_type, waited ~1sscripts/comment_submit.jsWalks up from the editor to find the inner submit (not the action-bar Comment button).
Open Repost menufeed post in viewscripts/repost_open.jsWait ~1s then repost_select.js.
Pick "Repost" / "Share with your thoughts"menu openscripts/repost_select.js
Expand "...see more" truncationfeed post in viewscripts/expand_truncated.js
Dismiss notification / Premium bannersanywherescripts/dismiss_banners.jsMatches "Not now / No thanks / Dismiss / Close / Maybe later".
Scroll feed to expose next batchacted on visible postsscripts/scroll_step.js+600px; wait ~2s.

Profile overview via schema (fast path)

Before scrolling the activity feed, hit the profile page — LinkedIn embeds a JSON-LD array of the user's recent Pulse articles with headlines, publish dates, and like counts. Zero DOM scraping.

navigate(url='https://www.linkedin.com/in/<handle>/')
# wait ~5s
page_schema()
# → { schemas: [{ "@graph": [{ "@type": "Article", author, headline, datePublished,
#                              interactionStatistic: { userInteractionCount: 7139, ... },
#                              url }, ...] }] }

This is the cheapest way to enumerate a profile's recent article posts. It does not include feed-style short posts — for those, walk the activity page below.

View a profile's recent activity feed

navigate(url='https://www.linkedin.com/in/<handle>/recent-activity/all/')
# wait ~5s
execute_script(code=<contents of scripts/scroll_for_feed.js>)
# wait ~3s
posts = execute_script(code=<contents of scripts/enumerate_posts.js>)

Like a post

LinkedIn calls the like button the "Reaction button". Its aria-pressed reflects state.

result = execute_script(code=<contents of scripts/like_first_unliked.js>)
# wait ~1s, verify by re-querying the same button's aria-pressed

React with a specific emotion (not just Like)

execute_script(code=<contents of scripts/reaction_hover.js>)
# wait ~1s for picker to appear
dom_click('button[aria-label="Celebrate"]')   # or Like / Support / Love / Insightful / Funny

Comment on a post (ProseMirror)

LinkedIn's comment editor is ProseMirror. dom_fill will not work — you must use dom_type.

execute_script(code=<contents of scripts/comment_open.js>)
# wait ~2s for the editor to mount
dom_type('[role="textbox"][aria-label*="comment" i]', 'Great insight — thanks for sharing.')
# wait ~1s so LinkedIn's "empty comment" check unlatches
execute_script(code=<contents of scripts/comment_submit.js>)

Repost

execute_script(code=<contents of scripts/repost_open.js>)
# wait ~1s for the menu
execute_script(code=<contents of scripts/repost_select.js>)

Expand truncated post text

execute_script(code=<contents of scripts/expand_truncated.js>)

Dismiss banners and popups

LinkedIn throws occasional "Turn on notifications", "Upgrade to Premium", or messaging dropdowns over the feed:

execute_script(code=<contents of scripts/dismiss_banners.js>)

Rate limiting

  • Likes: 3–5s between
  • Comments: 10–30s between
  • Follows / connects: 5–10s between
  • Per session: 20–30 actions max, then pause 5–10 minutes

If you see "You've reached the weekly invitation limit" or "We've limited your activity", stop immediately.

Critical rules

  1. Scroll before interacting. LinkedIn's feed lazy-loads — no posts exist in the DOM until scroll ~1000px down. Use scroll_for_feed.js.
  2. Check aria-pressed before clicking Reaction. Clicking when already pressed will unlike. like_first_unliked.js does this for you.
  3. Use dom_type for comments. Anything else silently fails.
  4. Submit comments via comment_submit.js — it walks up from the editor to find the correct inner submit. The action-bar Comment button is a different element that re-opens the editor.
  5. Skip Promoted / Suggested posts[data-urn*="sponsored"] or look for "Promoted" in the card. Engaging with these wastes rate-limit budget.
  6. Close tabs when done.

Example: like the 3 latest posts of a profile

navigate(url='https://www.linkedin.com/in/williamhgates/recent-activity/all/')
# wait ~5s
execute_script(code=<contents of scripts/scroll_for_feed.js>)
# wait ~3s

# Like the first 3 unliked posts in order
for _ in range(3):
    r = execute_script(code=<contents of scripts/like_first_unliked.js>)
    if r == 'all posts already liked': break
    # wait 4s (rate limit)
    execute_script(code=<contents of scripts/scroll_step.js>)
    # wait 2s

Common failures

SignalCauseFix
Zero posts foundForgot to scroll ~1000pxRun scroll_for_feed.js first, then wait, then enumerate
Comment text appears but submit is disabledProseMirror state didn't catch the inputWait 1s after dom_type before running comment_submit.js
Submit click does nothingClicked the action-bar Comment button instead of the editor's inner oneUse comment_submit.js — it walks up from the editor element
DOM empty on activity pageTab opened in backgroundActivate with action('tabs.update',...) first
"Restricted" warningRate-limitedStop immediately; wait out the cooldown outside this session
Login wallSession expiredStop; tell the user to re-authenticate in Chrome

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Local Agent

78.04%
按下载量换算49

安全审计

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

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills