- Expand .golangci.yml with more linters (bodyclose, errcheck, etc.), settings for govet, revive, gocritic, gosec - Add // nolint:gosec comments for intentional file operations and subprocesses - Change file write permissions from 0644 to 0600 for better security - Refactor loops, error handling, and test parallelism with t.Parallel() - Minor fixes: ignore unused args, use errors.Is, adjust mkdir permissions to 0750
41 lines
938 B
Go
41 lines
938 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/fatih/color"
|
|
"github.com/spf13/cobra"
|
|
"gmgauthier.com/grokkit/config"
|
|
)
|
|
|
|
var historyCmd = &cobra.Command{
|
|
Use: "history",
|
|
Short: "Summarize recent git history",
|
|
Run: runHistory,
|
|
}
|
|
|
|
func runHistory(cmd *cobra.Command, _ []string) {
|
|
log, err := gitRun([]string{"log", "--oneline", "-10"})
|
|
if err != nil {
|
|
color.Red("Failed to get git log: %v", err)
|
|
return
|
|
}
|
|
if log == "" {
|
|
color.Yellow("No commits found.")
|
|
return
|
|
}
|
|
|
|
modelFlag, _ := cmd.Flags().GetString("model")
|
|
model := config.GetModel("history", modelFlag)
|
|
|
|
client := newGrokClient()
|
|
messages := buildHistoryMessages(log)
|
|
color.Yellow("Summarizing recent commits...")
|
|
client.Stream(messages, model)
|
|
}
|
|
|
|
func buildHistoryMessages(log string) []map[string]string {
|
|
return []map[string]string{
|
|
{"role": "system", "content": "Summarize the recent git history in 3-5 bullet points."},
|
|
{"role": "user", "content": log},
|
|
}
|
|
}
|