Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

linkedin-export导出导出

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

774

周安装

31

GitHub Stars

22

下载量

250
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tdimino/claude-code-minoan --skill linkedin-export

简介

linkedin-export 用于辅助前端页面和组件开发。

  • 适合生成 React、Vue 或 CSS 代码并检查布局问题。
  • 需结合项目路由和构建方式,避免生成孤立代码片段。
  • 涉及页面改动时应通过本地预览确认视觉效果。
  • 建议配合设计系统使用,确保组件层级合理。linkedin-export 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

LinkedIn Export Skill

Parse LinkedIn GDPR data exports into structured JSON, then search messages, analyze connections, export to Markdown, and ingest into RLAMA for semantic search.

Prerequisites

  • Python 3.10+ via uv
  • LinkedIn GDPR export ZIP — Request at: LinkedIn → Settings → Data Privacy → Get a copy of your data
  • RLAMA + Ollama (optional, for semantic search ingestion)

Quick Start

# 1. Parse the export ZIP (run once)
uv run ~/.claude/skills/linkedin-export/scripts/li_parse.py ~/Downloads/Basic_LinkedInDataExport_*.zip

# 2. Search, analyze, export, or ingest
uv run ~/.claude/skills/linkedin-export/scripts/li_search.py --list-partners
uv run ~/.claude/skills/linkedin-export/scripts/li_network.py summary
uv run ~/.claude/skills/linkedin-export/scripts/li_export.py all --output ~/linkedin-archive/
uv run ~/.claude/skills/linkedin-export/scripts/li_ingest.py

All scripts read from ~/.claude/skills/linkedin-export/data/parsed.json. Parse once, query many times.


Parse — li_parse.py

Unzip and parse all CSVs from the LinkedIn GDPR export into structured JSON.

uv run ~/.claude/skills/linkedin-export/scripts/li_parse.py <linkedin-export.zip>
uv run ~/.claude/skills/linkedin-export/scripts/li_parse.py <zip> --output /custom/path.json

Output: ~/.claude/skills/linkedin-export/data/parsed.json

Parses: messages, connections, profile, positions, education, skills, endorsements, invitations, recommendations, shares, reactions, certifications.

Auto-detects CSV column names (case-insensitive) to handle LinkedIn format changes between exports.


Search Messages — li_search.py

Search messages by person, keyword, date range, or combination.

# Search by person
uv run ~/.claude/skills/linkedin-export/scripts/li_search.py --person "Jane Doe"

# Search by keyword
uv run ~/.claude/skills/linkedin-export/scripts/li_search.py --keyword "project proposal"

# Date range
uv run ~/.claude/skills/linkedin-export/scripts/li_search.py --after 2025-01-01 --before 2025-06-01

# Combined filters
uv run ~/.claude/skills/linkedin-export/scripts/li_search.py --person "Jane" --keyword "meeting" --after 2025-06-01

# Full conversation by ID
uv run ~/.claude/skills/linkedin-export/scripts/li_search.py --conversation "CONVERSATION_ID"

# List all conversation partners (sorted by message count)
uv run ~/.claude/skills/linkedin-export/scripts/li_search.py --list-partners

# Show context around matches
uv run ~/.claude/skills/linkedin-export/scripts/li_search.py --keyword "AI" --context 3

# Full message content + JSON output
uv run ~/.claude/skills/linkedin-export/scripts/li_search.py --keyword "proposal" --full --json

Flags: --person, --keyword, --after, --before, --conversation, --list-partners, --context N, --full, --limit N, --json


Network Analysis — li_network.py

Analyze the connection graph — companies, roles, timeline.

# Summary stats
uv run ~/.claude/skills/linkedin-export/scripts/li_network.py summary

# Top companies by connection count
uv run ~/.claude/skills/linkedin-export/scripts/li_network.py companies --top 20

# Connection timeline
uv run ~/.claude/skills/linkedin-export/scripts/li_network.py timeline --by year
uv run ~/.claude/skills/linkedin-export/scripts/li_network.py timeline --by month

# Role/title distribution
uv run ~/.claude/skills/linkedin-export/scripts/li_network.py roles --top 20

# Search connections
uv run ~/.claude/skills/linkedin-export/scripts/li_network.py search "Anthropic"

# Export connections to CSV or JSON
uv run ~/.claude/skills/linkedin-export/scripts/li_network.py export --format csv
uv run ~/.claude/skills/linkedin-export/scripts/li_network.py export --format json

Subcommands: summary, companies, timeline, roles, search, export


Export to Markdown — li_export.py

Convert parsed data to clean Markdown files.

# Export messages (one file per conversation)
uv run ~/.claude/skills/linkedin-export/scripts/li_export.py messages --output ~/linkedin-archive/messages/

# Export connections as Markdown table
uv run ~/.claude/skills/linkedin-export/scripts/li_export.py connections --output ~/linkedin-archive/connections.md

# Export everything
uv run ~/.claude/skills/linkedin-export/scripts/li_export.py all --output ~/linkedin-archive/

# Export RLAMA-optimized documents
uv run ~/.claude/skills/linkedin-export/scripts/li_export.py rlama --output ~/linkedin-archive/rlama/

Subcommands: messages, connections, all, rlama


RLAMA Ingestion — li_ingest.py

Prepare RLAMA-optimized documents and create a semantic search collection.

# Full pipeline: prepare docs + create RLAMA collection
uv run ~/.claude/skills/linkedin-export/scripts/li_ingest.py

# Prepare docs only (no RLAMA required)
uv run ~/.claude/skills/linkedin-export/scripts/li_ingest.py --prepare-only

# Rebuild existing collection
uv run ~/.claude/skills/linkedin-export/scripts/li_ingest.py --rebuild

Collection: linkedin-tdimino (fixed/600/100 chunking, BM25-heavy hybrid search)

Query examples:

rlama run linkedin-tdimino --query "What did I discuss with [person]?"
rlama run linkedin-tdimino --query "Who works at [company]?"
rlama run linkedin-tdimino --query "What are my top skills?"

RLAMA document structure:

  • messages-conversations-{a-f,g-l,m-r,s-z}.md — Conversations grouped alphabetically
  • connections-companies.md — Connections by company
  • connections-timeline.md — Connections by year
  • profile-positions-education.md — Resume data
  • endorsements-skills.md — Skills and endorsements
  • shares-reactions.md — Posts and activity
  • INDEX.md — Collection metadata

Data Format Reference

See references/linkedin-export-format.md for complete CSV column documentation.

Key files in the LinkedIn export ZIP:

CSVContents
messages.csvAll messages and InMail
Connections.csv1st-degree connections
Profile.csvProfile data
Positions.csvWork history
Education.csvEducation
Skills.csvListed skills
Endorsement_Received_Info.csvEndorsements
Invitations.csvConnection requests
Recommendations_Received.csvRecommendations
Shares.csvPosts and shares
Reactions.csvPost reactions
Certifications.csvCertifications

Script Selection Guide

TaskScriptExample
First-time setupli_parse.pyParse the ZIP
Find a conversationli_search.py --personSearch by person name
Find a topicli_search.py --keywordSearch by keyword
Who do I talk to most?li_search.py --list-partnersSorted partner list
Company breakdownli_network.py companiesTop companies
Network growthli_network.py timelineConnections over time
Archive messagesli_export.py messagesMarkdown per conversation
Semantic searchli_ingest.pyRLAMA collection

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.7%
按下载量换算87

Claude

30.23%
按下载量换算76

Cursor

15.93%
按下载量换算40

Gemini CLI

9.69%
按下载量换算24

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills