@latentforce/shift 1.0.7 → 1.0.8

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.
@@ -10,9 +10,9 @@ const LOCAL_CONFIG_FILE = 'config.json'; // Changed from project.json to match e
10
10
  const DAEMON_PID_FILE = 'daemon.pid';
11
11
  const DAEMON_STATUS_FILE = 'daemon.status.json';
12
12
  // Default URLs
13
- const DEFAULT_API_URL = 'http://localhost:9000';
14
- const DEFAULT_ORCH_URL = 'http://localhost:9999';
15
- const DEFAULT_WS_URL = 'ws://localhost:9999';
13
+ const DEFAULT_API_URL = 'https://dev-shift-lite.latentforce.ai';
14
+ const DEFAULT_ORCH_URL = 'https://agent-orch.latentforce.ai';
15
+ const DEFAULT_WS_URL = 'wss://agent-orch.latentforce.ai';
16
16
  // Helper to get URL from: 1) env var, 2) global config, 3) default
17
17
  function getConfiguredUrl(envVar, configKey, defaultUrl) {
18
18
  // Priority: Environment variable > Global config > Default
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@latentforce/shift",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Shift CLI - AI-powered code intelligence with MCP support",
5
5
  "type": "module",
6
6
  "main": "./build/index.js",