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

bmad-os-changelog-socialbmad 操作系统变更日志 社交

Agent Skill

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

总安装

759

周安装

31

GitHub Stars

45,907

下载量

243
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:bmad-os-changelog-social(bmad 操作系统变更日志 社交)
来源仓库:https://github.com/bmad-code-org/bmad-method
仓库路径:skills/bmad-os-changelog-social
安装命令:
npx skills add https://github.com/bmad-code-org/bmad-method --skill bmad-os-changelog-social
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bmad-code-org/bmad-method --skill bmad-os-changelog-social

简介

bmad-os-changelog-social 能从变更日志中提取信息生成社交媒体公告,提升发布传播效率。

  • 适用于需要将版本更新转化为社交内容的产品团队和开发者社区运营场景。
  • 自动解析 Features、Bug Fixes 等分类并生成符合平台风格的文案草稿。
  • 安装前应检查是否具备读取 CHANGELOG.md 的权限及网络发布能力。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Changelog Social

Generate engaging social media announcements from changelog entries.

Workflow

Step 1: Extract Changelog Entry

Read ./CHANGELOG.md and extract the latest version entry. The changelog follows this format:

## [VERSION]

### 🎁 Features
* **Title** — Description

### 🐛 Bug Fixes
* **Title** — Description

### 📚 Documentation
* **Title** — Description

### 🔧 Maintenance
* **Title** — Description

Parse:

  • Version number (e.g., 6.0.0-Beta.5)
  • Features - New functionality, enhancements
  • Bug Fixes - Fixes users will care about
  • Documentation - New or improved docs
  • Maintenance - Dependency updates, tooling improvements

Step 2: Get Git Contributors

Use git log to find contributors since the previous version. Get commits between the current version tag and the previous one:

# Find the previous version tag first
git tag --sort=-version:refname | head -5

# Get commits between versions with PR numbers and authors
git log <previous-tag>..<current-tag> --pretty=format:"%h|%s|%an" --grep="#"

Extract PR numbers from commit messages that contain # followed by digits. Compile unique contributors.

Step 3: Generate Discord Announcement

Limit: 2,000 characters per message. Split into multiple messages if needed.

Use this template style:

🚀 **BMad vVERSION RELEASED!**

🎉 [Brief hype sentence]

🪥 **KEY HIGHLIGHT** - [One-line summary]

🎯 **CATEGORY NAME**
• Feature one - brief description
• Feature two - brief description
• Coming soon: Future teaser

🔧 **ANOTHER CATEGORY**
• Fix or feature
• Another item

📚 **DOCS OR OTHER**
• Item
• Item with link

🌟 **COMMUNITY PHILOSOPHY** (optional - include for major releases)
• Everything is FREE - No paywalls
• Knowledge shared, not sold

📊 **STATS**
X commits | Y PRs merged | Z files changed

🙏 **CONTRIBUTORS**
@username1 (X PRs!), @username2 (Y PRs!)
@username3, @username4, username5 + dependabot 🛡️
Community-driven FTW! 🌟

📦 **INSTALL:**
`npx bmad-method@VERSION install`

⭐ **SUPPORT US:**
🌟 GitHub: github.com/bmad-code-org/BMAD-METHOD/
📺 YouTube: youtube.com/@BMadCode
☕ Donate: buymeacoffee.com/bmad

🔥 **Next version tease!**

Content Strategy:

  • Focus on user impact - what's better for them?
  • Highlight annoying bugs fixed that frustrated users
  • Show new capabilities that enable workflows
  • Keep it punchy - use emojis and short bullets
  • Add personality - excitement, humor, gratitude

Step 4: Generate Twitter Post

Limit: 25,000 characters per tweet (Premium). With Premium, use a single comprehensive post matching the Discord style (minus Discord-specific formatting). Aim for 1,500-3,000 characters for better engagement.

Threads are optional — only use for truly massive releases where you want multiple engagement points.

See examples/twitter-example.md for the single-post Premium format.

Content Selection Guidelines

Include:

  • New features that change workflows
  • Bug fixes for annoying/blocking issues
  • Documentation that helps users
  • Performance improvements
  • New agents or workflows
  • Breaking changes (call out clearly)

Skip/Minimize:

  • Internal refactoring
  • Dependency updates (unless user-facing)
  • Test improvements
  • Minor style fixes

Emphasize:

  • "Finally fixed" issues
  • "Faster" operations
  • "Easier" workflows
  • "Now supports" capabilities

Examples

Reference example posts in examples/ for tone and formatting guidance:

  • discord-example.md — Full Discord announcement with emojis, sections, contributor shout-outs
  • twitter-example.md — Twitter thread format (5 tweets max for major releases)
  • linkedin-example.md — Professional post for major/minor releases with significant features

When to use LinkedIn:

  • Major version releases (e.g., v6.0.0 Beta, v7.0.0)
  • Minor releases with exceptional new features
  • Community milestone announcements

Read the appropriate example file before generating to match the established style and voice.

Output Format

CRITICAL: ALWAYS write to files - Create files in _bmad-output/social/ directory:

  1. {repo-name}-discord-{version}.md - Discord announcement
  2. {repo-name}-twitter-{version}.md - Twitter post
  3. {repo-name}-linkedin-{version}.md - LinkedIn post (if applicable)

Also present a preview in the chat:

## Discord Announcement

[paste Discord content here]

## Twitter Post

[paste Twitter content here]

Files created:

  • _bmad-output/social/{filename}

Offer to make adjustments if the user wants different emphasis, tone, or content.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.32%
按下载量换算79

Claude

30.81%
按下载量换算75

Cursor

17.53%
按下载量换算43

Gemini CLI

9.79%
按下载量换算24

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills