konductor 0.12.1 → 0.12.3
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/README.md +0 -6
- package/package.json +1 -1
- package/scripts/postinstall.js +1 -0
package/README.md
CHANGED
|
@@ -8,12 +8,6 @@ Spec-driven development orchestrator for [Kiro CLI](https://kiro.dev).
|
|
|
8
8
|
npm install -g konductor
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
Or run without installing:
|
|
12
|
-
|
|
13
|
-
```bash
|
|
14
|
-
npx konductor mcp
|
|
15
|
-
```
|
|
16
|
-
|
|
17
11
|
The npm package automatically downloads the correct prebuilt binary for your platform (macOS/Linux, x64/arm64).
|
|
18
12
|
|
|
19
13
|
## Usage
|
package/package.json
CHANGED
package/scripts/postinstall.js
CHANGED
|
@@ -29,6 +29,7 @@ function fetch(url) {
|
|
|
29
29
|
const mod = url.startsWith("https") ? https : http;
|
|
30
30
|
mod.get(url, { headers: { "User-Agent": "konductor-npm" } }, (res) => {
|
|
31
31
|
if (res.statusCode >= 300 && res.statusCode < 400 && res.headers.location) {
|
|
32
|
+
res.resume();
|
|
32
33
|
return fetch(res.headers.location).then(resolve, reject);
|
|
33
34
|
}
|
|
34
35
|
if (res.statusCode !== 200) {
|