| name | changelog-writing |
| name_zh | 编写变更日志 |
| description | Shared workflow for writing Langfuse changelog entries after a feature |
| description_zh | 编写清晰、用户友好的变更日志,记录版本更新和改进。 |
| category | dev-tools |
| tags | ["ai","deployment","documentation","frontend","git"] |
| source | null |
| license | UNKNOWN |
| language | en |
| author | unknown |
| version | 0.1.0 |
| needs_review | false |
| slug | changelog-writing |
| created | 2026-06-12 |
| updated | 2026-06-12 |
| inputs | [{"name":"request","type":"string","required":true,"description":"User request or task description"}] |
| output | {"format":"markdown","description":"Generated content based on the user request"} |
When to use
Use this skill when you need guidance on changelog writing.
Inputs
User request or task description.
Output
Generated content based on the user request.
Prompt
Follow the guidelines in this skill when working on related tasks.
Changelog Writing
Use this skill when a completed feature branch needs a changelog entry.
Workflow
- Understand the change set.
- Study recent changelog patterns in
../langfuse-docs/pages/changelog.
- Find related documentation links in
../langfuse-docs/pages.
- Draft a user-focused changelog entry.
- Recommend whether an image or screenshot should be added.
What To Gather
- The branch diff relative to
main
- The Linear issue, if the branch name includes an
lfe-XXXX identifier
- The affected product areas
- Relevant docs pages to link or create
Writing Rules
- Write for users, not internal implementation detail
- Prefer second person: "you can now..."
- Focus on what changed, why it matters, and how to use it
- Match the structure and tone of recent changelog posts
- Keep technical detail only where it improves user understanding
Output Format
Provide:
- A short summary of what changed
- The complete changelog post content
- Whether an image should be added and what it should show
- Any docs pages that should be linked or created
Reference Files
- Changelog destination:
../langfuse-docs/pages/changelog
- Recent changelog examples: inspect 3-5 recent files in that directory
- Existing docs:
../langfuse-docs/pages
When NOT to use
Do not use this skill for tasks outside its scope.
Example
git diff main..HEAD --stat
ls ../langfuse-docs/pages/changelog/ | tail -5
cat ../langfuse-docs/pages/changelog/2024-01-release.md
python scripts/generate-changelog.py \
--branch feature/new-dashboard \
--output changelog-draft.md
python scripts/validate-changelog.py changelog-draft.md