mirror of
https://github.com/Z3Prover/z3
synced 2025-04-05 09:04:07 +00:00
83 lines
2.3 KiB
TypeScript
83 lines
2.3 KiB
TypeScript
// https://microsoft.github.io/genaiscript/guides/auto-git-commit-message/
|
|
import { select, input, confirm } from "@inquirer/prompts"
|
|
|
|
// Check for staged changes and stage all changes if none are staged
|
|
let diff = await host.exec("git", ["diff", "--cached"])
|
|
if (!diff.stdout) {
|
|
const stage = await confirm({
|
|
message: "No staged changes. Stage all changes?",
|
|
default: true,
|
|
})
|
|
if (stage) {
|
|
await host.exec("git", ["add", "."])
|
|
diff = await host.exec("git", [
|
|
"diff",
|
|
"--cached",
|
|
"--",
|
|
".",
|
|
":!**/genaiscript.d.ts",
|
|
])
|
|
}
|
|
if (!diff.stdout) cancel("no staged changes")
|
|
}
|
|
|
|
console.log(diff.stdout)
|
|
|
|
let choice
|
|
let message
|
|
do {
|
|
// Generate commit message
|
|
message = (
|
|
await runPrompt(
|
|
(_) => {
|
|
_.def("GIT_DIFF", diff, { maxTokens: 20000 })
|
|
_.$`GIT_DIFF is a diff of all staged changes, coming from the command:
|
|
\`\`\`
|
|
git diff --cached
|
|
\`\`\`
|
|
Please generate a concise, one-line commit message for these changes.
|
|
- do NOT add quotes`
|
|
},
|
|
{ cache: false, temperature: 0.8 }
|
|
)
|
|
).text
|
|
|
|
// Prompt user for commit message
|
|
choice = await select({
|
|
message,
|
|
choices: [
|
|
{
|
|
name: "commit",
|
|
value: "commit",
|
|
description: "accept message and commit",
|
|
},
|
|
{
|
|
name: "edit",
|
|
value: "edit",
|
|
description: "edit message and commit",
|
|
},
|
|
{
|
|
name: "regenerate",
|
|
value: "regenerate",
|
|
description: "regenerate message",
|
|
},
|
|
],
|
|
})
|
|
|
|
// Handle user choice
|
|
if (choice === "edit") {
|
|
message = await input({
|
|
message: "Edit commit message",
|
|
required: true,
|
|
})
|
|
choice = "commit"
|
|
}
|
|
// Regenerate message
|
|
if (choice === "commit" && message) {
|
|
console.log((await host.exec("git", ["commit", "-m", message])).stdout)
|
|
if (await confirm({ message: "Push changes?", default: true }))
|
|
console.log((await host.exec("git", ["push"])).stdout)
|
|
break
|
|
}
|
|
} while (choice !== "commit")
|