Merge pull request #8 from charmbracelet/domains-and-authors

Kujtim Hoxha created

chore: update hard coded domains and author names

Change summary

internal/llm/provider/provider.go |  2 +-
internal/llm/tools/bash.go        | 10 +++++-----
2 files changed, 6 insertions(+), 6 deletions(-)

Detailed changes

internal/llm/provider/provider.go 🔗

@@ -130,7 +130,7 @@ func NewProvider(providerName models.ModelProvider, opts ...ProviderClientOption
 		clientOptions.openaiOptions = append(clientOptions.openaiOptions,
 			WithOpenAIBaseURL("https://openrouter.ai/api/v1"),
 			WithOpenAIExtraHeaders(map[string]string{
-				"HTTP-Referer": "crush.ai",
+				"HTTP-Referer": "crush.charm.land",
 				"X-Title":      "Crush",
 			}),
 		)

internal/llm/tools/bash.go 🔗

@@ -122,16 +122,16 @@ When the user asks you to create a new git commit, follow these steps carefully:
 </commit_analysis>
 
 4. Create the commit with a message ending with:
-🤖 Generated with crush
-Co-Authored-By: crush <noreply@crush.ai>
+💘 Generated with Crush
+Co-Authored-By: Crush <noreply@crush.charm.land>
 
 - In order to ensure good formatting, ALWAYS pass the commit message via a HEREDOC, a la this example:
 <example>
 git commit -m "$(cat <<'EOF'
  Commit message here.
 
- 🤖 Generated with crush
- Co-Authored-By: crush <noreply@crush.ai>
+ 💘 Generated with Crush
+ Co-Authored-By: 💘 Crush <noreply@crush.charm.land>
  EOF
  )"
 </example>
@@ -193,7 +193,7 @@ gh pr create --title "the pr title" --body "$(cat <<'EOF'
 ## Test plan
 [Checklist of TODOs for testing the pull request...]
 
-🤖 Generated with crush
+💘 Generated with Crush
 EOF
 )"
 </example>