module GemHadar::PromptTemplate

def default_git_release_prompt

Returns:
  • (String) - the prompt template for GitHub release changelog generation
def default_git_release_prompt
  <<~EOT
    Output the content of a changelog for the new release of %{name} %{version}
    **Strictly** follow these guidelines:
      - Use bullet points in markdown format (`-`) to list significant changes.
      - Exclude trivial updates such as:
        * Version number increments
        * Dependency version bumps (unless they resolve critical issues)
        * Minor code style adjustments
        * Internal documentation tweaks
      - Include only verified and substantial changes that impact
        functionality, performance, or user experience.
      - If unsure about a change's significance, omit it from the output.
      - Avoid adding any comments or notes; keep the output purely factual.
    These are the log messages including patches for the new release:
    %{log_diff}
  EOT
end