@proxysoul/soulforge 2.12.0 → 2.12.1

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/dist/index.js +11 -11
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -41471,7 +41471,7 @@ var package_default;
41471
41471
  var init_package = __esm(() => {
41472
41472
  package_default = {
41473
41473
  name: "@proxysoul/soulforge",
41474
- version: "2.12.0",
41474
+ version: "2.12.1",
41475
41475
  description: "Graph-powered code intelligence \u2014 multi-agent coding with codebase-aware AI",
41476
41476
  repository: {
41477
41477
  type: "git",
@@ -41624,19 +41624,19 @@ function getUpgradeCommand(method) {
41624
41624
  const m = method ?? detectInstallMethod();
41625
41625
  switch (m) {
41626
41626
  case "npm":
41627
- return `npm update -g ${PKG_NAME}`;
41627
+ return `npm install -g ${PKG_NAME}@latest`;
41628
41628
  case "pnpm":
41629
- return `pnpm update -g ${PKG_NAME}`;
41629
+ return `pnpm add -g ${PKG_NAME}@latest`;
41630
41630
  case "yarn":
41631
- return `yarn global upgrade ${PKG_NAME}`;
41631
+ return `yarn global add ${PKG_NAME}@latest`;
41632
41632
  case "bun":
41633
- return `bun update -g ${PKG_NAME}`;
41633
+ return `bun install -g ${PKG_NAME}@latest`;
41634
41634
  case "brew":
41635
41635
  return "brew update && brew upgrade soulforge";
41636
41636
  case "binary":
41637
41637
  return "Download the latest release from GitHub";
41638
41638
  default:
41639
- return `npm update -g ${PKG_NAME}`;
41639
+ return `npm install -g ${PKG_NAME}@latest`;
41640
41640
  }
41641
41641
  }
41642
41642
  function getUpgradeArgs(method) {
@@ -41645,22 +41645,22 @@ function getUpgradeArgs(method) {
41645
41645
  case "npm":
41646
41646
  return {
41647
41647
  command: "npm",
41648
- args: ["update", "-g", PKG_NAME]
41648
+ args: ["install", "-g", `${PKG_NAME}@latest`]
41649
41649
  };
41650
41650
  case "pnpm":
41651
41651
  return {
41652
41652
  command: "pnpm",
41653
- args: ["update", "-g", PKG_NAME]
41653
+ args: ["add", "-g", `${PKG_NAME}@latest`]
41654
41654
  };
41655
41655
  case "yarn":
41656
41656
  return {
41657
41657
  command: "yarn",
41658
- args: ["global", "upgrade", PKG_NAME]
41658
+ args: ["global", "add", `${PKG_NAME}@latest`]
41659
41659
  };
41660
41660
  case "bun":
41661
41661
  return {
41662
41662
  command: "bun",
41663
- args: ["update", "-g", PKG_NAME]
41663
+ args: ["install", "-g", `${PKG_NAME}@latest`]
41664
41664
  };
41665
41665
  case "brew":
41666
41666
  return {
@@ -41672,7 +41672,7 @@ function getUpgradeArgs(method) {
41672
41672
  default:
41673
41673
  return {
41674
41674
  command: "npm",
41675
- args: ["update", "-g", PKG_NAME]
41675
+ args: ["install", "-g", `${PKG_NAME}@latest`]
41676
41676
  };
41677
41677
  }
41678
41678
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proxysoul/soulforge",
3
- "version": "2.12.0",
3
+ "version": "2.12.1",
4
4
  "description": "Graph-powered code intelligence — multi-agent coding with codebase-aware AI",
5
5
  "repository": {
6
6
  "type": "git",