Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
git clone --depth 1 https://github.com/doncheli/don-cheli-sddWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/doncheli/don-cheli-sdd/changelog-auto)<a href="https://agentmods.dev/commands/doncheli/don-cheli-sdd/changelog-auto"><img src="https://agentmods.dev/badge/commands/doncheli/don-cheli-sdd/changelog-auto/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/doncheli/don-cheli-sdd/changelog-auto"><img src="https://agentmods.dev/badge/commands/doncheli/don-cheli-sdd/changelog-auto.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00080 | $0.00779 |
| Opus 5 | $0.00040 | $0.00390 |
| Sonnet 5 | $0.00016 | $0.00156 |
| Haiku 4.5 | $0.00008 | $0.00078 |
Grade A, and why
changelog-auto scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 82 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/dc:changelog-auto
Objetivo
Parsear el historial de commits convencionales (feat, fix, docs, refactor, etc.) y generar automáticamente una sección de CHANGELOG.md en formato Keep a Changelog, agrupando cambios por versión, fecha y categoría. Elimina la carga manual de mantener el changelog.
Uso
/dc:changelog-auto
/dc:changelog-auto --from v1.2.0 --to HEAD
/dc:changelog-auto --version 1.3.0
/dc:changelog-auto --dry-run
/dc:changelog-auto --format keepachangelog
Comportamiento
- Detectar rango: desde el último tag de versión hasta HEAD (o el rango especificado con
--from/--to) - Parsear commits convencionales:
feat:→ Addedfix:→ Fixedrefactor:→ Changeddocs:→ Changed (documentación)perf:→ Changed (performance)test:→ omitido por default (configurable)chore:→ omitido por default (configurable)BREAKING CHANGE→ sección separada al tope
- Detectar versión: desde el último tag semver o usar
--versionsi se provee - Agrupar por categoría: Added, Changed, Fixed, Removed, Security, Deprecated
- Insertar la nueva sección al tope del
CHANGELOG.mdexistente (no sobrescribir) - Con
--dry-run: solo imprimir sin modificar el archivo
Formato Keep a Changelog
## [1.3.0] - 2026-03-28
### Added
- feat: descripción del feature (abc1234)
### Changed
- refactor: descripción del refactor (def5678)
### Fixed
- fix: descripción del fix (ghi9012)
### Breaking Changes
- feat!: descripción (jkl3456) — migración requerida: ver docs/migration-1.3.0.md
Reglas
- Excluir commits de merge automáticos (
Merge branch,Merge pull request) - Capitalizar la primera letra de cada entrada
- Incluir hash corto del commit como referencia
- Respetar el idioma de los commits existentes (no traducir)
- Si
CHANGELOG.mdno existe, crearlo con header estándar
Output
<!-- dc:changelog-auto — generado 2026-03-28 desde v1.2.0..HEAD -->
## [1.3.0] - 2026-03-28
### Added
- Integración con Voice Mode para dictar specs (#142, a1b2c3d)
- Generación automática de diagramas Mermaid (#138, e4f5g6h)
### Fixed
- Corregir detección de locale cuando config.yaml está ausente (#145, i7j8k9l)
### Changed
- Refactorizar parser de commits para soportar footers multi-línea (#140, m1n2o3p)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 7d ago First seen · 82 lines · 80 tokens per session scan A 6003de822ef4
changelog-auto is a command published in the GitHub repository doncheli/don-cheli-sdd (57 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 80 tokens to every session and 779 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other commands, from other repositories
release
Generate or update changelog and release notes from project history.
ship
Create a rich PR from planning artifacts (SUMMARY one-liners, requirement coverage, verification status).
audit-fix
Run audit, prioritize findings, auto-fix via quick tasks, test, and commit.
build
Execute all plans in a phase. Spawns agents to build in parallel, commits atomically.
quick
Execute an ad-hoc task with atomic commits. Skips full plan/review.
update-changelog
Update CHANGELOG.md with new entry based on git diff.