Phase 1b: Rename all ~94 commands across 12 plugins to /<noun> <action> sub-command pattern. Git-flow consolidated from 8→5 commands (commit variants absorbed into --push/--merge/--sync flags). Dispatch files, name: frontmatter, and cross-reference updates for all plugins. Phase 2: Design documents for 8 new plugins in docs/designs/. Phase 3: Scaffold 8 new plugins — saas-api-platform, saas-db-migrate, saas-react-platform, saas-test-pilot, data-seed, ops-release-manager, ops-deploy-pipeline, debug-mcp. Each with plugin.json, commands, agents, skills, README, and claude-md-integration. Marketplace grows from 12→20. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
56 lines
1.4 KiB
Markdown
56 lines
1.4 KiB
Markdown
---
|
|
name: doc changelog-gen
|
|
description: Generate changelog from conventional commits in Keep-a-Changelog format
|
|
---
|
|
|
|
# /doc changelog-gen
|
|
|
|
Generate a changelog entry from conventional commits.
|
|
|
|
## Skills to Load
|
|
|
|
- skills/changelog-format.md
|
|
|
|
## Visual Output
|
|
|
|
```
|
|
+------------------------------------------------------------------+
|
|
| DOC-GUARDIAN - Changelog Generation |
|
|
+------------------------------------------------------------------+
|
|
```
|
|
|
|
## Process
|
|
|
|
1. **Identify Commit Range**
|
|
Execute `skills/changelog-format.md` - detect range from tags
|
|
|
|
2. **Parse Conventional Commits**
|
|
Use pattern from skill: `<type>(<scope>): <description>`
|
|
|
|
3. **Group by Type**
|
|
Map to Keep-a-Changelog sections per skill
|
|
|
|
4. **Format Entries**
|
|
- Extract scope as bold prefix
|
|
- Use description as entry text
|
|
- Link commit hashes if repo URL available
|
|
|
|
5. **Output**
|
|
Use format from `skills/changelog-format.md`
|
|
|
|
## Options
|
|
|
|
| Flag | Description | Default |
|
|
|------|-------------|---------|
|
|
| `--from <tag>` | Start from tag | Latest tag |
|
|
| `--to <ref>` | End at ref | HEAD |
|
|
| `--version <ver>` | Version header | [Unreleased] |
|
|
| `--include-merge` | Include merges | false |
|
|
| `--group-by-scope` | Group by scope | false |
|
|
|
|
## Integration
|
|
|
|
Output designed for direct copy to CHANGELOG.md:
|
|
- Follows [Keep a Changelog](https://keepachangelog.com) format
|
|
- Compatible with semantic versioning
|