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

linkedin-post-generatorlinkedin 帖子生成器

Agent Skill

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

总安装

4,820

周安装

195

GitHub Stars

11

下载量

1,513
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/casper-studios/casper-marketplace --skill linkedin-post-generator

简介

linkedin-post-generator 从会议记录、Slack 对话等材料生成个性化 LinkedIn 推文。

  • 基于本地风格配置文件保持语言一致性,支持多源素材融合与话题标签优化。
  • 首次运行需完成个人风格整理与来源配置,后续调用自动应用既定模板。
  • 生成内容需经人工审核后方可发布,避免无意中传播未经核实的信息。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

LinkedIn Post Generator

Generate LinkedIn posts from shared source material, written in each user's personal style.

How It Works

  1. Personal style profile — stored locally at ~/.config/casper/linkedin-style.md (never committed)
  2. Source config — stored locally at ~/.config/casper/linkedin-sources.md (never committed)
  3. Shared source material — meeting transcripts, Slack dumps, docs in source-material/
  4. Prompt template — extraction rules, voice guidelines, few-shot examples in references/prompt-template.md

First Run: Style Setup

Check if ~/.config/casper/linkedin-style.md exists.

If it does NOT exist, run the style setup flow:

  1. Say: "Welcome to the LinkedIn Post Generator! Before we start, I need to understand your writing style."
  2. Say: "Share 3 LinkedIn posts that match the style you want. You can either paste the post links (e.g. https://linkedin.com/posts/...) or paste the text directly."
  3. Wait for the user to provide 3 posts
  4. If the user provides LinkedIn URLs, fetch the post content using the apify-scrapers skill: python ${CLAUDE_PLUGIN_ROOT}/skills/apify-scrapers/scripts/scrape_linkedin_posts.py search "{url}" --max-posts 1 Extract the post text from the JSON output. If a URL fails to fetch, ask the user to paste that post's text instead.
  5. Analyze the posts for: tone, sentence length, vocabulary, formatting habits, hook style, CTA style, use of questions, paragraph length, overall energy
  6. Create ~/.config/casper/ directory if it doesn't exist
  7. Save the analysis to ~/.config/casper/linkedin-style.md using this format:
# LinkedIn Style Profile
Generated: [date]

## Tone
[analysis]

## Structure Patterns
[paragraph length, line breaks, formatting habits]

## Hook Style
[how they open posts]

## CTA / Closing Style
[how they end posts — questions, challenges, etc.]

## Vocabulary & Phrases
[distinctive phrases, word choices, energy level]

## Sample Posts
[the 3 original posts, for reference]
  1. Confirm: "Got it! Your style profile is saved. You can update it anytime with /casper:generate-linkedin-post --setup"

First Run: Source Material Check

After style setup completes (or if style exists but source-material/ is empty), check for source material:

  1. Check if source-material/ contains any .md files besides README.md
  2. If empty, guide the user:

- Say: "You don't have any source material yet. I need content to generate posts from — meeting transcripts, notes, Slack conversations, etc." - Present options: - "Connect integrations" — run the --setup-sources flow to configure Fireflies, Slack, or Google Drive auto-pulling - "Paste something manually" — run the --add-source flow to let the user paste a transcript, notes, or other content - Wait for user choice and proceed with the selected flow

  1. If source material exists, proceed with generation

Normal Run: Post Generation

If style config exists and source material is available, proceed with generation:

  1. Read ~/.config/casper/linkedin-style.md
  2. Read ALL files in ${CLAUDE_PLUGIN_ROOT}/skills/linkedin-post-generator/source-material/ (excluding README.md)
  3. Read ${CLAUDE_PLUGIN_ROOT}/skills/linkedin-post-generator/references/prompt-template.md
  4. Apply the confidentiality rules from the prompt template (no financials, no client names, no pipeline, no team member names)
  5. Generate 2-4 post options based on the source material, written in the user's personal style
  6. Present them in a clean, copy-paste-ready format

Flags

FlagBehavior
(none)Normal generation flow
--setupRe-run style setup, overwrite existing config
--setup-sourcesConfigure which Fireflies, Slack, and Drive sources to pull from
--refreshPull fresh source material from configured integrations, then generate
--view-styleRead and display ~/.config/casper/linkedin-style.md
--view-sourcesList and summarize all files in source-material/
--add-sourcePrompt user to paste new content, save as new .md file in source-material/

Flag Details

--setup-sources

Interactive setup for automatic source pulling. Read references/source-integrations.md for full details.

  1. Ask: "What's your work email address? This is used to filter transcripts to only meetings you attended."

- Save as user_email in the config

  1. Ask: "Which sources do you want to connect?" Present options:

- Fireflies.ai — pulls meeting transcripts (needs FIREFLIES_API_KEY env var) - Slack — pulls messages from channels (needs SLACK_BOT_TOKEN env var) - Google Drive — pulls docs and transcripts (needs OAuth setup via google-workspace skill)

  1. For each selected source, check if the required env var / credentials exist. If missing, provide setup instructions:

- Fireflies: "Set FIREFLIES_API_KEY in your environment. Get your API key from https://app.fireflies.ai/api" - Slack: "Set SLACK_BOT_TOKEN in your environment. Create a Slack app at https://api.slack.com/apps" - Google Drive: "Run the google-workspace skill setup to configure OAuth."

  1. For each enabled source, gather configuration:

- Fireflies: search terms (or leave empty for all recent) and days_back - Slack: which channels to pull from — list available channels if possible, otherwise ask the user - Google Drive: search terms, days_back

  1. Save to ~/.config/casper/linkedin-sources.md
  2. Confirm: "Source config saved. Run /casper:generate-linkedin-post --refresh to pull fresh content."

--refresh

Pull fresh source material from all configured integrations before generating posts. Read references/source-integrations.md for the full integration workflow.

Summary of the flow:

  1. Read ~/.config/casper/linkedin-sources.md — if missing, run --setup-sources first
  2. For each enabled source, call the existing Casper skill scripts:

- Fireflies: python ${CLAUDE_PLUGIN_ROOT}/skills/transcript-search/scripts/fireflies_transcript_search.py "{term}" --days-back {N} --content --json - After fetching, filter results to only transcripts where user_email (from source config) appears in the transcript's participants array - Slack: python ${CLAUDE_PLUGIN_ROOT}/skills/slack-automation/scripts/slack_search.py read "{channel}" --days {N} - Google Drive: python ${CLAUDE_PLUGIN_ROOT}/skills/google-workspace/scripts/gdrive_search.py files "{term}" --modified-days {N} --json

  1. Convert JSON output to clean markdown and save to source-material/:

- Fireflies: fireflies-{YYYY-MM-DD}-{title-slug}.md - Slack: slack-{channel}-{YYYY-MM-DD}.md - Google Drive: gdrive-{title-slug}-{YYYY-MM-DD}.md

  1. Proceed with normal generation

--view-style

Read ~/.config/casper/linkedin-style.md and display it. If it doesn't exist, say "No style profile found. Run /casper:generate-linkedin-post --setup to create one."

--view-sources

List all .md files in ${CLAUDE_PLUGIN_ROOT}/skills/linkedin-post-generator/source-material/ (excluding README.md). For each file, show the filename and a 1-line summary of its contents.

--add-source

  1. Ask: "Paste the content you want to add as source material (meeting transcript, Slack dump, notes, etc.)"
  2. Ask: "What should I name this source file? (e.g., team-standup-jan-2025)"
  3. Save as ${CLAUDE_PLUGIN_ROOT}/skills/linkedin-post-generator/source-material/[name].md
  4. Confirm: "Source material saved. It will be included in future post generation."

Reference Files

FileWhen to Read
references/prompt-template.mdEvery generation run — contains voice rules, few-shot examples, confidentiality rules
references/source-integrations.mdWhen running --refresh or --setup-sources — contains script paths, arguments, output conversion
references/style-setup.mdWhen running --setup — contains analysis framework for style profiling
source-material/*.mdEvery generation run — raw content to extract post ideas from

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.63%
按下载量换算539

Claude

28.13%
按下载量换算426

Cursor

19.28%
按下载量换算292

Gemini CLI

9.59%
按下载量换算145

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills