konductor 0.12.3 → 0.12.4

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.
package/bin/konductor CHANGED
@@ -1,18 +1,4 @@
1
- #!/usr/bin/env node
2
- "use strict";
3
-
4
- const path = require("path");
5
- const { spawnSync } = require("child_process");
6
- const fs = require("fs");
7
-
8
- const bin = path.join(__dirname, "konductor-native");
9
-
10
- if (!fs.existsSync(bin)) {
11
- console.error("Error: konductor binary not found.");
12
- console.error("Try reinstalling: npm install -g konductor");
13
- console.error("Or use the shell installer: https://github.com/bnusunny/konductor");
14
- process.exit(1);
15
- }
16
-
17
- const result = spawnSync(bin, process.argv.slice(2), { stdio: "inherit" });
18
- process.exit(result.status ?? 1);
1
+ #!/bin/sh
2
+ echo "Error: konductor binary not installed." >&2
3
+ echo "Try reinstalling: npm install -g konductor" >&2
4
+ exit 1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "konductor",
3
- "version": "0.12.3",
3
+ "version": "0.12.4",
4
4
  "description": "Spec-driven development orchestrator for Kiro CLI — MCP server and hook processor",
5
5
  "bin": {
6
6
  "konductor": "bin/konductor"
@@ -49,7 +49,7 @@ async function main() {
49
49
  const asset = getAssetName();
50
50
  const baseUrl = `https://github.com/${REPO}/releases/download/v${version}`;
51
51
  const binDir = path.join(__dirname, "..", "bin");
52
- const dest = path.join(binDir, "konductor-native");
52
+ const dest = path.join(binDir, "konductor");
53
53
 
54
54
  console.log(`Downloading konductor v${version} (${asset})...`);
55
55