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

keyapi-linkedin-company-analysiskeyapi linkedin 公司分析

Agent Skill

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

总安装

2,303

周安装

95

GitHub Stars

公开资料未说明

下载量

752
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install keyapi-linkedin-company-analysis

简介

检索 LinkedIn 公司档案、职位列表与员工目录等商业情报。

  • 适用于人才招聘、市场拓展与客户画像构建等 B2B 场景。
  • 支持按行业、规模与地域过滤目标企业提高匹配效率。
  • 数据更新存在延迟,建议结合其他渠道交叉核实关键信息。
  • 不得用于发送垃圾消息或未经同意的商业联络行为。keyapi-linkedin-company-analysis 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
keyapi-linkedin-company-analysis
description
Explore and analyze LinkedIn companies — retrieve company profiles, employee directories, published posts, job listings with rich filters, job counts, and individual job details.
metadata
{"openclaw":{"requires":{"env":["KEYAPI_TOKEN"],"bins":["node"]},"primaryEnv":"KEYAPI_TOKEN","emoji":"🏢"}}
author
KeyAPI
license
MIT
repository
https://github.com/EchoSell/keyapi-skills

keyapi-linkedin-company-analysis

Explore and analyze LinkedIn companies — from company profiles and employee directories to job market intelligence and content activity.

This skill provides comprehensive LinkedIn company intelligence using the KeyAPI MCP service. It enables retrieval of company profiles, employee lists, published posts, job listings with advanced filtering, job counts, and individual job details — all through a unified, cache-first workflow.

Use this skill when you need to:

  • Retrieve a company's full LinkedIn profile including size, industry, and description
  • Browse a company's employee directory for talent mapping or org research
  • Analyze a company's published content and thought leadership activity
  • Discover open job listings with filters for role type, experience level, and location
  • Track job posting volume as a proxy for company growth or hiring momentum
  • Retrieve detailed job descriptions including requirements and responsibilities

author: KeyAPI license: MIT repository: https://github.com/EchoSell/keyapi-skills


Prerequisites

RequirementDetails
KEYAPI_TOKENA valid API token from keyapi.ai. Register at the site to obtain your free token. Set it as an environment variable: export KEYAPI_TOKEN=your_token_here
Node.jsv18 or higher
DependenciesRun npm install in the skill directory to install @modelcontextprotocol/sdk

author: KeyAPI license: MIT repository: https://github.com/EchoSell/keyapi-skills


MCP Server Configuration

All tool calls in this skill target the KeyAPI LinkedIn MCP server:

Server URL : https://mcp.keyapi.ai/linkedin/mcp
Auth Header: Authorization: Bearer $KEYAPI_TOKEN

Setup (one-time):

# 1. Install dependencies
npm install

# 2. Set your API token (get one free at https://keyapi.ai/)
export KEYAPI_TOKEN=your_token_here

# 3. List all available tools to verify the connection
node scripts/run.js --platform linkedin --list-tools

author: KeyAPI license: MIT repository: https://github.com/EchoSell/keyapi-skills


Analysis Scenarios

User NeedNode(s)Best For
Company profile, size, industry, descriptionget_company_profileCompany overview, competitive profiling
Employee directory and headcountget_company_peopleOrg mapping, talent research, key contact discovery
Company-published posts and contentget_company_postsContent strategy analysis, brand voice audit
Open job listings with filtersget_company_jobsHiring intelligence, role availability, talent demand signals
Total active job countget_company_job_countGrowth proxy, hiring velocity tracking
Individual job description and requirementsget_job_detailRole qualification analysis, JD benchmarking

author: KeyAPI license: MIT repository: https://github.com/EchoSell/keyapi-skills


Workflow

Step 1 — Identify Analysis Targets and Select Nodes

Clarify the research objective and map it to one or more nodes. Typical entry points:

  • Company overview: Use get_company_profile with company (name) or company_id.
  • Hiring intelligence: Use get_company_jobs with filters, then get_job_detail for specific roles.
  • Growth signals: Use get_company_job_count to track hiring volume over time.
  • Content audit: Use get_company_posts with sort_by: "recent" or "top".
  • Org research: Use get_company_people to browse the employee directory.
Company Identifier: company vs. company_id get_company_profile accepts either: - company — the company's URL slug (e.g., rapidapi from https://www.linkedin.com/company/rapidapi). Resolves in a single request. - company_id — the numeric internal ID. Using company_id costs 1 additional internal request. All other company nodes (get_company_people, get_company_posts, get_company_jobs, get_company_job_count) require company_id. Call get_company_profile first with the company slug to obtain the company_id.
get_job_detail Identifier get_job_detail requires a job_id — the numeric ID found in the job listing URL (e.g., https://www.linkedin.com/jobs/view/1234567890job_id: "1234567890"). Obtain it from get_company_jobs response data.

Step 2 — Retrieve API Schema

Before calling any node, inspect its input schema to confirm required parameters and available filter options:

node scripts/run.js --platform linkedin --schema <tool_name>

# Examples
node scripts/run.js --platform linkedin --schema get_company_profile
node scripts/run.js --platform linkedin --schema get_company_jobs
node scripts/run.js --platform linkedin --schema get_job_detail

Step 3 — Call APIs and Cache Results Locally

Execute tool calls and persist responses to the local cache to avoid redundant API calls.

Calling a tool:

# Single call with pretty output
node scripts/run.js --platform linkedin --tool <tool_name> \
  --params '<json_args>' --pretty

# Force fresh data, skip cache
node scripts/run.js --platform linkedin --tool <tool_name> \
  --params '<json_args>' --no-cache --pretty

Example — get company profile by slug:

node scripts/run.js --platform linkedin --tool get_company_profile \
  --params '{"company":"openai"}' --pretty

Example — get company jobs with filters:

node scripts/run.js --platform linkedin --tool get_company_jobs \
  --params '{"company_id":"783611","experience_level":"mid_senior","remote":"remote","job_type":"full_time","page":1}' --pretty

Example — get job detail with skills:

node scripts/run.js --platform linkedin --tool get_job_detail \
  --params '{"job_id":"1234567890","include_skills":true}' --pretty

Example — get company posts sorted by recent:

node scripts/run.js --platform linkedin --tool get_company_posts \
  --params '{"company_id":"10649600","sort_by":"recent","page":1}' --pretty

Pagination:

EndpointPagination parameterNotes
get_company_people, get_company_posts, get_company_jobspage (int, 1-indexed)Increment page to fetch subsequent results
get_company_profile, get_company_job_count, get_job_detailSingle-call response

get_company_jobs filter reference:

ParameterOptionsDescription
sort_byrecent, relevantSort order for job listings
date_postedanytime, past_month, past_week, past_24_hoursRecency filter
experience_levelinternship, entry_level, associate, mid_senior, director, executiveSeniority filter
remoteonsite, remote, hybridWork location type
job_typefull_time, part_time, contract, temporary, volunteer, internship, otherEmployment type
easy_applyboolean stringFilter for LinkedIn Easy Apply jobs
under_10_applicantsboolean stringFilter for low-competition roles
fair_chance_employerboolean stringFilter for fair chance employers

Cache directory structure:

.keyapi-cache/
└── YYYY-MM-DD/
    ├── get_company_profile/
    │   └── {params_hash}.json
    ├── get_company_people/
    │   └── {params_hash}.json
    ├── get_company_posts/
    │   └── {params_hash}.json
    ├── get_company_jobs/
    │   └── {params_hash}.json
    ├── get_company_job_count/
    │   └── {params_hash}.json
    └── get_job_detail/
        └── {params_hash}.json

Cache-first policy:

Before every API call, check whether a cached result already exists for the given parameters. If a valid cache file exists, load from disk and skip the API call.

Step 4 — Synthesize and Report Findings

After collecting all API responses, produce a structured company intelligence report:

  1. Company Overview — Name, industry, company size, headquarters, founding year, description, LinkedIn follower count.
  2. People & Org Structure — Employee count, key roles identified, department distribution (where available).
  3. Content Activity — Post frequency, top-performing content, engagement patterns, brand messaging themes.
  4. Hiring Intelligence — Open role count, role distribution by function and seniority, remote vs. onsite ratio, hiring velocity signals.
  5. Job Market Signals — Roles with fewer than 10 applicants (opportunity windows), easy-apply availability, date-posted distribution.
  6. Actionable Insights — Growth indicators, talent demand patterns, competitive positioning signals.

author: KeyAPI license: MIT repository: https://github.com/EchoSell/keyapi-skills


Common Rules

RuleDetail
Company ID resolutionget_company_people, get_company_posts, get_company_jobs, get_company_job_count all require company_id. Call get_company_profile first with the company slug to obtain it.
get_company_profile identifierPass company (URL slug) for a single-request lookup. company_id is also accepted but costs 1 additional internal request.
get_job_detail ID sourceExtract job_id from the job listing URL or from get_company_jobs response data.
get_company_posts sortUse sort_by: "top" for highest-engagement posts; sort_by: "recent" for latest activity.
PaginationAll list endpoints use page (1-indexed). No pagination token required.
Success checkcode = 0 → success. Any other value → failure. Always check the response code before processing data.
Retry on 500If code = 500, retry the identical request up to 3 times with a 2–3 second pause between attempts before reporting the error.
Cache firstAlways check the local .keyapi-cache/ directory before issuing a live API call.

author: KeyAPI license: MIT repository: https://github.com/EchoSell/keyapi-skills


Error Handling

CodeMeaningAction
0SuccessContinue workflow normally
400Bad request — invalid or missing parametersValidate input against the tool schema; ensure company_id is provided where required
401Unauthorized — token missing or expiredConfirm KEYAPI_TOKEN is set correctly; visit keyapi.ai to renew
403Forbidden — plan quota exceeded or feature restrictedReview plan limits at keyapi.ai
404Resource not found — company or job may not existVerify the company slug or company_id; confirm the job listing is still active
429Rate limit exceededWait 60 seconds, then retry
500Internal server errorRetry up to 3 times with a 2–3 second pause; if it persists, log the full request and response and skip this node
Other non-0Unexpected errorLog the full response body and surface the error message to the user

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

75.32%
按下载量换算566

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills