We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20ffabd commit 841f458Copy full SHA for 841f458
cli/src/config.rs
@@ -41,7 +41,7 @@ impl Config {
41
pub fn new(api_url: Option<String>) -> Result<Self> {
42
let api_url = api_url
43
.or_else(|| env::var("CLAWD_API_URL").ok())
44
- .unwrap_or_else(|| "https://clawd-api.dcodes.dev".to_string());
+ .unwrap_or_else(|| "https://api.clawd.xyz".to_string());
45
46
let home = directories::UserDirs::new().context("Could not find home directory")?;
47
let install_base_path = home.home_dir().join(".claude/skills");
0 commit comments