@latentforce/shift 1.0.4 → 1.0.5

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.
Files changed (2) hide show
  1. package/README.md +6 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -19,8 +19,8 @@ If you're connecting to a hosted Shift backend (not localhost), configure the UR
19
19
 
20
20
  ```bash
21
21
  shift config set api-url https://dev-shift-lite.latentforce.ai
22
- shift config set orch-url https://dev-shift-lite.latentforce.ai
23
- shift config set ws-url wss://dev-shift-lite.latentforce.ai
22
+ shift config set orch-url https://agent-orch.latentforce.ai
23
+ shift config set ws-url wss://agent-orch.latentforce.ai
24
24
  ```
25
25
 
26
26
  ### Step 2: Start and configure your project
@@ -89,8 +89,8 @@ shift config
89
89
 
90
90
  # Set backend URLs
91
91
  shift config set api-url https://dev-shift-lite.latentforce.ai
92
- shift config set orch-url https://dev-shift-lite.latentforce.ai
93
- shift config set ws-url wss://dev-shift-lite.latentforce.ai
92
+ shift config set orch-url https://agent-orch.latentforce.ai
93
+ shift config set ws-url wss://agent-orch.latentforce.ai
94
94
 
95
95
  # Set API key directly (alternative to interactive prompt)
96
96
  shift config set api-key your-api-key-here
@@ -116,8 +116,8 @@ Example using environment variables:
116
116
  ```bash
117
117
  # Set for current session
118
118
  export SHIFT_API_URL=https://dev-shift-lite.latentforce.ai
119
- export SHIFT_ORCH_URL=https://dev-shift-lite.latentforce.ai
120
- export SHIFT_WS_URL=wss://dev-shift-lite.latentforce.ai
119
+ export SHIFT_ORCH_URL=https://agent-orch.latentforce.ai
120
+ export SHIFT_WS_URL=wss://agent-orch.latentforce.ai
121
121
 
122
122
  # Or inline when running commands
123
123
  SHIFT_API_URL=https://dev-shift-lite.latentforce.ai shift start
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@latentforce/shift",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Shift CLI - AI-powered code intelligence with MCP support",
5
5
  "type": "module",
6
6
  "main": "./build/index.js",