← 返回 Skills 市场
453
总下载
0
收藏
1
当前安装
5
版本数
在 OpenClaw 中安装
/install linkedin-outreach
功能描述
🚀 LinkedIn automation with Free (10/month) & Pro ($29/mo unlimited) tiers. Automate connections, follow-ups & lead gen.
使用说明 (SKILL.md)
LinkedIn Outreach Automation
Automated LinkedIn lead generation tool supporting connection requests, follow-up messages, and report generation.
Features
- 🔐 Login to LinkedIn - Secure authentication with session reuse support
- 🔍 Search Target Users - Search by keywords, company, title
- ➕ Send Connection Requests - Batch sending with personalized messages
- 💬 Send Follow-up Messages - Auto-follow up on sent requests
- 📊 Generate Reports - Lead reports in CSV/JSON format
Usage
# Login to LinkedIn
linkedin login
# Search users (keywords + filters)
linkedin search --keywords "software engineer" --location "San Francisco" --limit 50
# Send connection requests
linkedin connect --urns "urn1,urn2" --message "Hi, I'd love to connect!"
# Send follow-up messages
linkedin followup --days 3 --message "Hi, just following up..."
# Generate report
linkedin report --format csv --output leads.csv
Options
login
No parameters. Opens browser for login on first use.
search
| Parameter | Description | Default |
|---|---|---|
| --keywords | Search keywords | required |
| --location | Geographic location | - |
| --company | Company name | - |
| --title | Job title | - |
| --limit | Result limit | 10 |
connect
| Parameter | Description | Default |
|---|---|---|
| --urns | User URN list (comma-separated) | required |
| --message | Personalized message | - |
| --file | Message template file | - |
followup
| Parameter | Description | Default |
|---|---|---|
| --days | Wait days | 3 |
| --message | Follow-up message | required |
| --dry-run | Preview only, no send | false |
report
| Parameter | Description | Default |
|---|---|---|
| --format | Format: csv, json | csv |
| --output | Output file path | stdout |
| --status | Filter status: all, pending, connected | all |
Environment Variables
# LinkedIn credentials (optional, for auto-login)
[email protected]
LINKEDIN_PASSWORD=yourpassword
# Config file path
LINKEDIN_CONFIG=~/.config/linkedin-outreach.json
Message Template Examples
{
"connect": "Hi {first_name}, I came across your profile and I'm impressed by your work at {company}. I'd love to connect and learn more about what you're working on.",
"followup": "Hi {first_name}, I noticed we haven't connected yet. I'd love to network with you and share some insights about {industry} that might be valuable."
}
Notes
- Follow LinkedIn Terms of Service - Over-automation may lead to account restrictions
- Limit Request Frequency - Recommend 50-100 connection requests per day max
- Use Personalized Messages - Improves acceptance rate
- Session Reuse - Avoid frequent logins
Pricing
$29/month or $49 one-time
Free vs Pro
- Free: 10 connection requests/month
- Pro ($29/month): Unlimited + Auto-followup + Analytics
Upgrade: https://buy.stripe.com/8x24gz1t800q7osf9057W00 or contact @ceo_claw
Dependencies
- Node.js 18+
- Playwright
- Config stored in ~/.config/linkedin-outreach/
安全使用建议
This skill appears to do what it says: it automates LinkedIn via a local Playwright-driven browser and stores session and usage files in ~/.config/linkedin-outreach. Before installing or running it, be aware that: (1) you will need Node.js and Playwright (Playwright may download browser binaries); (2) for auto-login you may provide your LinkedIn email/password — those are sensitive and will be used to create a local session file (session.json) that contains storageState (session cookies/tokens); (3) do not run untrusted binaries with your primary account — consider using a secondary/test account; (4) review the code locally if you plan to supply credentials, and back up or secure the ~/.config/linkedin-outreach directory if the machine is shared. If you want extra assurance, run the code in a disposable environment (container or VM) and inspect session/data files before and after use.
功能分析
Type: OpenClaw Skill
Name: linkedin-outreach
Version: 1.0.4
The skill bundle implements a LinkedIn automation tool using Playwright. It stores session data (Playwright's `storageState`) and user-generated content (search results, pending connections) locally in `~/.config/linkedin-outreach/` for session reuse and reporting, which is a standard practice for such tools. While `SKILL.md` suggests using environment variables for LinkedIn credentials, the `scripts/main.js` explicitly uses `inquirer` to prompt the user for credentials, mitigating a direct prompt injection risk. All network activity is confined to `linkedin.com`, and there is no evidence of data exfiltration, malicious execution, persistence mechanisms, or obfuscation. The dependencies are standard and reputable. The behavior is aligned with the stated purpose and lacks meaningful high-risk behaviors beyond what is functionally necessary.
能力评估
Purpose & Capability
Name/description (LinkedIn automation) matches the included CLI code and Playwright-based browser automation. Required resources (browser automation, local config) are appropriate for the stated functionality. There are no requests for unrelated cloud credentials or system-wide secrets.
Instruction Scope
SKILL.md instructs running the CLI to login, search, connect, follow-up and generate reports; the code performs these actions via Playwright and stores data under ~/.config/linkedin-outreach. The instructions do not ask the agent to read unrelated files or exfiltrate data to unknown endpoints.
Install Mechanism
This is an instruction-only skill with source files included (no platform install spec). It depends on Node.js >=18 and Playwright; installing/running will pull in Playwright and its browser binaries (expected for this tool). No arbitrary download URLs or extract steps are present in the repo.
Credentials
The metadata declares no required env vars, while SKILL.md documents optional LINKEDIN_EMAIL / LINKEDIN_PASSWORD and a LINKEDIN_CONFIG path — asking for LinkedIn credentials is sensible for auto-login, but credentials are sensitive. Other than that, no unrelated secrets or many variables are requested.
Persistence & Privilege
The skill persists session.json, data.json and usage.json under ~/.config/linkedin-outreach to reuse sessions and track free-tier usage; this is consistent with its purpose. It does not request always:true, nor does it modify other skills or system-wide settings.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install linkedin-outreach - 安装完成后,直接呼叫该 Skill 的名称或使用
/linkedin-outreach触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.4
- Updated skill description for improved clarity and emphasis on Free and Pro tiers
- Changed upgrade Stripe link in the "Free vs Pro" section
- No changes to functionality or options; documentation update only
v1.0.3
Add Free vs Pro tier with usage limits and upgrade command
v1.0.2
- Added a full English translation of the documentation (SKILL.md), replacing the previous Chinese content.
- All usage examples, feature descriptions, option tables, and notes are now in English.
- No functional or code changes; documentation only.
v1.0.1
- Added CLI usage instructions and command documentation.
- Introduced new features: LinkedIn login, search, batch connect requests, follow-up messaging, and report generation.
- Added configuration options, environment variables, and message template examples.
- Expanded usage notes, including compliance recommendations and request frequency limits.
- Updated metadata with author and descriptive tags.
v1.0.0
Initial release of LinkedIn Outreach skill:
- Automates LinkedIn prospecting by integrating agent-reach reading with LinkedIn API actions.
- Supports targeting by industry or job title and employs customizable message templates.
- Automatically sends connection requests and follow-up messages.
- Generates lead reports based on outreach activities.
- Pricing available at $29/month or a $49 one-time fee.
元数据
常见问题
Linkedin Outreach 是什么?
🚀 LinkedIn automation with Free (10/month) & Pro ($29/mo unlimited) tiers. Automate connections, follow-ups & lead gen. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 453 次。
如何安装 Linkedin Outreach?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install linkedin-outreach」即可一键安装,无需额外配置。
Linkedin Outreach 是免费的吗?
是的,Linkedin Outreach 完全免费(开源免费),可自由下载、安装和使用。
Linkedin Outreach 支持哪些平台?
Linkedin Outreach 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Linkedin Outreach?
由 limoxt(@limoxt)开发并维护,当前版本 v1.0.4。
推荐 Skills