pulse-framework-cli 0.4.5 → 0.4.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.
@@ -88,8 +88,8 @@ async function ensurePulseMcpInstalled() {
88
88
  // eslint-disable-next-line no-console
89
89
  console.log("\n⚠️ pulse-mcp not found. Attempting to install...\n");
90
90
  try {
91
- // Try npm link first (for development)
92
- (0, node_child_process_1.execSync)("npm link @pulseframework/pulse-mcp 2>/dev/null || npm install -g @pulseframework/pulse-mcp", {
91
+ // Install from npm
92
+ (0, node_child_process_1.execSync)("npm install -g pulse-framework-mcp", {
93
93
  encoding: "utf8",
94
94
  stdio: "inherit",
95
95
  });
@@ -104,11 +104,9 @@ async function ensurePulseMcpInstalled() {
104
104
  // eslint-disable-next-line no-console
105
105
  console.log(" Please run manually:");
106
106
  // eslint-disable-next-line no-console
107
- console.log(" npm install -g @pulseframework/pulse-mcp");
107
+ console.log(" npm install -g pulse-framework-mcp");
108
108
  // eslint-disable-next-line no-console
109
- console.log(" OR (from PulseFramework repo):");
110
- // eslint-disable-next-line no-console
111
- console.log(" npm link -w packages/pulse-mcp\n");
109
+ console.log("");
112
110
  throw new Error("pulse-mcp installation failed");
113
111
  }
114
112
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pulse-framework-cli",
3
- "version": "0.4.5",
3
+ "version": "0.4.6",
4
4
  "description": "Pulse Framework CLI – Guardrails, checkpoints, and escalation for AI-assisted development.",
5
5
  "author": "Manuel Fuß <kontakt@manuel-fuss.de>",
6
6
  "license": "MIT",