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

linkedin-automation领英自动化

Agent Skill

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

总安装

1,925

周安装

81

GitHub Stars

42

下载量

674
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:linkedin-automation(领英自动化)
来源仓库:https://github.com/manojbajaj95/claude-gtm-plugin
仓库路径:skills/linkedin-automation
安装命令:
npx skills add https://github.com/manojbajaj95/claude-gtm-plugin --skill linkedin-automation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/manojbajaj95/claude-gtm-plugin --skill linkedin-automation

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位结果。
  • 通过 npx 命令从指定仓库安装并使用。
  • 需确认权限范围和维护状态,避免触发联网或文件操作。
  • linkedin-automation 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

LinkedIn Automation via Rube MCP

Automate LinkedIn operations through Composio's LinkedIn toolkit via Rube MCP.

Prerequisites

  • Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
  • Active LinkedIn connection via RUBE_MANAGE_CONNECTIONS with toolkit linkedin
  • Always call RUBE_SEARCH_TOOLS first to get current tool schemas

Setup

Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.

  1. Verify Rube MCP is available by confirming RUBE_SEARCH_TOOLS responds
  2. Call RUBE_MANAGE_CONNECTIONS with toolkit linkedin
  3. If connection is not ACTIVE, follow the returned auth link to complete LinkedIn OAuth
  4. Confirm connection status shows ACTIVE before running any workflows

Core Workflows

1. Create a LinkedIn Post

When to use: User wants to publish a text post on LinkedIn

Tool sequence:

  1. LINKEDIN_GET_MY_INFO - Get authenticated user's profile info [Prerequisite]
  2. LINKEDIN_REGISTER_IMAGE_UPLOAD - Register image upload if post includes an image [Optional]
  3. LINKEDIN_CREATE_LINKED_IN_POST - Publish the post [Required]

Key parameters:

  • text: Post content text
  • visibility: 'PUBLIC' or 'CONNECTIONS'
  • media_title: Title for attached media
  • media_description: Description for attached media

Pitfalls:

  • Must retrieve user profile URN via GET_MY_INFO before creating a post
  • Image uploads require a two-step process: register upload first, then include the asset in the post
  • Post text has character limits enforced by LinkedIn API
  • Visibility defaults may vary; always specify explicitly

2. Get Profile Information

When to use: User wants to retrieve their LinkedIn profile or company details

Tool sequence:

  1. LINKEDIN_GET_MY_INFO - Get authenticated user's profile [Required]
  2. LINKEDIN_GET_COMPANY_INFO - Get company page details [Optional]

Key parameters:

  • No parameters needed for GET_MY_INFO (uses authenticated user)
  • organization_id: Company/organization ID for GET_COMPANY_INFO

Pitfalls:

  • GET_MY_INFO returns the authenticated user only; cannot look up other users
  • Company info requires the numeric organization ID, not the company name or vanity URL
  • Some profile fields may be restricted based on OAuth scopes granted

3. Manage Post Images

When to use: User wants to upload and attach images to LinkedIn posts

Tool sequence:

  1. LINKEDIN_REGISTER_IMAGE_UPLOAD - Register an image upload with LinkedIn [Required]
  2. Upload the image binary to the returned upload URL [Required]
  3. LINKEDIN_GET_IMAGES - Verify uploaded image status [Optional]
  4. LINKEDIN_CREATE_LINKED_IN_POST - Create post with the image asset [Required]

Key parameters:

  • owner: URN of the image owner (user or organization)
  • image_id: ID of the uploaded image for GET_IMAGES

Pitfalls:

  • The upload is a two-phase process: register then upload binary
  • Image asset URN from registration must be used when creating the post
  • Supported formats typically include JPG, PNG, and GIF
  • Large images may take time to process before they are available

4. Comment on Posts

When to use: User wants to comment on an existing LinkedIn post

Tool sequence:

  1. LINKEDIN_CREATE_COMMENT_ON_POST - Add a comment to a post [Required]

Key parameters:

  • post_id: The URN or ID of the post to comment on
  • text: Comment content
  • actor: URN of the commenter (user or organization)

Pitfalls:

  • Post ID must be a valid LinkedIn URN format
  • The actor URN must match the authenticated user or a managed organization
  • Rate limits apply to comment creation; avoid rapid-fire comments

5. Delete a Post

When to use: User wants to remove a previously published LinkedIn post

Tool sequence:

  1. LINKEDIN_DELETE_LINKED_IN_POST - Delete the specified post [Required]

Key parameters:

  • post_id: The URN or ID of the post to delete

Pitfalls:

  • Deletion is permanent and cannot be undone
  • Only the post author or organization admin can delete a post
  • The post_id must be the exact URN returned when the post was created

Common Patterns

ID Resolution

User URN from profile:

1. Call LINKEDIN_GET_MY_INFO
2. Extract user URN (e.g., 'urn:li:person:XXXXXXXXXX')
3. Use URN as actor/owner in subsequent calls

Organization ID from company:

1. Call LINKEDIN_GET_COMPANY_INFO with organization_id
2. Extract organization URN for posting as a company page

Image Upload Flow

  • Call REGISTER_IMAGE_UPLOAD to get upload URL and asset URN
  • Upload the binary image to the provided URL
  • Use the asset URN when creating a post with media
  • Verify with GET_IMAGES if upload status is uncertain

Known Pitfalls

Authentication:

  • LinkedIn OAuth tokens have limited scopes; ensure required permissions are granted
  • Tokens expire; re-authenticate if API calls return 401 errors

URN Formats:

  • LinkedIn uses URN identifiers (e.g., 'urn:li:person:ABC123')
  • Always use the full URN format, not just the alphanumeric ID portion
  • Organization URNs differ from person URNs

Rate Limits:

  • LinkedIn API has strict daily rate limits on post creation and comments
  • Implement backoff strategies for bulk operations
  • Monitor 429 responses and respect Retry-After headers

Content Restrictions:

  • Posts have character limits enforced by the API
  • Some content types (polls, documents) may require additional API features
  • HTML markup in post text is not supported

Quick Reference

TaskTool SlugKey Params
Get my profileLINKEDIN_GET_MY_INFO(none)
Create postLINKEDIN_CREATE_LINKED_IN_POSTtext, visibility
Get company infoLINKEDIN_GET_COMPANY_INFOorganization_id
Register image uploadLINKEDIN_REGISTER_IMAGE_UPLOADowner
Get uploaded imagesLINKEDIN_GET_IMAGESimage_id
Delete postLINKEDIN_DELETE_LINKED_IN_POSTpost_id
Comment on postLINKEDIN_CREATE_COMMENT_ON_POSTpost_id, text, actor

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.81%
按下载量换算255

Claude

30.68%
按下载量换算207

Cursor

17.89%
按下载量换算121

Gemini CLI

9.04%
按下载量换算61

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills