@locusai/cli 0.4.12 → 0.4.14

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.
@@ -30538,7 +30538,7 @@ class AgentWorker {
30538
30538
  if (this.anthropicClient) {
30539
30539
  this.log("Using Anthropic SDK with prompt caching for planning phases", "info");
30540
30540
  } else {
30541
- this.log("Using Claude CLI for all phases (no Anthropic API key provided)", "info");
30541
+ this.log("Using Claude CLI for all phases", "info");
30542
30542
  }
30543
30543
  }
30544
30544
  log(message, level = "info") {
package/bin/locus.js CHANGED
@@ -30545,7 +30545,7 @@ class AgentWorker {
30545
30545
  if (this.anthropicClient) {
30546
30546
  this.log("Using Anthropic SDK with prompt caching for planning phases", "info");
30547
30547
  } else {
30548
- this.log("Using Claude CLI for all phases (no Anthropic API key provided)", "info");
30548
+ this.log("Using Claude CLI for all phases", "info");
30549
30549
  }
30550
30550
  }
30551
30551
  log(message, level = "info") {
@@ -31171,7 +31171,7 @@ Next steps:
31171
31171
  1. Run '${c.primary("locus index")}' to index your codebase
31172
31172
  2. Run '${c.primary("locus run")}' to start an agent (requires --api-key and --workspace)
31173
31173
 
31174
- For more information, visit: ${c.underline("https://locus.dev/docs")}
31174
+ For more information, visit: ${c.underline("https://locusai.dev/docs")}
31175
31175
  `);
31176
31176
  }
31177
31177
  async function main() {
@@ -31210,7 +31210,7 @@ Environment Variables:
31210
31210
  LOCUS_WORKSPACE_ID Workspace ID
31211
31211
  ANTHROPIC_API_KEY Optional Anthropic API key
31212
31212
 
31213
- For more information, visit: https://locus.dev/docs
31213
+ For more information, visit: https://locusai.dev/docs
31214
31214
  `);
31215
31215
  }
31216
31216
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@locusai/cli",
3
- "version": "0.4.12",
3
+ "version": "0.4.14",
4
4
  "description": "Local-first AI development platform & engineering workspace",
5
5
  "type": "module",
6
6
  "bin": {
@@ -31,7 +31,7 @@
31
31
  "author": "",
32
32
  "license": "MIT",
33
33
  "dependencies": {
34
- "@locusai/sdk": "^0.4.12"
34
+ "@locusai/sdk": "^0.4.14"
35
35
  },
36
36
  "devDependencies": {}
37
37
  }