taktiko 0.3.2 → 0.3.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/dist/cli.js CHANGED
@@ -7859,7 +7859,7 @@ var import_tweetnacl = __toESM(require_nacl_fast());
7859
7859
  import { homedir, platform } from "os";
7860
7860
 
7861
7861
  // ../backend/src/daemon/terminal/session.ts
7862
- import { spawn as spawn2 } from "@homebridge/node-pty-prebuilt-multiarch";
7862
+ import { spawn as spawn2 } from "node-pty";
7863
7863
 
7864
7864
  // ../backend/node_modules/@xterm/addon-serialize/lib/addon-serialize.mjs
7865
7865
  var m = 0;
@@ -8924,7 +8924,7 @@ function runMcpTools() {
8924
8924
  reply(id, {
8925
8925
  protocolVersion: params?.protocolVersion || "2025-06-18",
8926
8926
  capabilities: { tools: {} },
8927
- serverInfo: { name: "taktiko", version: "0.3.2" }
8927
+ serverInfo: { name: "taktiko", version: "0.3.3" }
8928
8928
  });
8929
8929
  return;
8930
8930
  }
@@ -10037,7 +10037,7 @@ function runDaemon(cfg) {
10037
10037
  connect();
10038
10038
  }
10039
10039
  var program = new Command();
10040
- program.name("taktiko").description("Taktiko daemon \u2014 runs your local agent CLIs").version("0.3.2", "-v, --version", "output the version number");
10040
+ program.name("taktiko").description("Taktiko daemon \u2014 runs your local agent CLIs").version("0.3.3", "-v, --version", "output the version number");
10041
10041
  program.command("hooks <provider> <event>").description("internal: report agent activity for the current Taktiko terminal (called by agent hooks)").action(async (provider, event) => {
10042
10042
  await reportHookActivity(provider, event);
10043
10043
  process.exit(0);
@@ -10122,7 +10122,7 @@ program.command("restart").description("restart the daemon (cycles the installed
10122
10122
  });
10123
10123
  program.command("update").description("update taktiko to the latest published version (npm i -g), then restart the daemon").option("--check", "only report whether a newer version exists; don't install").option("--force", "reinstall the latest even if already up to date").action(async (opts) => {
10124
10124
  const npm = process.platform === "win32" ? "npm.cmd" : "npm";
10125
- const current = "0.3.2";
10125
+ const current = "0.3.3";
10126
10126
  let latest;
10127
10127
  try {
10128
10128
  latest = execFileSync2(npm, ["view", "taktiko", "version"], { encoding: "utf8" }).trim();