lua-cli 2.0.2 → 2.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -195,7 +195,7 @@ This command will:
195
195
  - Available at `http://localhost:3000` (opens automatically)
196
196
  - **Live Log Panel**:
197
197
  - Real-time log feed showing execution details
198
- - WebSocket connection to `wss://api.heylua.ai/feed`
198
+ - WebSocket connection to `wss://api.lua.dev/feed`
199
199
  - Console-style interface with color-coded log levels
200
200
  - Shows tool calls, errors, metrics, and execution metadata
201
201
  - Displays detailed information in expandable sections
@@ -498,7 +498,7 @@ For more details, see [USER_DATA_API.md](./USER_DATA_API.md).
498
498
 
499
499
  For support and questions:
500
500
  - Create an issue on [GitHub](https://github.com/lua-ai-global/lua-cli/issues)
501
- - Contact: stefan@heylua.ai
501
+ - Contact: stefan@lua.dev
502
502
 
503
503
  ## Changelog
504
504
 
@@ -4,10 +4,10 @@
4
4
  */
5
5
  // Base URLs for different environments
6
6
  const BASE_URLS = {
7
- LOCAL: 'https://api.heylua.ai',
8
- API: 'https://api.heylua.ai',
9
- AUTH: 'https://auth.heylua.ai',
10
- CHAT: 'https://api.heylua.ai'
7
+ LOCAL: 'https://api.lua.dev',
8
+ API: 'https://api.lua.dev',
9
+ AUTH: 'https://auth.lua.dev',
10
+ CHAT: 'https://api.lua.dev'
11
11
  };
12
12
  /**
13
13
  * Generic HTTP client with common error handling