hive.linkedin-automation

仓库创建 2026年1月12日最近提交 1 个月前SkillHot 收录 20 天前
▸ 精选理由

对抗 Shadow DOM、Trusted Types 等 LinkedIn 特殊行为的实战指南。

▸ 风险提示

自动化可能触发 LinkedIn 风控并导致账号被封或需高权限浏览器模拟

这个 Skill 做什么

指导如何用浏览器自动化可靠地与 LinkedIn 交互并规避常见兼容性陷阱。

讲清怎样用浏览器自动化可靠地跟 LinkedIn 互动,教你避开 shadow DOM、Trusted Types CSP、Lexical 编辑器、beforeunload 草稿弹窗和严格反垃圾策略这些常见坑。适合做自动发私信、接受联系人、写 feed 或搜索抓取时参考,别直接照搬脚本上手就跑。文档给出经过验证的流程并说明需要 hive.browser-automation 环境。

▸ 展开 SKILL.md 英文原文

Read before automating LinkedIn with browser_* tools. LinkedIn combines shadow DOM (#interop-outlet), strict Trusted Types CSP that silently drops innerHTML, Lexical composer, native beforeunload dialogs that hang the bridge, and aggressive spam filters — each has bitten us at least once. Verified flows for profile messaging, connection-request acceptance, feed composition, and search. Requires hive.browser-automation. Verified against logged-in production 2026-04-11.

自动化集成LinkedIn浏览器自动化兼容性通用
1.1w
Stars
5.7k
Forks
18
仓库内 Skill
+132
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/aden-hive/hive/main/core/framework/skills/_preset_skills/linkedin-automation/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/aden-hive/hive/main/core/framework/skills/_preset_skills/linkedin-automation/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# LinkedIn Automation

LinkedIn is the hardest mainstream site to automate because it combines **shadow DOM** (`#interop-outlet` for messaging), **strict Trusted Types CSP** (silently drops `innerHTML`), **heavy React reconciliation** (injected nodes get stripped on re-render), **native `beforeunload` draft dialogs** (hang the bridge), and **aggressive spam filters**. Every one of those has bit us at least once. This skill documents what actually works.

**Always activate `browser-automation` first.** This skill assumes you already know about CSS-px coordinates, `browser_type`/`browser_type_focused`, and `browser_shadow_query`. The guidance below is LinkedIn-specific; general browser rules a
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有