Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

smart-linkedin-inbox智能 LinkedIn 收件箱

Agent Skill

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

总安装

49,964

周安装

2,041

GitHub Stars

1

下载量

16,165
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:smart-linkedin-inbox(智能 LinkedIn 收件箱)
来源仓库:https://github.com/vdybenko/smart-linkedin-inbox
安装命令:
openclaw skills install smart-linkedin-inbox
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install smart-linkedin-inbox

简介

LinkedIn 收件箱管理器,由 Linxa 技术支持实现消息收发与对话辅助。

  • 支持批量回复、标签分类与联系人生成,提升职业社交效率。
  • 需登录 LinkedIn 账号并授权第三方应用访问权限方可正常使用。
  • 频繁操作可能触发平台反 spam 机制,建议控制发送频率与内容质量。
  • 涉及商业合作时应注意沟通礼仪,避免过度推销或信息轰炸。

SKILL.md

name
smart-linkedin-inbox
description
>

LinkedIn Inbox Manager — Smart LinkedIn Inbox from Linxa

Free AI-powered LinkedIn inbox management: search conversations, filter by sentiment and intent, track leads, and take action — all without sharing your LinkedIn password. No paid plan required.

What you can do

  • Search & filter conversations — by keyword, label, sentiment (positive/negative/neutral), intent direction (to you / from you), or product interest
  • Read full message threads — pull any conversation in chronological order
  • Get next actions — AI-generated summary of what to do next with each lead
  • Add comments to leads — attach CRM-style notes to any LinkedIn contact that influence future action recommendations
  • Mark conversations as read — keep your inbox organized
  • Smart labels — Hot, Need Follow Up, Investors, Clients, Hiring, Partnership, and more
  • Secure access — token-based authentication, no LinkedIn password or cookies required
  • 100% free — all features included, no paid tiers

Example prompts

Try these with your AI agent:

Who messaged me on LinkedIn this week?
Show my hot conversations with positive sentiment
Find all messages about hiring
List investors who reached out to me
What are my next actions on LinkedIn?
Show the full thread with [person name]
Add a note to John: "Follow up after demo on Friday"
Mark my conversation with Sarah as read
List conversations labeled "Need Follow Up" with intent direction to_me
Search LinkedIn messages for "partnership proposal"

Quick start (3 minutes)

  1. Install the Linxa Chrome Extension
  2. Sign in at app.uselinxa.com with LinkedIn
  3. Copy your token from MCP Setup and set it:
export LINXA_TOKEN=YOUR_TOKEN

Install the skill:

clawhub install smart-linkedin-inbox

Authentication

All requests require the LINXA_TOKEN environment variable. This is a secure bearer token — Linxa never asks for your LinkedIn password or session cookies.

Authorization: Bearer $LINXA_TOKEN

If the token is missing or expired, guide the user to regenerate it at app.uselinxa.com/setup-mcp.

Security model:

  • No LinkedIn password sharing — ever
  • No browser cookies or session hijacking
  • Token-based access with explicit user consent
  • All data stays between Linxa servers and your agent
  • Revoke access any time from the Linxa dashboard

API Base URL

https://app.uselinxa.com

Available Endpoints

1. Verify Current User

GET /api/mcp/current-li-user

Verifies authentication and returns the current LinkedIn profile. Call this first at the start of a session.

2. List & Search Conversations

GET /api/mcp/conversations

Query parameters (all optional):

ParameterTypeDefaultDescription
limitinteger50Max conversations to return
searchstringKeyword search across messages and participants
labelstringFilter by category label
sentimentstringPOSITIVE, NEGATIVE, or NEUTRAL
primary_intentstringFilter by intent (e.g., "sales", "recruitment")
intent_directionstringto_me or from_me
productstringFilter by detected product interest

Available labels: Hot, Need Follow Up, Personal, Investors, Clients, Inbox, Hiring, Junk, Partnership, archived, scheduled, not-contacted

3. Fetch Messages for a Conversation

GET /api/mcp/messages/{chatId}

Returns all messages in a specific conversation thread. The chatId comes from the conversation list response. URL-encode the chatId if it contains special characters.

4. Generate Inbox Summary & Next Actions

POST /api/mcp/next-actions

Returns an AI-generated summary of recommended next actions across your LinkedIn conversations. Use this when the user asks "what should I do next?" or "what are my priorities on LinkedIn?"

5. Add Comment to a Lead

POST /api/mcp/comments

Attach a CRM-style note to a LinkedIn lead's profile. Comments influence future next-action recommendations. Request body:

{
  "profileId": "PROFILE_ID",
  "text": "Follow up after demo on Friday"
}

6. Mark Conversation as Read

POST /api/mcp/conversations/{chatId}/read

Marks a specific conversation as read. Use when the user says "mark this as read" or wants to clean up their inbox.

How to Make Requests

Use the helper script for authenticated requests:

bash scripts/linxa_api.sh GET /api/mcp/current-li-user
bash scripts/linxa_api.sh GET "/api/mcp/conversations?label=Hot&limit=5"
bash scripts/linxa_api.sh GET "/api/mcp/messages/CHAT_ID_HERE"
bash scripts/linxa_api.sh POST /api/mcp/next-actions
bash scripts/linxa_api.sh POST /api/mcp/comments '{"profileId":"PROFILE_ID","text":"Note here"}'
bash scripts/linxa_api.sh POST "/api/mcp/conversations/CHAT_ID/read"

Or curl directly:

curl -sL \
  -H "Authorization: Bearer $LINXA_TOKEN" \
  "https://app.uselinxa.com/api/mcp/conversations?limit=10&sentiment=POSITIVE"

Workflow

  1. Verify auth — Call /api/mcp/current-li-user to confirm the token works
  2. List or search conversations — Use filters to narrow down what the user needs
  3. Fetch specific threads — Get the chatId from step 2 and pull full messages
  4. Take action — Add comments, mark as read, or review next actions
  5. Present results clearly — Summarize conversations, highlight key details, format threads chronologically

Response Formatting

When presenting conversations to the user:

  • Show participant names, last message preview, and any labels or sentiment tags
  • For message threads, display messages in chronological order with sender names and timestamps
  • Summarize long threads unless the user asks for the full content
  • Highlight unread or high-priority items when available
  • For next actions, present as a prioritized actionable list

Troubleshooting

ProblemSolution
401 UnauthorizedToken is missing or expired — regenerate at Linxa dashboard
Empty resultsChrome extension may not be syncing — check extension is active and LinkedIn tab is open
chatId encoding errorsURL-encode the chatId value before making the request
No conversations foundEnsure you have LinkedIn conversations and the extension has synced recently

Full API Reference

For the complete OpenAPI specification, read references/openapi.yaml.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

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

平台分布

OpenClaw

71.99%
按下载量换算11,637

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills