tanuki-telemetry 1.1.5 → 1.1.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.
- package/bin/tanuki.mjs +12 -1
- package/package.json +1 -1
package/bin/tanuki.mjs
CHANGED
|
@@ -125,13 +125,24 @@ function checkRequirements() {
|
|
|
125
125
|
allOk = false;
|
|
126
126
|
}
|
|
127
127
|
|
|
128
|
+
// cmux (optional but recommended)
|
|
129
|
+
let hasCmux = false;
|
|
130
|
+
try {
|
|
131
|
+
execSync("cmux --version", { stdio: "pipe" });
|
|
132
|
+
hasCmux = true;
|
|
133
|
+
} catch {}
|
|
134
|
+
|
|
128
135
|
if (!allOk) {
|
|
129
136
|
log("");
|
|
130
137
|
fail("fix the above and try again");
|
|
131
138
|
process.exit(1);
|
|
132
139
|
}
|
|
133
140
|
|
|
134
|
-
ok(
|
|
141
|
+
ok(`docker, node, curl${hasCmux ? ", cmux" : ""}`);
|
|
142
|
+
if (!hasCmux) {
|
|
143
|
+
info(`${y}cmux not found — needed for /coordinate and workspace skills${r}`);
|
|
144
|
+
info(`${d}install: https://github.com/anthropics/cmux${r}`);
|
|
145
|
+
}
|
|
135
146
|
}
|
|
136
147
|
|
|
137
148
|
function isRunning() {
|