We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d6e6bf commit 23623f5Copy full SHA for 23623f5
2 files changed
.github/workflows/ci.yml
@@ -68,6 +68,7 @@ jobs:
68
uses: golangci/golangci-lint-action@v7
69
with:
70
version: v2.1.0
71
+ install-mode: goinstall
72
args: --timeout 5m
73
74
- name: govulncheck
cmd/plan.go
@@ -34,7 +34,7 @@ var planCreateCmd = &cobra.Command{
34
35
// Generate the plan prompt (would normally be sent to an LLM).
36
prompt := planner.Generate(description, "")
37
- cmd.Println("Plan prompt generated. Send this to an LLM to produce a plan:\n")
+ cmd.Println("Plan prompt generated. Send this to an LLM to produce a plan:")
38
cmd.Println("--- System ---")
39
cmd.Println(prompt.System)
40
cmd.Println()
0 commit comments