بنقرة واحدة
changelog-generator
Generates structured changelogs from git commit history or structured input
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Generates structured changelogs from git commit history or structured input
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Analyzes project structure, module dependencies, imports, and entry points to generate architecture diagrams in Mermaid format
Analyzes ETL and data pipeline code for optimization opportunities across Python (Pandas, PySpark), Rust (polars, datafusion), SQL, and general pipeline descriptions
Validates environment variable configurations and config files (YAML, TOML, JSON, .env) for missing required variables, type mismatches, deprecated keys, naming convention violations, secret exposure risks, and invalid value ranges
Analyzes code for performance bottlenecks including N+1 queries, O(n^2) or worse algorithms, unnecessary allocations, sync I/O in async contexts, excessive cloning, missing caching opportunities, and large payload transfers. Supports Rust, Python, TypeScript, and Go.
Analyzes, improves, and restructures LLM prompts for clarity, efficiency, and reliability
Analyzes source code for common security vulnerabilities including SQL injection, XSS, command injection, hardcoded secrets, insecure deserialization, path traversal, and SSRF
| name | changelog-generator |
| description | Generates structured changelogs from git commit history or structured input |
| version | 1.0.0 |
| author | go-on-team |
| tags | ["changelog","release","git","documentation","versioning"] |
| min_go_on_version | 1.0.0 |
Produces structured, well-formatted changelogs from git commit history or from a provided list of commits/notes. Supports Keep a Changelog format, Conventional Commits categorization, and custom templates.
feat:, fix:, docs:, refactor:, perf:, test:, chore:, ci:, style:, build:, revert:)BREAKING CHANGE footers or ! after the type) and lists them first| Parameter | Type | Description |
|---|---|---|
commits | string[] | Array of commit messages (or raw git log output) |
from_ref | string | Optional: starting git ref (tag/branch/commit) |
to_ref | string | Optional: ending git ref (default: HEAD) |
format | string | Output format: keep-a-changelog, markdown, json (default: markdown) |
include_author | boolean | Optional: include commit authors (default: false) |
{
"commits": [
"feat: add streaming response support",
"fix: correct timeout handling in websocket reconnection",
"docs: update API reference with new endpoints",
"feat(api): add pagination to list endpoints",
"refactor: extract caching layer into standalone module",
"perf: reduce memory allocation in hot path",
"BREAKING CHANGE: rename `send()` to `dispatch()` across all public APIs",
"chore: bump dependencies"
],
"format": "keep-a-changelog"
}
Example output (abbreviated):
# Changelog
## [Unreleased]
### Breaking Changes
- **api**: rename `send()` to `dispatch()` across all public APIs
### Features
- add streaming response support
- **api**: add pagination to list endpoints
### Bug Fixes
- correct timeout handling in websocket reconnection
### Performance Improvements
- reduce memory allocation in hot path
### Documentation
- update API reference with new endpoints
### Refactoring
- extract caching layer into standalone module
### Chores
- bump dependencies