Token导航 LogoToken导航TokenDH.com
待分类只读github未标认证来源可访问clear审计通过

massgen-release-documenterMassgen 发布文档

Agent Skill

massgen-release-documenter 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,018

周安装

42

GitHub Stars

968

下载量

333
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/massgen/massgen --skill massgen-release-documenter

简介

massgen-release-documenter 用于处理 GitHub 仓库、Issue 和 Pull Request 协作信息,适合围绕代码变更进行整理。

  • 适用于仓库状态跟踪、代码变更分析和协作事项管理场景。
  • 通过 GitHub API 集成实现仓库信息和协作数据的获取。
  • 安装前需确认 GitHub 访问权限和维护状态,注意可能触发网络请求。
  • 建议结合原始 README 核验具体用法,确保符合实际使用边界。

SKILL.md

Release Documenter

This skill provides guidance for documenting MassGen releases following the established workflow and conventions.

Purpose

The release-documenter skill ensures consistent, complete release documentation by guiding you through the full release documentation workflow: CHANGELOG → Sphinx Documentation → README → Roadmap updates.

When to Use This Skill

Use the release-documenter skill when you need to:

  • Prepare documentation for a new release
  • Update CHANGELOG.md with new features and fixes
  • Write or update Sphinx documentation
  • Create case studies for major features
  • Update README.md and roadmap documents
  • Follow the release checklist process

Authoritative Documentation

IMPORTANT: The primary source of truth for release documentation is:

📋 docs/dev_notes/release_checklist.md

This file contains:

  • Complete phase-by-phase release workflow
  • Detailed documentation update requirements
  • Validation checklists
  • Commit and tag workflow
  • Automation tool information
  • All current conventions and rules

Always consult this document for the complete release process.

Critical Documentation Order

Always follow this order:

  1. CHANGELOG.md ⭐ START HERE
  2. Sphinx Documentation (docs/source/)
  3. Config Documentation (massgen/configs/README.md)
  4. Case Studies (docs/source/examples/case_studies/)
  5. README.md
  6. README_PYPI.md (auto-synced via pre-commit)
  7. Roadmap (ROADMAP.md)

This order is critical - never skip ahead!

Quick Reference Workflow

Phase 1: CHANGELOG.md (Required First Step)

Document all changes under these categories:

  • Added - New features
  • Changed - Modified behavior
  • Fixed - Bug fixes
  • Documentations, Configurations and Resources - New docs/configs
  • Technical Details - Contributors, focus areas
# Get changes since last release
git log v0.1.X-1..HEAD --oneline
gh pr list --base dev/v0.1.X --state merged

See docs/dev_notes/release_checklist.md sections 3.1 for detailed format.

Phase 2: Sphinx Documentation

Update as needed:

  • docs/source/index.rst - Recent Releases section (keep latest 3)
  • docs/source/user_guide/ - New feature guides
  • docs/source/reference/yaml_schema.rst - New YAML parameters
  • docs/source/reference/supported_models.rst - New models

Build and verify:

cd docs && make html
make linkcheck  # Verify no broken links

See docs/dev_notes/release_checklist.md section 3.2 for complete requirements.

Phase 3: Config Documentation

  • Update massgen/configs/README.md
  • Create example configs in appropriate category
  • Test all new configs

Phase 4: Case Studies

# Use template
cp docs/source/examples/case_studies/case-study-template.md \
   docs/source/examples/case_studies/v0.1.X-feature-name.md

# Update index
vim docs/source/examples/case_studies.rst

See docs/dev_notes/release_checklist.md section 3.4.

Phase 5: README.md

Update these sections:

  1. Recent Achievements (move old to Previous Achievements)
  2. Case Studies section
  3. Configuration Files (if structure changed)

Copy format from CHANGELOG.md and expand.

Phase 6: README_PYPI.md (Automated)

✅ Auto-synced via pre-commit hook!

When you commit README.md changes:

  1. Pre-commit hook runs automatically
  2. README_PYPI.md gets synced
  3. If hook shows "Failed - files were modified", run git commit again

Manual sync if needed:

uv run python scripts/sync_readme_pypi.py

Phase 7: Roadmap

  • Mark completed features as ✅ in ROADMAP.md
  • Update ROADMAP_v0.1.X+1.md for next release
  • Do NOT edit docs/source/development/roadmap.rst (auto-generated)

Quick Validation Checklist

Must Update (every release):

  1. ✅ CHANGELOG.md
  2. ✅ docs/source/index.rst (Recent Releases)
  3. ✅ docs/source/user_guide/ (if user-facing feature)
  4. ✅ README.md (Recent Achievements)
  5. ✅ massgen/configs/ (example configs)
  6. ✅ Case study

Should Update (if applicable): 7. ⚠️ massgen/config_builder.py (if config params added) 8. ⚠️ massgen/backend/capabilities.py (if backend changes) 9. ✅ README_PYPI.md (auto-synced) 10. ⚠️ ROADMAP.md

Build & Verify: 11. 🔨 cd docs && make html && make linkcheck 12. 🔨 Test new config files 13. 🔨 Verify all links work

See docs/dev_notes/release_checklist.md section "Quick Reference Checklist" for complete list.

Backend Updates (When Needed)

Config Builder

If new YAML parameters were added, update massgen/config_builder.py:

  • Add parameters to interactive wizard
  • Update validation
  • Add help text
  • Test with massgen --config-builder

Backend Capabilities

If backend capabilities changed, update massgen/backend/capabilities.py:

  • Document which backends support new features
  • Update capability matrix
  • Add new capability flags

See docs/dev_notes/release_checklist.md section 2.1-2.2.

Commit and Release Workflow

Commit Message Template

git commit -m "docs: Release v0.1.X documentation

- Updated CHANGELOG.md with full release notes
- Added case study: [Feature Name]
- Updated README.md Recent Achievements
- Enhanced Sphinx documentation
- Added example configurations

Major features:
- Feature 1: Description
- Feature 2: Description
"

Create PR

git push origin dev/v0.1.X

gh pr create --base main --head dev/v0.1.X \
  --title "Release v0.1.X: [Feature Name]" \
  --body "See CHANGELOG.md for full release notes"

Tag Release (After Merge)

git checkout main && git pull

git tag -a v0.1.X -m "Release v0.1.X: [Feature Name]

Major features:
- Feature 1
- Feature 2

See CHANGELOG.md for details."

git push origin v0.1.X

See docs/dev_notes/release_checklist.md section 7 for complete workflow.

Reference Files

Primary Documentation:

  • Release checklist: docs/dev_notes/release_checklist.md ⭐ START HERE
  • Writing configs: docs/source/development/writing_configs.rst

Scripts:

  • README sync: scripts/sync_readme_pypi.py
  • Config validation: scripts/precommit_validate_configs.py
  • Backend tables: docs/scripts/generate_backend_tables.py

Templates:

  • Case study template: docs/source/examples/case_studies/case-study-template.md

Tips for Agents

When preparing release documentation:

  1. Always read the release checklist first: docs/dev_notes/release_checklist.md
  2. Follow the order strictly: CHANGELOG → Sphinx → README → Roadmap
  3. Build docs after changes: cd docs && make html && make linkcheck
  4. Test all new configs before committing
  5. When in doubt, consult docs/dev_notes/release_checklist.md for complete guidance

This skill is a quick reference guide. For comprehensive, step-by-step instructions, always refer to the official release checklist document.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

28.78%
按下载量换算96

OpenCode

23.86%
按下载量换算79

Antigravity

17.98%
按下载量换算60

windsurf

12.1%
按下载量换算40

Codex

9.21%
按下载量换算31

Gemini CLI

4.01%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills