- Extended generate-docs.py to auto-generate agent and command documentation pages - Added extract_subtitle() for meaningful command descriptions in index - Added Agents nav section (14 entries) and Commands nav section (12 entries) to mkdocs.yml - Updated docs/index.md: 170 skills, 237 tools, 14 agents, 12 commands, Gemini CLI - Updated docs/getting-started.md: Gemini CLI tab, 237 tools, fixed brand_voice path, new FAQs - Regenerated all 203 docs pages (177 skills + 14 agents + 12 commands) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
38 lines
1.1 KiB
Markdown
38 lines
1.1 KiB
Markdown
---
|
|
title: "/changelog"
|
|
description: "/changelog — Claude Code slash command."
|
|
---
|
|
|
|
# /changelog
|
|
|
|
**Type:** Slash Command | **Source:** [`commands/changelog.md`](https://github.com/alirezarezvani/claude-skills/tree/main/commands/changelog.md)
|
|
|
|
---
|
|
|
|
|
|
# /changelog
|
|
|
|
Generate Keep a Changelog entries from git history and validate commit message format.
|
|
|
|
## Usage
|
|
|
|
```
|
|
/changelog generate [--from-tag <tag>] [--to-tag <tag>] Generate changelog entries
|
|
/changelog lint [--from-ref <ref>] [--to-ref <ref>] Lint commit messages
|
|
```
|
|
|
|
## Examples
|
|
|
|
```
|
|
/changelog generate --from-tag v2.0.0
|
|
/changelog lint --from-ref main --to-ref dev
|
|
/changelog generate --from-tag v2.0.0 --to-tag v2.1.0 --format markdown
|
|
```
|
|
|
|
## Scripts
|
|
- `engineering/changelog-generator/scripts/generate_changelog.py` — Parse commits, render changelog (`--from-tag`, `--to-tag`, `--from-ref`, `--to-ref`, `--format markdown|json`)
|
|
- `engineering/changelog-generator/scripts/commit_linter.py` — Validate conventional commit format (`--from-ref`, `--to-ref`, `--strict`, `--format text|json`)
|
|
|
|
## Skill Reference
|
|
→ `engineering/changelog-generator/SKILL.md`
|