@@ -1460,7 +1460,7 @@ impl SlashCommand for GoalCommand {
14601460 async fn execute ( & self , args : & str , ctx : & mut CommandContext ) -> CommandResult {
14611461 if !claurst_core:: goals_enabled ( ) {
14621462 return CommandResult :: Message (
1463- "Goals are disabled. Unset CLAURST_GOALS =0 (or remove it) to re-enable." . to_string ( ) ,
1463+ "Goals are disabled. Unset COVEN_CODE_GOALS =0 (or remove it) to re-enable." . to_string ( ) ,
14641464 ) ;
14651465 }
14661466
@@ -4417,7 +4417,7 @@ impl SlashCommand for ShareCommand {
44174417 viewer URL of the form https://claurst.kuber.studio/session/#<gist-id>.\n \n \
44184418 Requirements:\n \
44194419 - GitHub CLI (gh) installed and logged in (`gh auth login`).\n \n \
4420- The viewer base URL can be overridden with CLAURST_SHARE_VIEWER_URL .\n \
4420+ The viewer base URL can be overridden with COVEN_CODE_SHARE_VIEWER_URL .\n \
44214421 Secret gists are unlisted but readable by anyone who has the link."
44224422 }
44234423
@@ -4505,9 +4505,9 @@ impl SlashCommand for ShareCommand {
45054505 let viewer = share_viewer_url ( gist_id) ;
45064506
45074507 // Auto-open in the system browser unless the user opted out — saves the
4508- // copy/paste dance after a /share. Skipped when `CLAURST_SHARE_NO_OPEN `
4508+ // copy/paste dance after a /share. Skipped when `COVEN_CODE_SHARE_NO_OPEN `
45094509 // is set (e.g. on a headless box) or when `open` can't find a handler.
4510- let opted_out = std:: env:: var_os ( "CLAURST_SHARE_NO_OPEN " )
4510+ let opted_out = std:: env:: var_os ( "COVEN_CODE_SHARE_NO_OPEN " )
45114511 . map ( |v| !v. is_empty ( ) && v != "0" )
45124512 . unwrap_or ( false ) ;
45134513 let opened = if opted_out {
@@ -4598,7 +4598,7 @@ impl SlashCommand for LinksCommand {
45984598 /links <N> Open the Nth URL from /links list.\n \
45994599 /links last Same as /links (open most recent).\n \n \
46004600 URLs are detected in user/assistant message text. Set\n \
4601- CLAURST_SHARE_NO_OPEN =1 to disable the auto-open behavior in /share."
4601+ COVEN_CODE_SHARE_NO_OPEN =1 to disable the auto-open behavior in /share."
46024602 }
46034603
46044604 async fn execute ( & self , args : & str , ctx : & mut CommandContext ) -> CommandResult {
@@ -5196,10 +5196,10 @@ impl SlashCommand for RemoteControlCommand {
51965196 . map ( |h| h. to_string_lossy ( ) . into_owned ( ) )
51975197 . unwrap_or_else ( |_| "(unknown host)" . to_string ( ) ) ;
51985198
5199- let bridge_url = std:: env:: var ( "CLAURST_BRIDGE_URL " )
5199+ let bridge_url = std:: env:: var ( "COVEN_CODE_BRIDGE_URL " )
52005200 . unwrap_or_else ( |_| "https://claude.ai" . to_string ( ) ) ;
52015201
5202- let token_status = if std:: env:: var ( "CLAURST_BRIDGE_TOKEN " ) . is_ok ( )
5202+ let token_status = if std:: env:: var ( "COVEN_CODE_BRIDGE_TOKEN " ) . is_ok ( )
52035203 || std:: env:: var ( "CLAUDE_BRIDGE_OAUTH_TOKEN" ) . is_ok ( )
52045204 {
52055205 "configured via environment variable"
@@ -5249,7 +5249,7 @@ impl SlashCommand for RemoteControlCommand {
52495249 How to connect\n \
52505250 ──────────────\n \
52515251 1. Obtain a session token from claude.ai (Settings → Remote Control)\n \
5252- 2. Set it: export CLAURST_BRIDGE_TOKEN =<your-token>\n \
5252+ 2. Set it: export COVEN_CODE_BRIDGE_TOKEN =<your-token>\n \
52535253 3. Enable: /remote-control start\n \
52545254 4. Restart Claurst — the bridge will connect automatically\n \
52555255 5. Open {bridge_url}/claude-code in your browser\n \
@@ -5272,9 +5272,9 @@ impl SlashCommand for RemoteControlCommand {
52725272 if let Err ( e) = save_settings_mutation ( |s| s. remote_control_at_startup = true ) {
52735273 return CommandResult :: Error ( format ! ( "Failed to save settings: {}" , e) ) ;
52745274 }
5275- let bridge_url = std:: env:: var ( "CLAURST_BRIDGE_URL " )
5275+ let bridge_url = std:: env:: var ( "COVEN_CODE_BRIDGE_URL " )
52765276 . unwrap_or_else ( |_| "https://claude.ai" . to_string ( ) ) ;
5277- let token_note = if std:: env:: var ( "CLAURST_BRIDGE_TOKEN " ) . is_ok ( )
5277+ let token_note = if std:: env:: var ( "COVEN_CODE_BRIDGE_TOKEN " ) . is_ok ( )
52785278 || std:: env:: var ( "CLAUDE_BRIDGE_OAUTH_TOKEN" ) . is_ok ( )
52795279 {
52805280 "Session token detected in environment — bridge will connect on next start."
@@ -5283,7 +5283,7 @@ impl SlashCommand for RemoteControlCommand {
52835283 format ! (
52845284 "No session token found.\n \
52855285 Get a token from {bridge_url} (Settings → Remote Control)\n \
5286- then run: export CLAURST_BRIDGE_TOKEN =<token>" ,
5286+ then run: export COVEN_CODE_BRIDGE_TOKEN =<token>" ,
52875287 bridge_url = bridge_url
52885288 )
52895289 } ;
0 commit comments