@locusai/cli 0.25.5 → 0.25.6

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/bin/locus.js +4 -2
  2. package/package.json +2 -2
package/bin/locus.js CHANGED
@@ -14428,12 +14428,14 @@ async function convertToPlan(projectRoot, name) {
14428
14428
  await runPlanConversion(projectRoot, result.info.name);
14429
14429
  }
14430
14430
  async function runPlanConversion(projectRoot, artifactName) {
14431
- const { execCommand: execCommand2 } = await Promise.resolve().then(() => (init_exec(), exports_exec));
14431
+ const { planCommand: planCommand2 } = await Promise.resolve().then(() => (init_plan(), exports_plan));
14432
14432
  process.stderr.write(`
14433
14433
  ${bold2("Converting artifact to plan:")} ${cyan2(artifactName)}
14434
14434
 
14435
14435
  `);
14436
- await execCommand2(projectRoot, [`Create a plan according to ${artifactName}`], {});
14436
+ await planCommand2(projectRoot, [
14437
+ `Create a plan according to ${artifactName}`
14438
+ ]);
14437
14439
  }
14438
14440
  var init_artifacts = __esm(() => {
14439
14441
  init_terminal();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@locusai/cli",
3
- "version": "0.25.5",
3
+ "version": "0.25.6",
4
4
  "description": "GitHub-native AI engineering assistant",
5
5
  "type": "module",
6
6
  "bin": {
@@ -36,7 +36,7 @@
36
36
  "license": "MIT",
37
37
  "dependencies": {},
38
38
  "devDependencies": {
39
- "@locusai/sdk": "^0.25.5",
39
+ "@locusai/sdk": "^0.25.6",
40
40
  "@types/bun": "latest",
41
41
  "typescript": "^5.8.3"
42
42
  },