retcon 1.1.0

Turn messy development commits into clean, logical history. Because you knew what you were doing the whole time.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Generate LLM guidance for creating history specifications.

/// Generate the prompt that guides an LLM to create a history specification.
///
/// This is designed to be piped to an LLM along with context about the
/// repository and the changes to be organized.
#[must_use]
pub fn prompt() -> &'static str {
    include_str!("prompt.md")
}