claudekit-cli 3.9.1 → 3.9.2

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 +3 -7
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -12802,11 +12802,7 @@ async function installSkillsDependencies(skillsDir) {
12802
12802
  NON_INTERACTIVE: "1"
12803
12803
  };
12804
12804
  if (platform9 === "win32") {
12805
- logger.warning("⚠️ Windows: Respecting system PowerShell execution policy");
12806
- logger.info(" If the script fails, you may need to set execution policy:");
12807
- logger.info(" Set-ExecutionPolicy RemoteSigned -Scope CurrentUser");
12808
- logger.info("");
12809
- await executeInteractiveScript("powershell", ["-File", scriptPath, "-Y"], {
12805
+ await executeInteractiveScript("powershell.exe", ["-NoLogo", "-ExecutionPolicy", "Bypass", "-File", scriptPath, "-Y"], {
12810
12806
  timeout: 600000,
12811
12807
  cwd: skillsDir,
12812
12808
  env: scriptEnv
@@ -14451,7 +14447,7 @@ var cac = (name = "") => new CAC(name);
14451
14447
  // package.json
14452
14448
  var package_default = {
14453
14449
  name: "claudekit-cli",
14454
- version: "3.9.1",
14450
+ version: "3.9.2",
14455
14451
  description: "CLI tool for bootstrapping and updating ClaudeKit projects",
14456
14452
  type: "module",
14457
14453
  repository: {
@@ -33409,7 +33405,7 @@ var import_compare_versions2 = __toESM(require_umd(), 1);
33409
33405
  // package.json
33410
33406
  var package_default2 = {
33411
33407
  name: "claudekit-cli",
33412
- version: "3.9.1",
33408
+ version: "3.9.2",
33413
33409
  description: "CLI tool for bootstrapping and updating ClaudeKit projects",
33414
33410
  type: "module",
33415
33411
  repository: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudekit-cli",
3
- "version": "3.9.1",
3
+ "version": "3.9.2",
4
4
  "description": "CLI tool for bootstrapping and updating ClaudeKit projects",
5
5
  "type": "module",
6
6
  "repository": {